nudge 0.2.1 → 0.2.2
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/VERSION +1 -1
- data/spec/instructions/bool/bool_duplicate_spec.rb +50 -0
- data/spec/instructions/bool/bool_from_float_spec.rb +41 -0
- data/spec/instructions/bool/bool_from_int_spec.rb +41 -0
- data/spec/instructions/bool/bool_pop_spec.rb +47 -0
- data/spec/instructions/bool/bool_rotate_spec.rb +60 -0
- data/spec/instructions/bool/bool_swap_spec.rb +64 -0
- data/spec/instructions/code/code_depth_spec.rb +39 -0
- data/spec/instructions/code/code_duplicate_spec.rb +50 -0
- data/spec/instructions/code/code_flush_spec.rb +37 -0
- data/spec/instructions/code/code_from_bool_spec.rb +37 -0
- data/spec/instructions/code/code_from_float_spec.rb +37 -0
- data/spec/instructions/code/code_from_int_spec.rb +37 -0
- data/spec/instructions/code/code_pop_spec.rb +47 -0
- data/spec/instructions/code/code_rotate_spec.rb +60 -0
- data/spec/instructions/code/code_swap_spec.rb +58 -0
- data/spec/instructions/float/float_duplicate_spec.rb +50 -0
- data/spec/instructions/float/float_from_bool_spec.rb +42 -0
- data/spec/instructions/float/float_from_int_spec.rb +37 -0
- data/spec/instructions/float/float_pop_spec.rb +47 -0
- data/spec/instructions/float/float_rotate_spec.rb +60 -0
- data/spec/instructions/float/float_swap_spec.rb +64 -0
- data/spec/instructions/int/int_duplicate_spec.rb +50 -0
- data/spec/instructions/int/int_from_bool_spec.rb +43 -0
- data/spec/instructions/int/int_from_float_spec.rb +37 -0
- data/spec/instructions/int/int_pop_spec.rb +47 -0
- data/spec/instructions/int/int_rotate_spec.rb +60 -0
- data/spec/instructions/int/int_swap_spec.rb +64 -0
- data/spec/instructions/name/name_duplicate_spec.rb +50 -0
- data/spec/instructions/name/name_pop_spec.rb +47 -0
- data/spec/instructions/name/name_rotate_spec.rb +60 -0
- data/spec/instructions/name/name_swap_spec.rb +58 -0
- data/spec/interpreter/interpreter_spec.rb +0 -2
- metadata +66 -16
- data/spec/instructions/code/code_stack_spec.rb +0 -386
- data/spec/instructions/split_these/bool_stack_spec.rb +0 -95
- data/spec/instructions/split_these/conversions_spec.rb +0 -103
- data/spec/instructions/split_these/float_stack_spec.rb +0 -92
- data/spec/instructions/split_these/int_stack_spec.rb +0 -81
- data/spec/instructions/split_these/name_stack_spec.rb +0 -84
- /data/spec/instructions/code/{code_fromname_spec.rb → code_from_name_spec.rb} +0 -0
@@ -0,0 +1,58 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "../../spec_helper")
|
2
|
+
include Nudge
|
3
|
+
|
4
|
+
|
5
|
+
describe CodeSwapInstruction do
|
6
|
+
|
7
|
+
it_should_behave_like "every Nudge Instruction"
|
8
|
+
|
9
|
+
before(:each) do
|
10
|
+
@context = Interpreter.new
|
11
|
+
@i1 = CodeSwapInstruction.new(@context)
|
12
|
+
end
|
13
|
+
|
14
|
+
|
15
|
+
describe "\#go" do
|
16
|
+
before(:each) do
|
17
|
+
@i1 = CodeSwapInstruction.new(@context)
|
18
|
+
@code1 = ValuePoint.new("code", "block {}")
|
19
|
+
end
|
20
|
+
|
21
|
+
describe "\#preconditions?" do
|
22
|
+
it "should check that there are enough parameters" do
|
23
|
+
2.times {@context.stacks[:code].push(@code1)}
|
24
|
+
@i1.preconditions?.should == true
|
25
|
+
end
|
26
|
+
|
27
|
+
it "should raise an error if the preconditions aren't met" do
|
28
|
+
@context.clear_stacks # there are no params at all
|
29
|
+
lambda{@i1.preconditions?}.should raise_error(Instruction::NotEnoughStackItems)
|
30
|
+
end
|
31
|
+
|
32
|
+
it "should successfully run #go only if all preconditions are met" do
|
33
|
+
3.times {@context.stacks[:code].push(@code1)}
|
34
|
+
@i1.should_receive(:cleanup)
|
35
|
+
@i1.go
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
describe "\#derive" do
|
40
|
+
it "should pop all the arguments" do
|
41
|
+
2.times {@context.stacks[:code].push(@code1)}
|
42
|
+
@i1.stub!(:cleanup) # and do nothing
|
43
|
+
@i1.go
|
44
|
+
@context.stacks[:code].depth.should == 0
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
describe "\#cleanup" do
|
49
|
+
it "should swap the top two values" do
|
50
|
+
@context.push(:code,"do b")
|
51
|
+
@context.push(:code,"do a")
|
52
|
+
@i1.go
|
53
|
+
@context.pop_value(:code).should == "do b"
|
54
|
+
@context.pop_value(:code).should == "do a"
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
@@ -0,0 +1,50 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "../../spec_helper")
|
2
|
+
include Nudge
|
3
|
+
|
4
|
+
|
5
|
+
describe FloatDuplicateInstruction do
|
6
|
+
|
7
|
+
it_should_behave_like "every Nudge Instruction"
|
8
|
+
|
9
|
+
before(:each) do
|
10
|
+
@context = Interpreter.new
|
11
|
+
@i1 = FloatDuplicateInstruction.new(@context)
|
12
|
+
end
|
13
|
+
|
14
|
+
|
15
|
+
describe "\#go" do
|
16
|
+
before(:each) do
|
17
|
+
@i1 = FloatDuplicateInstruction.new(@context)
|
18
|
+
@float1 = ValuePoint.new("float", 6.78)
|
19
|
+
end
|
20
|
+
|
21
|
+
describe "\#preconditions?" do
|
22
|
+
it "should check that there are enough parameters" do
|
23
|
+
2.times {@context.stacks[:float].push(@float1)}
|
24
|
+
@i1.preconditions?.should == true
|
25
|
+
end
|
26
|
+
|
27
|
+
it "should raise an error if the preconditions aren't met" do
|
28
|
+
@context.clear_stacks # there are no params at all
|
29
|
+
lambda{@i1.preconditions?}.should raise_error(Instruction::NotEnoughStackItems)
|
30
|
+
end
|
31
|
+
|
32
|
+
it "should successfully run #go only if all preconditions are met" do
|
33
|
+
3.times {@context.stacks[:float].push(@float1)}
|
34
|
+
@i1.should_receive(:cleanup)
|
35
|
+
@i1.go
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
|
40
|
+
describe "\#cleanup" do
|
41
|
+
it "should swap the top two values" do
|
42
|
+
@context.push(:float,"8.90")
|
43
|
+
@i1.go
|
44
|
+
@context.depth(:float).should == 2
|
45
|
+
@context.pop_value(:float).should == 8.90
|
46
|
+
@context.pop_value(:float).should == 8.90
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
#encoding: utf-8
|
2
|
+
require File.join(File.dirname(__FILE__), "../../spec_helper")
|
3
|
+
include Nudge
|
4
|
+
|
5
|
+
describe FloatFromBoolInstruction do
|
6
|
+
|
7
|
+
it_should_behave_like "every Nudge Instruction"
|
8
|
+
|
9
|
+
before(:each) do
|
10
|
+
@context = Interpreter.new
|
11
|
+
@i1 = FloatFromBoolInstruction.new(@context)
|
12
|
+
@context.clear_stacks
|
13
|
+
end
|
14
|
+
|
15
|
+
it "should check that there are enough parameters" do
|
16
|
+
@context.push(:bool, "false")
|
17
|
+
@i1.preconditions?.should == true
|
18
|
+
end
|
19
|
+
|
20
|
+
it "should raise an error if the preconditions aren't met" do
|
21
|
+
@context.clear_stacks # there are no params at all
|
22
|
+
lambda{@i1.preconditions?}.should raise_error(Instruction::NotEnoughStackItems)
|
23
|
+
end
|
24
|
+
|
25
|
+
it "should successfully run #go only if all preconditions are met" do
|
26
|
+
@context.push(:bool, "true")
|
27
|
+
@i1.should_receive(:cleanup)
|
28
|
+
@i1.go
|
29
|
+
end
|
30
|
+
|
31
|
+
it "should create and push the new (expected) value to the right place" do
|
32
|
+
@context.push(:bool, "true")
|
33
|
+
@i1.go
|
34
|
+
@context.depth(:float).should == 1
|
35
|
+
@context.peek_value(:float).should == 1.0
|
36
|
+
|
37
|
+
@context.push(:bool, "false")
|
38
|
+
@i1.go
|
39
|
+
@context.peek_value(:float).should == 0.0
|
40
|
+
|
41
|
+
end
|
42
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
#encoding: utf-8
|
2
|
+
require File.join(File.dirname(__FILE__), "../../spec_helper")
|
3
|
+
include Nudge
|
4
|
+
|
5
|
+
describe FloatFromIntInstruction do
|
6
|
+
|
7
|
+
it_should_behave_like "every Nudge Instruction"
|
8
|
+
|
9
|
+
before(:each) do
|
10
|
+
@context = Interpreter.new
|
11
|
+
@i1 = FloatFromIntInstruction.new(@context)
|
12
|
+
@context.clear_stacks
|
13
|
+
end
|
14
|
+
|
15
|
+
it "should check that there are enough parameters" do
|
16
|
+
@context.push(:int, "12")
|
17
|
+
@i1.preconditions?.should == true
|
18
|
+
end
|
19
|
+
|
20
|
+
it "should raise an error if the preconditions aren't met" do
|
21
|
+
@context.clear_stacks # there are no params at all
|
22
|
+
lambda{@i1.preconditions?}.should raise_error(Instruction::NotEnoughStackItems)
|
23
|
+
end
|
24
|
+
|
25
|
+
it "should successfully run #go only if all preconditions are met" do
|
26
|
+
@context.push(:int, "2")
|
27
|
+
@i1.should_receive(:cleanup)
|
28
|
+
@i1.go
|
29
|
+
end
|
30
|
+
|
31
|
+
it "should create and push the new (expected) value to the right place" do
|
32
|
+
@context.push(:int, "-21")
|
33
|
+
@i1.go
|
34
|
+
@context.depth(:float).should == 1
|
35
|
+
@context.peek_value(:float).should == -21.0
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "../../spec_helper")
|
2
|
+
include Nudge
|
3
|
+
|
4
|
+
describe FloatPopInstruction do
|
5
|
+
|
6
|
+
it_should_behave_like "every Nudge Instruction"
|
7
|
+
|
8
|
+
before(:each) do
|
9
|
+
@context = Interpreter.new
|
10
|
+
@i1 = FloatPopInstruction.new(@context)
|
11
|
+
end
|
12
|
+
|
13
|
+
|
14
|
+
describe "\#go" do
|
15
|
+
before(:each) do
|
16
|
+
@i1 = FloatPopInstruction.new(@context)
|
17
|
+
@float1 = ValuePoint.new("float", "3.333")
|
18
|
+
end
|
19
|
+
|
20
|
+
describe "\#preconditions?" do
|
21
|
+
it "should check that there are enough parameters" do
|
22
|
+
2.times {@context.stacks[:float].push(@float1)}
|
23
|
+
@i1.preconditions?.should == true
|
24
|
+
end
|
25
|
+
|
26
|
+
it "should raise an error if the preconditions aren't met" do
|
27
|
+
@context.clear_stacks # there are no params at all
|
28
|
+
lambda{@i1.preconditions?}.should raise_error(Instruction::NotEnoughStackItems)
|
29
|
+
end
|
30
|
+
|
31
|
+
it "should successfully run #go only if all preconditions are met" do
|
32
|
+
3.times {@context.stacks[:float].push(@float1)}
|
33
|
+
@i1.should_receive(:cleanup)
|
34
|
+
@i1.go
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
describe "\#derive" do
|
39
|
+
it "should pop one item" do
|
40
|
+
2.times {@context.stacks[:float].push(@float1)}
|
41
|
+
@i1.go
|
42
|
+
@context.stacks[:float].depth.should == 1
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
end
|
47
|
+
end
|
@@ -0,0 +1,60 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "../../spec_helper")
|
2
|
+
include Nudge
|
3
|
+
|
4
|
+
|
5
|
+
describe FloatRotateInstruction do
|
6
|
+
|
7
|
+
it_should_behave_like "every Nudge Instruction"
|
8
|
+
|
9
|
+
before(:each) do
|
10
|
+
@context = Interpreter.new
|
11
|
+
@i1 = FloatRotateInstruction.new(@context)
|
12
|
+
end
|
13
|
+
|
14
|
+
|
15
|
+
describe "\#go" do
|
16
|
+
before(:each) do
|
17
|
+
@i1 = FloatRotateInstruction.new(@context)
|
18
|
+
@float1 = ValuePoint.new("float", 1.0)
|
19
|
+
end
|
20
|
+
|
21
|
+
describe "\#preconditions?" do
|
22
|
+
it "should check that there are enough parameters" do
|
23
|
+
3.times {@context.stacks[:float].push(@float1)}
|
24
|
+
@i1.preconditions?.should == true
|
25
|
+
end
|
26
|
+
|
27
|
+
it "should raise an error if the preconditions aren't met" do
|
28
|
+
@context.clear_stacks # there are no params at all
|
29
|
+
lambda{@i1.preconditions?}.should raise_error(Instruction::NotEnoughStackItems)
|
30
|
+
end
|
31
|
+
|
32
|
+
it "should successfully run #go only if all preconditions are met" do
|
33
|
+
3.times {@context.stacks[:float].push(@float1)}
|
34
|
+
@i1.should_receive(:cleanup)
|
35
|
+
@i1.go
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
describe "\#derive" do
|
40
|
+
it "should pop all the arguments" do
|
41
|
+
3.times {@context.stacks[:float].push(@float1)}
|
42
|
+
@i1.stub!(:cleanup) # and do nothing
|
43
|
+
@i1.go
|
44
|
+
@context.stacks[:float].depth.should == 0
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
describe "\#cleanup" do
|
49
|
+
it "should move around the top three values" do
|
50
|
+
@context.push(:float,"3.3")
|
51
|
+
@context.push(:float,"2.2")
|
52
|
+
@context.push(:float,"1.1")
|
53
|
+
@i1.go
|
54
|
+
@context.pop_value(:float).should == 3.3
|
55
|
+
@context.pop_value(:float).should == 1.1
|
56
|
+
@context.pop_value(:float).should == 2.2
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
@@ -0,0 +1,64 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "../../spec_helper")
|
2
|
+
include Nudge
|
3
|
+
|
4
|
+
|
5
|
+
describe FloatSwapInstruction do
|
6
|
+
|
7
|
+
it_should_behave_like "every Nudge Instruction"
|
8
|
+
|
9
|
+
before(:each) do
|
10
|
+
@context = Interpreter.new
|
11
|
+
@i1 = FloatSwapInstruction.new(@context)
|
12
|
+
end
|
13
|
+
|
14
|
+
|
15
|
+
describe "\#go" do
|
16
|
+
before(:each) do
|
17
|
+
@i1 = FloatSwapInstruction.new(@context)
|
18
|
+
@float1 = ValuePoint.new("float", 1.234)
|
19
|
+
end
|
20
|
+
|
21
|
+
describe "\#preconditions?" do
|
22
|
+
it "should check that there are enough parameters" do
|
23
|
+
2.times {@context.stacks[:float].push(@float1)}
|
24
|
+
@i1.preconditions?.should == true
|
25
|
+
end
|
26
|
+
|
27
|
+
it "should raise an error if the preconditions aren't met" do
|
28
|
+
@context.clear_stacks # there are no params at all
|
29
|
+
lambda{@i1.preconditions?}.should raise_error(Instruction::NotEnoughStackItems)
|
30
|
+
end
|
31
|
+
|
32
|
+
it "should successfully run #go only if all preconditions are met" do
|
33
|
+
3.times {@context.stacks[:float].push(@float1)}
|
34
|
+
@i1.should_receive(:cleanup)
|
35
|
+
@i1.go
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
describe "\#derive" do
|
40
|
+
it "should pop all the arguments" do
|
41
|
+
2.times {@context.stacks[:float].push(@float1)}
|
42
|
+
@i1.stub!(:cleanup) # and do nothing
|
43
|
+
@i1.go
|
44
|
+
@context.stacks[:float].depth.should == 0
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
describe "\#cleanup" do
|
49
|
+
it "should swap the top two values" do
|
50
|
+
@context.push(:float,"1.234")
|
51
|
+
@context.push(:float,"2.468")
|
52
|
+
@i1.go
|
53
|
+
@context.pop_value(:float).should == 1.234
|
54
|
+
@context.pop_value(:float).should == 2.468
|
55
|
+
|
56
|
+
@context.push(:float,"4.321")
|
57
|
+
@context.push(:float,"3.21")
|
58
|
+
@i1.go
|
59
|
+
@context.pop_value(:float).should == 4.321
|
60
|
+
@context.pop_value(:float).should == 3.21
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
@@ -0,0 +1,50 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "../../spec_helper")
|
2
|
+
include Nudge
|
3
|
+
|
4
|
+
|
5
|
+
describe IntDuplicateInstruction do
|
6
|
+
|
7
|
+
it_should_behave_like "every Nudge Instruction"
|
8
|
+
|
9
|
+
before(:each) do
|
10
|
+
@context = Interpreter.new
|
11
|
+
@i1 = IntDuplicateInstruction.new(@context)
|
12
|
+
end
|
13
|
+
|
14
|
+
|
15
|
+
describe "\#go" do
|
16
|
+
before(:each) do
|
17
|
+
@i1 = IntDuplicateInstruction.new(@context)
|
18
|
+
@int1 = ValuePoint.new("int", 678)
|
19
|
+
end
|
20
|
+
|
21
|
+
describe "\#preconditions?" do
|
22
|
+
it "should check that there are enough parameters" do
|
23
|
+
2.times {@context.stacks[:int].push(@int1)}
|
24
|
+
@i1.preconditions?.should == true
|
25
|
+
end
|
26
|
+
|
27
|
+
it "should raise an error if the preconditions aren't met" do
|
28
|
+
@context.clear_stacks # there are no params at all
|
29
|
+
lambda{@i1.preconditions?}.should raise_error(Instruction::NotEnoughStackItems)
|
30
|
+
end
|
31
|
+
|
32
|
+
it "should successfully run #go only if all preconditions are met" do
|
33
|
+
3.times {@context.stacks[:int].push(@int1)}
|
34
|
+
@i1.should_receive(:cleanup)
|
35
|
+
@i1.go
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
|
40
|
+
describe "\#cleanup" do
|
41
|
+
it "should swap the top two values" do
|
42
|
+
@context.push(:int,"890")
|
43
|
+
@i1.go
|
44
|
+
@context.depth(:int).should == 2
|
45
|
+
@context.pop_value(:int).should == 890
|
46
|
+
@context.pop_value(:int).should == 890
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
#encoding: utf-8
|
2
|
+
require File.join(File.dirname(__FILE__), "../../spec_helper")
|
3
|
+
include Nudge
|
4
|
+
|
5
|
+
describe IntFromBoolInstruction do
|
6
|
+
|
7
|
+
it_should_behave_like "every Nudge Instruction"
|
8
|
+
|
9
|
+
before(:each) do
|
10
|
+
@context = Interpreter.new
|
11
|
+
@i1 = IntFromBoolInstruction.new(@context)
|
12
|
+
@context.clear_stacks
|
13
|
+
end
|
14
|
+
|
15
|
+
it "should check that there are enough parameters" do
|
16
|
+
@context.push(:bool, "false")
|
17
|
+
@i1.preconditions?.should == true
|
18
|
+
end
|
19
|
+
|
20
|
+
it "should raise an error if the preconditions aren't met" do
|
21
|
+
@context.clear_stacks # there are no params at all
|
22
|
+
lambda{@i1.preconditions?}.should raise_error(Instruction::NotEnoughStackItems)
|
23
|
+
end
|
24
|
+
|
25
|
+
it "should successfully run #go only if all preconditions are met" do
|
26
|
+
@context.push(:bool, "false")
|
27
|
+
@i1.should_receive(:cleanup)
|
28
|
+
@i1.go
|
29
|
+
end
|
30
|
+
|
31
|
+
it "should create and push the new (expected) value to the right place" do
|
32
|
+
@context.push(:bool, "false")
|
33
|
+
@i1.go
|
34
|
+
@context.depth(:int).should == 1
|
35
|
+
@context.peek_value(:int).should == 0
|
36
|
+
|
37
|
+
@context.push(:bool, "true")
|
38
|
+
@i1.go
|
39
|
+
@context.depth(:int).should == 2
|
40
|
+
@context.peek_value(:int).should == 1
|
41
|
+
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
#encoding: utf-8
|
2
|
+
require File.join(File.dirname(__FILE__), "../../spec_helper")
|
3
|
+
include Nudge
|
4
|
+
|
5
|
+
describe IntFromFloatInstruction do
|
6
|
+
|
7
|
+
it_should_behave_like "every Nudge Instruction"
|
8
|
+
|
9
|
+
before(:each) do
|
10
|
+
@context = Interpreter.new
|
11
|
+
@i1 = IntFromFloatInstruction.new(@context)
|
12
|
+
@context.clear_stacks
|
13
|
+
end
|
14
|
+
|
15
|
+
it "should check that there are enough parameters" do
|
16
|
+
@context.push(:float, "1.234")
|
17
|
+
@i1.preconditions?.should == true
|
18
|
+
end
|
19
|
+
|
20
|
+
it "should raise an error if the preconditions aren't met" do
|
21
|
+
@context.clear_stacks # there are no params at all
|
22
|
+
lambda{@i1.preconditions?}.should raise_error(Instruction::NotEnoughStackItems)
|
23
|
+
end
|
24
|
+
|
25
|
+
it "should successfully run #go only if all preconditions are met" do
|
26
|
+
@context.push(:float, "2.22")
|
27
|
+
@i1.should_receive(:cleanup)
|
28
|
+
@i1.go
|
29
|
+
end
|
30
|
+
|
31
|
+
it "should create and push the new (expected) value to the right place" do
|
32
|
+
@context.push(:float, "-2.22")
|
33
|
+
@i1.go
|
34
|
+
@context.depth(:int).should == 1
|
35
|
+
@context.peek_value(:int).should == -2
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "../../spec_helper")
|
2
|
+
include Nudge
|
3
|
+
|
4
|
+
describe IntPopInstruction do
|
5
|
+
|
6
|
+
it_should_behave_like "every Nudge Instruction"
|
7
|
+
|
8
|
+
before(:each) do
|
9
|
+
@context = Interpreter.new
|
10
|
+
@i1 = IntPopInstruction.new(@context)
|
11
|
+
end
|
12
|
+
|
13
|
+
|
14
|
+
describe "\#go" do
|
15
|
+
before(:each) do
|
16
|
+
@i1 = IntPopInstruction.new(@context)
|
17
|
+
@int1 = ValuePoint.new("int", 12345)
|
18
|
+
end
|
19
|
+
|
20
|
+
describe "\#preconditions?" do
|
21
|
+
it "should check that there are enough parameters" do
|
22
|
+
2.times {@context.stacks[:int].push(@int1)}
|
23
|
+
@i1.preconditions?.should == true
|
24
|
+
end
|
25
|
+
|
26
|
+
it "should raise an error if the preconditions aren't met" do
|
27
|
+
@context.clear_stacks # there are no params at all
|
28
|
+
lambda{@i1.preconditions?}.should raise_error(Instruction::NotEnoughStackItems)
|
29
|
+
end
|
30
|
+
|
31
|
+
it "should successfully run #go only if all preconditions are met" do
|
32
|
+
3.times {@context.stacks[:int].push(@int1)}
|
33
|
+
@i1.should_receive(:cleanup)
|
34
|
+
@i1.go
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
describe "\#derive" do
|
39
|
+
it "should pop one item" do
|
40
|
+
2.times {@context.stacks[:int].push(@int1)}
|
41
|
+
@i1.go
|
42
|
+
@context.stacks[:int].depth.should == 1
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
end
|
47
|
+
end
|
@@ -0,0 +1,60 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "../../spec_helper")
|
2
|
+
include Nudge
|
3
|
+
|
4
|
+
|
5
|
+
describe IntRotateInstruction do
|
6
|
+
|
7
|
+
it_should_behave_like "every Nudge Instruction"
|
8
|
+
|
9
|
+
before(:each) do
|
10
|
+
@context = Interpreter.new
|
11
|
+
@i1 = IntRotateInstruction.new(@context)
|
12
|
+
end
|
13
|
+
|
14
|
+
|
15
|
+
describe "\#go" do
|
16
|
+
before(:each) do
|
17
|
+
@i1 = IntRotateInstruction.new(@context)
|
18
|
+
@int1 = ValuePoint.new("int", 1)
|
19
|
+
end
|
20
|
+
|
21
|
+
describe "\#preconditions?" do
|
22
|
+
it "should check that there are enough parameters" do
|
23
|
+
3.times {@context.stacks[:int].push(@int1)}
|
24
|
+
@i1.preconditions?.should == true
|
25
|
+
end
|
26
|
+
|
27
|
+
it "should raise an error if the preconditions aren't met" do
|
28
|
+
@context.clear_stacks # there are no params at all
|
29
|
+
lambda{@i1.preconditions?}.should raise_error(Instruction::NotEnoughStackItems)
|
30
|
+
end
|
31
|
+
|
32
|
+
it "should successfully run #go only if all preconditions are met" do
|
33
|
+
3.times {@context.stacks[:int].push(@int1)}
|
34
|
+
@i1.should_receive(:cleanup)
|
35
|
+
@i1.go
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
describe "\#derive" do
|
40
|
+
it "should pop all the arguments" do
|
41
|
+
3.times {@context.stacks[:int].push(@int1)}
|
42
|
+
@i1.stub!(:cleanup) # and do nothing
|
43
|
+
@i1.go
|
44
|
+
@context.stacks[:int].depth.should == 0
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
describe "\#cleanup" do
|
49
|
+
it "should move around the top three values" do
|
50
|
+
@context.push(:int,"3")
|
51
|
+
@context.push(:int,"2")
|
52
|
+
@context.push(:int,"1")
|
53
|
+
@i1.go
|
54
|
+
@context.pop_value(:int).should == 3
|
55
|
+
@context.pop_value(:int).should == 1
|
56
|
+
@context.pop_value(:int).should == 2
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
@@ -0,0 +1,64 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "../../spec_helper")
|
2
|
+
include Nudge
|
3
|
+
|
4
|
+
|
5
|
+
describe IntSwapInstruction do
|
6
|
+
|
7
|
+
it_should_behave_like "every Nudge Instruction"
|
8
|
+
|
9
|
+
before(:each) do
|
10
|
+
@context = Interpreter.new
|
11
|
+
@i1 = IntSwapInstruction.new(@context)
|
12
|
+
end
|
13
|
+
|
14
|
+
|
15
|
+
describe "\#go" do
|
16
|
+
before(:each) do
|
17
|
+
@i1 = IntSwapInstruction.new(@context)
|
18
|
+
@int1 = ValuePoint.new("int", 88)
|
19
|
+
end
|
20
|
+
|
21
|
+
describe "\#preconditions?" do
|
22
|
+
it "should check that there are enough parameters" do
|
23
|
+
2.times {@context.stacks[:int].push(@int1)}
|
24
|
+
@i1.preconditions?.should == true
|
25
|
+
end
|
26
|
+
|
27
|
+
it "should raise an error if the preconditions aren't met" do
|
28
|
+
@context.clear_stacks # there are no params at all
|
29
|
+
lambda{@i1.preconditions?}.should raise_error(Instruction::NotEnoughStackItems)
|
30
|
+
end
|
31
|
+
|
32
|
+
it "should successfully run #go only if all preconditions are met" do
|
33
|
+
3.times {@context.stacks[:int].push(@int1)}
|
34
|
+
@i1.should_receive(:cleanup)
|
35
|
+
@i1.go
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
describe "\#derive" do
|
40
|
+
it "should pop all the arguments" do
|
41
|
+
2.times {@context.stacks[:int].push(@int1)}
|
42
|
+
@i1.stub!(:cleanup) # and do nothing
|
43
|
+
@i1.go
|
44
|
+
@context.stacks[:int].depth.should == 0
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
describe "\#cleanup" do
|
49
|
+
it "should swap the top two values" do
|
50
|
+
@context.push(:int,"1")
|
51
|
+
@context.push(:int,"2")
|
52
|
+
@i1.go
|
53
|
+
@context.pop_value(:int).should == 1
|
54
|
+
@context.pop_value(:int).should == 2
|
55
|
+
|
56
|
+
@context.push(:int,"4444")
|
57
|
+
@context.push(:int,"333")
|
58
|
+
@i1.go
|
59
|
+
@context.pop_value(:int).should == 4444
|
60
|
+
@context.pop_value(:int).should == 333
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|