sculd 0.0.3 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGES +9 -1
- data/Gemfile +2 -2
- data/Rakefile +27 -9
- data/VERSION +1 -1
- data/bin/sculd +8 -7
- data/lib/sculd.rb +2 -2
- data/lib/sculd/manager.rb +65 -29
- data/lib/sculd/plan.rb +26 -18
- data/lib/sculd/plan/deadline.rb +15 -8
- data/lib/sculd/plan/reminder.rb +7 -4
- data/lib/sculd/plan/schedule.rb +6 -3
- data/lib/sculd/plan/todo.rb +17 -9
- data/test/helper.rb +17 -0
- data/{spec/schedule → test/schedule/empty}/empty.dat +0 -0
- data/{spec/schedule → test/schedule/error}/error.dat +0 -0
- data/test/schedule/normal/a.dat +10 -0
- data/test/schedule/normal/b.dat +5 -0
- data/test/test_deadline.rb +47 -0
- data/test/test_manager.rb +114 -0
- data/test/test_plan.rb +97 -0
- data/test/test_reminder.rb +38 -0
- data/test/test_schedule.rb +30 -0
- data/test/test_todo.rb +50 -0
- metadata +24 -52
- data/lib/sculd/event.rb +0 -23
- data/lib/sculd/task.rb +0 -18
- data/sculd.gemspec +0 -92
- data/spec/command_spec.rb +0 -7
- data/spec/deadline_spec.rb +0 -46
- data/spec/event_spec.rb +0 -35
- data/spec/job_spec.rb +0 -7
- data/spec/manager_spec.rb +0 -131
- data/spec/plan_spec.rb +0 -85
- data/spec/reminder_spec.rb +0 -38
- data/spec/schedule/schedule.dat +0 -5
- data/spec/schedule_spec.rb +0 -30
- data/spec/sculd_spec.rb +0 -4
- data/spec/spec_helper.rb +0 -12
- data/spec/todo_spec.rb +0 -48
data/spec/plan_spec.rb
DELETED
@@ -1,85 +0,0 @@
|
|
1
|
-
require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
|
2
|
-
|
3
|
-
describe Sculd::Plan do # E.g., Klass
|
4
|
-
context 'Class method' do # 'when stack is empty'
|
5
|
-
describe '#parse' do # ''
|
6
|
-
context '[2012-10-23]! deadlineA' do
|
7
|
-
it 'should return Date, !, ""' do
|
8
|
-
a, b, c = Sculd::Plan.parse('[2012-10-23]! deadlineA')
|
9
|
-
a.should == DateTime.new(2012, 10, 23, 0, 0, 0)
|
10
|
-
b.should == "!"
|
11
|
-
c.should == ""
|
12
|
-
end
|
13
|
-
end
|
14
|
-
|
15
|
-
context '[2012-10-23 01:02:03]@ deadlineA' do
|
16
|
-
it 'should return Date, @, ""' do
|
17
|
-
a, b, c = Sculd::Plan.parse('[2012-10-23 01:02:03]@ deadlineA')
|
18
|
-
a.should == DateTime.new(2012, 10, 23, 1, 2, 3)
|
19
|
-
b.should == "@"
|
20
|
-
c.should == ""
|
21
|
-
end
|
22
|
-
end
|
23
|
-
|
24
|
-
context 'schedule with correct weekday' do
|
25
|
-
it 'should return Date, @, ""' do
|
26
|
-
a, b, c = Sculd::Plan.parse('[2012-11-01 01:02:03(Thu)]@ deadlineA')
|
27
|
-
a.should == DateTime.new(2012, 11, 01, 1, 2, 3)
|
28
|
-
b.should == "@"
|
29
|
-
c.should == ""
|
30
|
-
|
31
|
-
a, b, c = Sculd::Plan.parse('[2012-11-01 01:02:03(th)]@ deadlineA')
|
32
|
-
a.should == DateTime.new(2012, 11, 01, 1, 2, 3)
|
33
|
-
b.should == "@"
|
34
|
-
c.should == ""
|
35
|
-
end
|
36
|
-
end
|
37
|
-
|
38
|
-
context 'schedule with wrong weekday' do
|
39
|
-
it 'should return Date, @, ""' do
|
40
|
-
io = StringIO.new
|
41
|
-
lambda{ Sculd::Plan.parse('[2012-11-01 01:02:03(Sun)]@ deadlineA', io)}.should raise_error Sculd::Plan::WeekdayMismatchError
|
42
|
-
|
43
|
-
lambda{ Sculd::Plan.parse('[2012-11-01 01:02:03(abc)]@ deadlineA', io)}.should raise_error Sculd::Plan::NotWeekdayError
|
44
|
-
end
|
45
|
-
end
|
46
|
-
|
47
|
-
context '[abc]! deadlineA' do
|
48
|
-
it 'should raise exception' do
|
49
|
-
#Sculd::Plan.parse('[abc]! deadlineA')
|
50
|
-
#fail
|
51
|
-
lambda{ Sculd::Plan.parse('[abc]! deadlineA')}.should raise_error
|
52
|
-
end
|
53
|
-
end
|
54
|
-
|
55
|
-
context '[abc]]! deadlineA' do
|
56
|
-
it 'should raise exception' do
|
57
|
-
a, b, c = Sculd::Plan.parse('[2012-01-01]]! deadlineA')
|
58
|
-
a.should == DateTime.new(2012, 01, 01)
|
59
|
-
b.should == "]"
|
60
|
-
c.should == "!"
|
61
|
-
end
|
62
|
-
end
|
63
|
-
|
64
|
-
context ' [2012-10-23]! deadlineA with space at head' do
|
65
|
-
it 'should return Date, !, deadlineA' do
|
66
|
-
a, b, c = Sculd::Plan.parse(' [2012-10-23]! deadlineA with space at head')
|
67
|
-
a.should == Date.new(2012, 10, 23)
|
68
|
-
b.should == "!"
|
69
|
-
c.should == ""
|
70
|
-
end
|
71
|
-
end
|
72
|
-
|
73
|
-
context '[2012-10-23]!10 deadline with option value' do
|
74
|
-
it 'should return Date, !, deadlineA' do
|
75
|
-
a, b, c = Sculd::Plan.parse( '[2012-10-23]!10 deadline with option value')
|
76
|
-
a.should == Date.new(2012, 10, 23)
|
77
|
-
b.should == "!"
|
78
|
-
c.should == "10"
|
79
|
-
end
|
80
|
-
end
|
81
|
-
|
82
|
-
end
|
83
|
-
end
|
84
|
-
end
|
85
|
-
|
data/spec/reminder_spec.rb
DELETED
@@ -1,38 +0,0 @@
|
|
1
|
-
require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
|
2
|
-
|
3
|
-
describe Sculd::Plan::Reminder do # E.g., Klass
|
4
|
-
context 'Date[2012-10-23], 10, [2012-10-23]- reminderA' do
|
5
|
-
|
6
|
-
before do
|
7
|
-
date = Date.new(2012, 10, 23)
|
8
|
-
@r00 = Sculd::Plan::Reminder.new(date, 10, '[2012-10-23]- reminderA')
|
9
|
-
end
|
10
|
-
|
11
|
-
describe '#priority' do # ''
|
12
|
-
context '' do
|
13
|
-
it 'return REMINDER_PRIORITY when the day is today .' do
|
14
|
-
date = Date.new(2012, 10, 23)
|
15
|
-
@r00.priority(date).should == 10000
|
16
|
-
end
|
17
|
-
|
18
|
-
it 'return REMINDER_PRIORITY -1 when the day is yesterday .' do
|
19
|
-
date = Date.new(2012, 10, 24)
|
20
|
-
@r00.priority(date).should == 9999
|
21
|
-
end
|
22
|
-
end
|
23
|
-
end
|
24
|
-
|
25
|
-
describe '#events' do # ''
|
26
|
-
context '' do
|
27
|
-
it 'return a Sculd::Event instance.' do
|
28
|
-
result = @r00.events
|
29
|
-
result.class.should == Array
|
30
|
-
result.size.should == 1
|
31
|
-
result[0].class.should == Sculd::Event
|
32
|
-
result[0].datetime.to_date.should == Date.new(2012, 10, 23)
|
33
|
-
end
|
34
|
-
end
|
35
|
-
end
|
36
|
-
end
|
37
|
-
end
|
38
|
-
|
data/spec/schedule/schedule.dat
DELETED
data/spec/schedule_spec.rb
DELETED
@@ -1,30 +0,0 @@
|
|
1
|
-
require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
|
2
|
-
|
3
|
-
describe Sculd::Plan::Schedule do # E.g., Klass
|
4
|
-
context 'normal' do # 'when stack is empty'
|
5
|
-
before do
|
6
|
-
date = Date.new(2012, 10, 15)
|
7
|
-
@s00 = Sculd::Plan::Schedule.new(date, 0, "[2012-10-15]@ scheduleA")
|
8
|
-
end
|
9
|
-
|
10
|
-
describe '#priority' do # ''
|
11
|
-
context '' do
|
12
|
-
it 'should return 0' do
|
13
|
-
@s00.priority.should == 0
|
14
|
-
end
|
15
|
-
end
|
16
|
-
end
|
17
|
-
|
18
|
-
describe '#events' do # ''
|
19
|
-
context '' do
|
20
|
-
it 'should return Array of 1 item' do
|
21
|
-
@s00.events.class == Array
|
22
|
-
@s00.events.size == 1
|
23
|
-
@s00.events[0].date == Date.new(2012, 10, 15)
|
24
|
-
end
|
25
|
-
end
|
26
|
-
end
|
27
|
-
|
28
|
-
end
|
29
|
-
end
|
30
|
-
|
data/spec/sculd_spec.rb
DELETED
data/spec/spec_helper.rb
DELETED
@@ -1,12 +0,0 @@
|
|
1
|
-
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
2
|
-
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
3
|
-
require 'rspec'
|
4
|
-
require 'sculd'
|
5
|
-
|
6
|
-
# Requires supporting files with custom matchers and macros, etc,
|
7
|
-
# in ./support/ and its subdirectories.
|
8
|
-
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
|
9
|
-
|
10
|
-
RSpec.configure do |config|
|
11
|
-
|
12
|
-
end
|
data/spec/todo_spec.rb
DELETED
@@ -1,48 +0,0 @@
|
|
1
|
-
require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
|
2
|
-
|
3
|
-
describe Sculd::Plan::Todo do # E.g., Klass
|
4
|
-
context 'Date[2012-10-15], 10, [2012-10-15]+10 todoA' do
|
5
|
-
|
6
|
-
before do
|
7
|
-
today = Date.new(2012, 10, 15)
|
8
|
-
@t00 = Sculd::Plan::Todo.new(today, 10, '[2012-10-15]+10 todoA')
|
9
|
-
end
|
10
|
-
|
11
|
-
describe '#priority' do # ''
|
12
|
-
context '' do
|
13
|
-
|
14
|
-
it 'return 0 before the period.' do
|
15
|
-
today = Date.new(2012, 10, 1)
|
16
|
-
@t00.priority(today).should == 0
|
17
|
-
end
|
18
|
-
|
19
|
-
it 'return REMINDER_PRIORITY when the day is today.' do
|
20
|
-
today = Date.new(2012, 10, 15)
|
21
|
-
@t00.priority(today).should == 10000
|
22
|
-
end
|
23
|
-
|
24
|
-
it 'return values between REMINDER_PRIORITY and DEADLINE_PRIORITY during the period.' do
|
25
|
-
today = Date.new(2012, 10, 20)
|
26
|
-
@t00.priority(today).should == 15000
|
27
|
-
end
|
28
|
-
|
29
|
-
it 'return DEADLINE_PRIORITY when the day is past.' do
|
30
|
-
today = Date.new(2012, 10, 30)
|
31
|
-
@t00.priority(today).should == 20000
|
32
|
-
end
|
33
|
-
|
34
|
-
end
|
35
|
-
end
|
36
|
-
|
37
|
-
describe "#events" do
|
38
|
-
context '' do
|
39
|
-
it '' do
|
40
|
-
@t00.events.size.should == 2
|
41
|
-
@t00.events[0].date.should == Date.new(2012, 10, 15)
|
42
|
-
@t00.events[1].date.should == Date.new(2012, 10, 25)
|
43
|
-
end
|
44
|
-
end
|
45
|
-
end
|
46
|
-
end
|
47
|
-
end
|
48
|
-
|