File: compiler_spec.rb

package info (click to toggle)
ruby-cucumber-core 1.5.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 580 kB
  • sloc: ruby: 5,763; makefile: 2
file content (249 lines) | stat: -rw-r--r-- 7,519 bytes parent folder | download | duplicates (3)
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
require 'cucumber/core'
require 'cucumber/core/compiler'
require 'cucumber/core/gherkin/writer'

module Cucumber::Core
  describe Compiler do
    include Gherkin::Writer
    include Cucumber::Core

    def self.stubs(*names)
      names.each do |name|
        let(name) { double(name.to_s) }
      end
    end

    it "compiles a feature with a single scenario" do
      gherkin_documents = [
        gherkin do
          feature do
            scenario do
              step 'passing'
            end
          end
        end
      ]
      compile(gherkin_documents) do |visitor|
        expect( visitor ).to receive(:test_case).once.ordered.and_yield(visitor)
        expect( visitor ).to receive(:test_step).once.ordered
        expect( visitor ).to receive(:done).once.ordered
      end
    end

    it "compiles a feature with a background" do
      gherkin_documents = [
        gherkin do
          feature do
            background do
              step 'passing'
            end

            scenario do
              step 'passing'
            end
          end
        end
      ]
      compile(gherkin_documents) do |visitor|
        expect( visitor ).to receive(:test_case).once.ordered.and_yield(visitor)
        expect( visitor ).to receive(:test_step).exactly(2).times.ordered
        expect( visitor ).to receive(:done).once.ordered
      end
    end

    it "compiles multiple features" do
      gherkin_documents = [
        gherkin do
          feature do
            background do
              step 'passing'
            end
            scenario do
              step 'passing'
            end
          end
        end,
        gherkin do
          feature do
            background do
              step 'passing'
            end
            scenario do
              step 'passing'
            end
          end
        end
      ]
      compile(gherkin_documents) do |visitor|
        expect( visitor ).to receive(:test_case).once.ordered
        expect( visitor ).to receive(:test_step).twice.ordered
        expect( visitor ).to receive(:test_case).once.ordered
        expect( visitor ).to receive(:test_step).twice.ordered
        expect( visitor ).to receive(:done).once
      end
    end

    context "compiling scenario outlines" do
      it "compiles a scenario outline to test cases" do
        gherkin_documents = [
          gherkin do
            feature do
              background do
                step 'passing'
              end

              scenario_outline do
                step 'passing <arg>'
                step 'passing'

                examples 'examples 1' do
                  row 'arg'
                  row '1'
                  row '2'
                end

                examples 'examples 2' do
                  row 'arg'
                  row 'a'
                end
              end
            end
          end
        ]
        compile(gherkin_documents) do |visitor|
          expect( visitor ).to receive(:test_case).exactly(3).times.and_yield(visitor)
          expect( visitor ).to receive(:test_step).exactly(9).times
          expect( visitor ).to receive(:done).once
        end
      end

      it 'replaces arguments correctly when generating test steps' do
        gherkin_documents = [
          gherkin do
            feature do
              scenario_outline do
                step 'passing <arg1> with <arg2>'
                step 'as well as <arg3>'

                examples do
                  row 'arg1', 'arg2', 'arg3'
                  row '1',    '2',    '3'
                end
              end
            end
          end
        ]

        compile(gherkin_documents) do |visitor|
          expect( visitor ).to receive(:test_step) do |test_step|
            visit_source(test_step) do |source_visitor|
              expect( source_visitor ).to receive(:step) do |step|
                expect(step.name).to eq 'passing 1 with 2'
              end
            end
          end.once.ordered

          expect( visitor ).to receive(:test_step) do |test_step|
            visit_source(test_step) do |source_visitor|
              expect( source_visitor ).to receive(:step) do |step|
                expect(step.name).to eq 'as well as 3'
              end
            end
          end.once.ordered

          expect( visitor ).to receive(:done).once.ordered
        end
      end
    end

    describe Compiler::FeatureCompiler do
      let(:receiver) { double('receiver') }
      let(:compiler) { Compiler::FeatureCompiler.new(receiver) }

      context "a scenario with a background" do
        stubs(:feature,
                :background,
                  :background_step,
                :scenario,
                  :scenario_step)

        it "sets the source correctly on the test steps" do
          expect( receiver ).to receive(:on_background_step).with(
            [feature, background, background_step]
          )
          expect( receiver ).to receive(:on_step).with(
            [feature, scenario, scenario_step]
          )
          expect( receiver ).to receive(:on_test_case).with(
            [feature, scenario]
          )
          compiler.feature(feature) do |f|
            f.background(background) do |b|
              b.step background_step
            end
            f.scenario(scenario) do |s|
              s.step scenario_step
            end
          end
        end
      end

      context "a scenario outline" do
        stubs(:feature,
                :background,
                  :background_step,
                :scenario_outline,
                  :outline_step,
                  :examples_table_1,
                    :examples_table_1_row_1,
                      :outline_ast_step,
                  :examples_table_2,
                    :examples_table_2_row_1,
             )

        it "sets the source correctly on the test steps" do
          allow( outline_step ).to receive(:to_step) { outline_ast_step }
          expect( receiver ).to receive(:on_step).with(
            [feature, scenario_outline, examples_table_1, examples_table_1_row_1, outline_ast_step]
          ).ordered
          expect( receiver ).to receive(:on_test_case).with(
            [feature, scenario_outline, examples_table_1, examples_table_1_row_1]
          ).ordered
          expect( receiver ).to receive(:on_step).with(
            [feature, scenario_outline, examples_table_2, examples_table_2_row_1, outline_ast_step]
          ).ordered
          expect( receiver ).to receive(:on_test_case).with(
            [feature, scenario_outline, examples_table_2, examples_table_2_row_1]
          ).ordered
          compiler.feature(feature) do |f|
            f.scenario_outline(scenario_outline) do |o|
              o.outline_step outline_step
              o.examples_table(examples_table_1) do |t|
                t.examples_table_row(examples_table_1_row_1)
              end
              o.examples_table(examples_table_2) do |t|
                t.examples_table_row(examples_table_2_row_1)
              end
            end
          end
        end
      end
    end

    def visit_source(node)
      visitor = double.as_null_object
      yield visitor
      node.describe_source_to(visitor)
    end

    def compile(gherkin_documents)
      visitor = double
      allow( visitor ).to receive(:test_suite).and_yield(visitor)
      allow( visitor ).to receive(:test_case).and_yield(visitor)
      yield visitor
      super(gherkin_documents, visitor)
    end

  end
end