1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
|
require 'spec_helper'
module OccurrenceRangeSpec
class Foo < Treetop::Runtime::SyntaxNode
end
describe "zero to two of a terminal symbol followed by a node class declaration and a block" do
testing_expression '"foo"..2 <OccurrenceRangeSpec::Foo> { def a_method; end }'
it "successfully parses epsilon, reporting a failure" do
parse('') do |result|
result.should_not be_nil
result.should be_an_instance_of(Foo)
result.should respond_to(:a_method)
terminal_failures = parser.terminal_failures
terminal_failures.size.should == 0
end
end
it "successfully parses epsilon, returning an instance declared node class and recording a terminal failure" do
parse('') do |result|
result.should_not be_nil
result.should be_an_instance_of(Foo)
result.should respond_to(:a_method)
terminal_failures = parser.terminal_failures
terminal_failures.size.should == 0
end
end
it "successfully parses one of that terminal, returning an instance of the declared node class and recording a terminal failure" do
parse("foo") do |result|
result.should_not be_nil
result.should be_an_instance_of(Foo)
result.should respond_to(:a_method)
terminal_failures = parser.terminal_failures
terminal_failures.size.should == 0
end
end
it "successfully parses two of that terminal, returning an instance of the declared node class and reporting no failure" do
parse("foofoo") do |result|
result.should_not be_nil
result.should be_an_instance_of(Foo)
result.should respond_to(:a_method)
terminal_failures = parser.terminal_failures
terminal_failures.size.should == 0
end
end
it "fails to parses two of that terminal but fails because of an extra one" do
parse("foofoofoo") do |result|
result.should be_nil
parser.terminal_failures.size.should == 1
end
end
it "parses two of three of that terminal, reporting no failure" do
parse("foofoofoo", :consume_all_input => false) do |result|
result.should_not be_nil
result.elements.size.should == 2
parser.terminal_failures.size.should == 0
end
end
end
describe "two to four of a terminal symbol followed by a node class declaration and a block" do
testing_expression '"foo" 2..4 <OccurrenceRangeSpec::Foo> { def a_method; end }'
it "fails to parse epsilon, reporting a failure" do
parse('') do |result|
result.should be_nil
terminal_failures = parser.terminal_failures
terminal_failures.size.should == 1
failure = terminal_failures.first
failure.index.should == 0
failure.expected_string.should == '"foo"'
end
end
it "fails to parse one of that terminal, returning an instance of the declared node class and recording a terminal failure" do
parse("foo") do |result|
result.should be_nil
terminal_failures = parser.terminal_failures
terminal_failures.size.should == 1
failure = terminal_failures.first
failure.index.should == 3
failure.expected_string.should == '"foo"'
end
end
it "successfully parses two of that terminal, returning an instance of the declared node class and reporting no failure" do
parse("foofoo") do |result|
result.should_not be_nil
result.should be_an_instance_of(Foo)
result.should respond_to(:a_method)
terminal_failures = parser.terminal_failures
terminal_failures.size.should == 0
end
end
it "successfully parses four of that terminal, returning an instance of the declared node class and reporting no failure" do
parse("foofoofoofoo") do |result|
result.should_not be_nil
result.should be_an_instance_of(Foo)
result.should respond_to(:a_method)
terminal_failures = parser.terminal_failures
terminal_failures.size.should == 0
end
end
it "fails to parses four of that terminal because there's an extra unconsumed one" do
parse("foofoofoofoofoo") do |result|
result.should be_nil
terminal_failures = parser.terminal_failures
terminal_failures.size.should == 1
end
end
end
describe "two to any number of a terminal symbol followed by a node class declaration and a block" do
testing_expression '"foo" 2.. <OccurrenceRangeSpec::Foo> { def a_method; end }'
it "fails to parse epsilon, reporting a failure" do
parse('') do |result|
result.should be_nil
terminal_failures = parser.terminal_failures
terminal_failures.size.should == 1
failure = terminal_failures.first
failure.index.should == 0
failure.expected_string.should == '"foo"'
end
end
it "fails to parse one of that terminal, returning an instance of the declared node class and recording a terminal failure" do
parse("foo") do |result|
result.should be_nil
terminal_failures = parser.terminal_failures
terminal_failures.size.should == 1
failure = terminal_failures.first
failure.index.should == 3
failure.expected_string.should == '"foo"'
end
end
it "successfully parses two of that terminal, returning an instance of the declared node class and reporting no failure" do
parse("foofoo") do |result|
result.should_not be_nil
result.should be_an_instance_of(Foo)
result.should respond_to(:a_method)
terminal_failures = parser.terminal_failures
terminal_failures.size.should == 1
failure = terminal_failures.first
failure.index.should == 6
failure.expected_string.should == '"foo"'
end
end
it "successfully parses four of that terminal, returning an instance of the declared node class and reporting a failure on the fifth" do
parse("foofoofoofoo") do |result|
result.should_not be_nil
result.should be_an_instance_of(Foo)
result.should respond_to(:a_method)
terminal_failures = parser.terminal_failures
terminal_failures.size.should == 1
failure = terminal_failures.first
failure.index.should == 12
failure.expected_string.should == '"foo"'
end
end
end
end
|