aslakhellesoy-cucumber 0.1.16.5 → 0.1.99.1

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,4 +1,4 @@
1
- == Git (ast - future 0.2)
1
+ == Git (future 0.2)
2
2
 
3
3
  This is a major rewrite of Cucumber's internals. The rewrite was done to address technical
4
4
  debt and to have a codebase that is easier to evolve and maintain. There are some major
@@ -89,7 +89,7 @@ to this:
89
89
 
90
90
  == Bugfixes
91
91
  * Flush output in HTML formatter since JRuby doesnt do it automatically (Diego Carrion)
92
- * Better handling of ARGV (#169 David Chelimsky)
92
+ * Better handling of ARGV (#169 David Chelimsky, Ben Mabey)
93
93
  * Compatibility with ruby-debug (do ARGV.dup in bin/cucumber so it can restart ruby with same args) (Aslak Hellesøy)
94
94
 
95
95
  == 0.1.16 2009-01-19
data/Manifest.txt CHANGED
@@ -107,7 +107,6 @@ examples/jbehave/README.textile
107
107
  examples/jbehave/features/support/env.rb
108
108
  examples/jbehave/features/trading.feature
109
109
  examples/jbehave/pom.xml
110
- examples/jbehave/target/maven-archiver/pom.properties
111
110
  examples/selenium/Rakefile
112
111
  examples/selenium/features/search.feature
113
112
  examples/selenium/features/step_definitons/stories_steps.rb
data/lib/cucumber/cli.rb CHANGED
@@ -234,11 +234,8 @@ Defined profiles in cucumber.yml:
234
234
  exit_with_error(e.message)
235
235
  end
236
236
 
237
-
238
237
  # Requires files - typically step files and ruby feature files.
239
238
  def require_files
240
- @args.clear # Shut up RSpec
241
-
242
239
  verbose_log("Ruby files required:")
243
240
  files_to_require.each do |lib|
244
241
  begin
@@ -0,0 +1,35 @@
1
+ module Cucumber
2
+ module Formatter
3
+ class Rerun < Ast::Visitor
4
+ def initialize(step_mother, io, options)
5
+ super(step_mother)
6
+ @io = io
7
+ @file_names = []
8
+ @file_lines = Hash.new{|h,k| h[k] = []}
9
+ end
10
+
11
+ def visit_features(features)
12
+ super
13
+ files = @file_names.uniq.map do |file|
14
+ lines = @file_lines[file]
15
+ "#{file}:#{lines.join(':')}"
16
+ end
17
+ @io.puts files.join(' ')
18
+ end
19
+
20
+ def visit_feature_element(feature_element)
21
+ @rerun = false
22
+ super
23
+ if @rerun
24
+ file, line = *feature_element.file_line.split(':')
25
+ @file_lines[file] << line
26
+ @file_names << file
27
+ end
28
+ end
29
+
30
+ def visit_step_name(keyword, step_name, status, step_definition, source_indent)
31
+ @rerun = true if [:failed].index(status)
32
+ end
33
+ end
34
+ end
35
+ end
@@ -2,8 +2,8 @@ module Cucumber #:nodoc:
2
2
  class VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 1
5
- TINY = 16
6
- PATCH = 5 # Set to nil for official release
5
+ TINY = 99
6
+ PATCH = 1 # Set to nil for official release
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PATCH].compact.join('.')
9
9
  end
data/pretty.txt ADDED
@@ -0,0 +1,486 @@
1
+ Feature: Cucumber command line
2
+ In order to write better software
3
+ Developers should be able to execute requirements as tests
4
+
5
+ Scenario: Run single scenario with missing step definition # features/cucumber_cli.feature:5
6
+ When I run cucumber -q features/sample.feature:5 # features/step_definitions/cucumber_steps.rb:5
7
+ Then it should pass with # features/step_definitions/cucumber_steps.rb:15
8
+ """
9
+ @one
10
+ Feature: Sample
11
+
12
+ @two @three
13
+ Scenario: Missing
14
+ Given missing
15
+
16
+ 1 scenario
17
+ 1 undefined step
18
+
19
+ """
20
+
21
+ Scenario: Fail with --strict # features/cucumber_cli.feature:21
22
+ When I run cucumber -q features/sample.feature:5 --strict # features/step_definitions/cucumber_steps.rb:5
23
+ Then it should fail with # features/step_definitions/cucumber_steps.rb:15
24
+ """
25
+ @one
26
+ Feature: Sample
27
+
28
+ @two @three
29
+ Scenario: Missing
30
+ Given missing
31
+
32
+ 1 scenario
33
+ 1 undefined step
34
+
35
+ """
36
+
37
+ Scenario: Specify 2 line numbers where one is a tag # features/cucumber_cli.feature:37
38
+ When I run cucumber -q features/sample.feature:5:14 # features/step_definitions/cucumber_steps.rb:5
39
+ Then it should fail with # features/step_definitions/cucumber_steps.rb:15
40
+ """
41
+ @one
42
+ Feature: Sample
43
+
44
+ @two @three
45
+ Scenario: Missing
46
+ Given missing
47
+
48
+ @four
49
+ Scenario: Failing
50
+ Given failing
51
+ FAIL (RuntimeError)
52
+ ./features/step_definitions/sample_steps.rb:2:in `flunker'
53
+ ./features/step_definitions/sample_steps.rb:9:in `/^failing$/'
54
+ features/sample.feature:16:in `Given failing'
55
+
56
+ 2 scenarios
57
+ 1 failed step
58
+ 1 undefined step
59
+
60
+ """
61
+
62
+ Scenario: Require missing step definition from elsewhere # features/cucumber_cli.feature:62
63
+ When I run cucumber -q -r ../../features/step_definitions/extra_steps.rb features/sample.feature:5 # features/step_definitions/cucumber_steps.rb:5
64
+ Then it should pass with # features/step_definitions/cucumber_steps.rb:15
65
+ """
66
+ @one
67
+ Feature: Sample
68
+
69
+ @two @three
70
+ Scenario: Missing
71
+ Given missing
72
+
73
+ 1 scenario
74
+ 1 passed step
75
+
76
+ """
77
+
78
+ Scenario: Specify the line number of a row # features/cucumber_cli.feature:78
79
+ When I run cucumber -q features/sample.feature:12 # features/step_definitions/cucumber_steps.rb:5
80
+ Then it should pass with # features/step_definitions/cucumber_steps.rb:15
81
+ """
82
+ @one
83
+ Feature: Sample
84
+
85
+ @three
86
+ Scenario: Passing
87
+ Given passing
88
+ | a | b |
89
+ | c | d |
90
+
91
+ 1 scenario
92
+ 1 passed step
93
+
94
+ """
95
+
96
+ Scenario: Run all with progress formatter # features/cucumber_cli.feature:96
97
+ When I run cucumber -q --format progress features/sample.feature # features/step_definitions/cucumber_steps.rb:5
98
+ Then it should fail with # features/step_definitions/cucumber_steps.rb:15
99
+ """
100
+ U.F
101
+
102
+ (::) failed steps (::)
103
+
104
+ FAIL (RuntimeError)
105
+ ./features/step_definitions/sample_steps.rb:2:in `flunker'
106
+ ./features/step_definitions/sample_steps.rb:9:in `/^failing$/'
107
+ features/sample.feature:16:in `Given failing'
108
+
109
+ 3 scenarios
110
+ 1 failed step
111
+ 1 undefined step
112
+ 1 passed step
113
+
114
+ """
115
+
116
+ Scenario: Run Norwegian # features/cucumber_cli.feature:116
117
+ Given I am in i18n/no # features/step_definitions/cucumber_steps.rb:1
118
+ When I run cucumber -q --language no features # features/step_definitions/cucumber_steps.rb:5
119
+ Then it should pass with # features/step_definitions/cucumber_steps.rb:15
120
+ """
121
+ Egenskap: Summering
122
+ For å slippe å gjøre dumme feil
123
+ Som en regnskapsfører
124
+ Vil jeg kunne legge sammen
125
+
126
+ Scenario: to tall
127
+ Gitt at jeg har tastet inn 5
128
+ Og at jeg har tastet inn 7
129
+ Når jeg summerer
130
+ Så skal resultatet være 12
131
+
132
+ @iterasjon3
133
+ Scenario: tre tall
134
+ Gitt at jeg har tastet inn 5
135
+ Og at jeg har tastet inn 7
136
+ Og at jeg har tastet inn 1
137
+ Når jeg summerer
138
+ Så skal resultatet være 13
139
+
140
+ 2 scenarios
141
+ 9 passed steps
142
+
143
+ """
144
+
145
+ Scenario: --dry-run # features/cucumber_cli.feature:145
146
+ When I run cucumber --dry-run --no-snippets features # features/step_definitions/cucumber_steps.rb:5
147
+ Then it should pass with # features/step_definitions/cucumber_steps.rb:15
148
+ """
149
+ Feature: Calling undefined step
150
+
151
+ Scenario: Call directly
152
+ Given a step definition that calls an undefined step
153
+
154
+ Scenario: Call via another
155
+ Given call step "a step definition that calls an undefined step"
156
+
157
+ Feature: Lots of undefined
158
+
159
+ Scenario: Implement me
160
+ Given it snows in Sahara
161
+ Given it's 40 degrees in Norway
162
+ And it's 40 degrees in Norway
163
+ When I stop procrastinating
164
+ And there is world peace
165
+
166
+ Feature: Outline Sample
167
+
168
+ Scenario: I have no steps
169
+
170
+ Scenario Outline: Test state
171
+ Given <state> without a table
172
+ Given <other_state> without a table
173
+
174
+ Examples:
175
+ | state | other_state |
176
+ | missing | passing |
177
+ | passing | passing |
178
+ | failing | passing |
179
+
180
+ @one
181
+ Feature: Sample
182
+
183
+ @two @three
184
+ Scenario: Missing
185
+ Given missing
186
+
187
+ @three
188
+ Scenario: Passing
189
+ Given passing
190
+ | a | b |
191
+ | c | d |
192
+
193
+ @four
194
+ Scenario: Failing
195
+ Given failing
196
+
197
+ 10 scenarios
198
+ 9 skipped steps
199
+ 7 undefined steps
200
+
201
+ """
202
+
203
+ Scenario: Multiple formatters and outputs # features/cucumber_cli.feature:203
204
+ When I run cucumber --format progress --out tmp/progress.txt --format html --out tmp/features.html features # features/step_definitions/cucumber_steps.rb:5
205
+ And examples/self_test/tmp/progress.txt should contain # features/step_definitions/cucumber_steps.rb:25
206
+ """
207
+ P.FP.F
208
+
209
+ Pending Scenarios:
210
+
211
+ 1) Outline Sample (Test state)
212
+ 2) Sample (Missing)
213
+
214
+
215
+ Failed:
216
+
217
+ 1)
218
+ FAIL
219
+ ./features/step_definitions/sample_steps.rb:12:in ` /^failing without a table$/'
220
+ features/outline_sample.feature:9:in `/^failing without a table$/'
221
+
222
+ 2)
223
+ FAIL
224
+ ./features/step_definitions/sample_steps.rb:5:in `Given /^failing$/'
225
+ features/sample.feature:12:in `Given failing'
226
+
227
+ """
228
+ No such file or directory - examples/self_test/tmp/progress.txt (Errno::ENOENT)
229
+ ./features/step_definitions/cucumber_steps.rb:26:in `read'
230
+ ./features/step_definitions/cucumber_steps.rb:26:in `/^(.*) should contain$/'
231
+ features/cucumber_cli.feature:205:in `And examples/self_test/tmp/progress.txt should contain'
232
+ And examples/self_test/tmp/features.html should match # features/step_definitions/cucumber_steps.rb:29
233
+ """
234
+ Given passing
235
+ """
236
+
237
+ Scenario: Run scenario specified by name using --scenario # features/cucumber_cli.feature:233
238
+ When I run cucumber --scenario Passing -q features/sample.feature # features/step_definitions/cucumber_steps.rb:5
239
+ Then it should pass with # features/step_definitions/cucumber_steps.rb:15
240
+ """
241
+ Feature: Sample
242
+ Scenario: Passing
243
+ Given passing
244
+
245
+
246
+ 1 scenario
247
+ 1 passed step
248
+
249
+ """
250
+ expected: "Feature: Sample\n Scenario: Passing\n Given passing\n\n\n1 scenario\n1 passed step\n",
251
+ got: "@one\nFeature: Sample\n\n @two @three\n Scenario: Missing\n Given missing\n\n @three\n Scenario: Passing\n Given passing\n | a | b |\n | c | d |\n\n @four\n Scenario: Failing\n Given failing\n FAIL (RuntimeError)\n ./features/step_definitions/sample_steps.rb:2:in `flunker'\n ./features/step_definitions/sample_steps.rb:9:in `/^failing$/'\n features/sample.feature:16:in `Given failing'\n\n3 scenarios\n1 failed step\n1 undefined step\n1 passed step\n" (using ==)
252
+ Diff:
253
+
254
+
255
+
256
+
257
+ @@ -1,8 +1,26 @@
258
+ +@one
259
+ Feature: Sample
260
+ +
261
+ + @two @three
262
+ + Scenario: Missing
263
+ + Given missing
264
+ +
265
+ + @three
266
+ Scenario: Passing
267
+ Given passing
268
+ + | a | b |
269
+ + | c | d |
270
+
271
+ + @four
272
+ + Scenario: Failing
273
+ + Given failing
274
+ + FAIL (RuntimeError)
275
+ + ./features/step_definitions/sample_steps.rb:2:in `flunker'
276
+ + ./features/step_definitions/sample_steps.rb:9:in `/^failing$/'
277
+ + features/sample.feature:16:in `Given failing'
278
+
279
+ -1 scenario
280
+ +3 scenarios
281
+ +1 failed step
282
+ +1 undefined step
283
+ 1 passed step
284
+ (Spec::Expectations::ExpectationNotMetError)
285
+ ./features/step_definitions/cucumber_steps.rb:17:in `/^it should (fail|pass) with$/'
286
+ features/cucumber_cli.feature:235:in `Then it should pass with'
287
+
288
+ Scenario: Run with a tag that exists on 2 scenarios # features/cucumber_cli.feature:247
289
+ When I run cucumber -q features --tags three # features/step_definitions/cucumber_steps.rb:5
290
+ Then it should pass with # features/step_definitions/cucumber_steps.rb:15
291
+ """
292
+ @one
293
+ Feature: Sample
294
+
295
+ @two @three
296
+ Scenario: Missing
297
+ Given missing
298
+
299
+ @three
300
+ Scenario: Passing
301
+ Given passing
302
+ | a | b |
303
+ | c | d |
304
+
305
+ 2 scenarios
306
+ 1 undefined step
307
+ 1 passed step
308
+
309
+ """
310
+
311
+ Scenario: Run with a tag that exists on 1 feature # features/cucumber_cli.feature:270
312
+ When I run cucumber -q features --tags one # features/step_definitions/cucumber_steps.rb:5
313
+ Then it should fail with # features/step_definitions/cucumber_steps.rb:15
314
+ """
315
+ @one
316
+ Feature: Sample
317
+
318
+ @two @three
319
+ Scenario: Missing
320
+ Given missing
321
+
322
+ @three
323
+ Scenario: Passing
324
+ Given passing
325
+ | a | b |
326
+ | c | d |
327
+
328
+ @four
329
+ Scenario: Failing
330
+ Given failing
331
+ FAIL (RuntimeError)
332
+ ./features/step_definitions/sample_steps.rb:2:in `flunker'
333
+ ./features/step_definitions/sample_steps.rb:9:in `/^failing$/'
334
+ features/sample.feature:16:in `Given failing'
335
+
336
+ 3 scenarios
337
+ 1 failed step
338
+ 1 undefined step
339
+ 1 passed step
340
+
341
+ """
342
+
343
+ Scenario: Reformat files with --autoformat # features/cucumber_cli.feature:302
344
+ When I run cucumber --autoformat tmp/formatted features # features/step_definitions/cucumber_steps.rb:5
345
+ Then examples/self_test/tmp/formatted/features/sample.feature should contain # features/step_definitions/cucumber_steps.rb:25
346
+ """
347
+ @one
348
+ Feature: Sample
349
+
350
+ @two @three
351
+ Scenario: Missing
352
+ Given missing
353
+
354
+ @three
355
+ Scenario: Passing
356
+ Given passing
357
+ | a | b |
358
+ | c | d |
359
+
360
+ @four
361
+ Scenario: Failing
362
+ Given failing
363
+
364
+
365
+ """
366
+ No such file or directory - examples/self_test/tmp/formatted/features/sample.feature (Errno::ENOENT)
367
+ ./features/step_definitions/cucumber_steps.rb:26:in `read'
368
+ ./features/step_definitions/cucumber_steps.rb:26:in `/^(.*) should contain$/'
369
+ features/cucumber_cli.feature:304:in `Then examples/self_test/tmp/formatted/features/sample.feature should contain'
370
+
371
+ Feature: Cucumber command line
372
+ In order to write better software
373
+ Developers should be able to execute requirements as tests
374
+
375
+ Scenario: Run scenario outline steps only # features/cucumber_cli_outlines.feature:5
376
+ When I run cucumber -q features/outline_sample.feature:7 # features/step_definitions/cucumber_steps.rb:5
377
+ Then it should fail with # features/step_definitions/cucumber_steps.rb:15
378
+ """
379
+ Feature: Outline Sample
380
+
381
+ Scenario Outline: Test state
382
+ Given <state> without a table
383
+ Given <other_state> without a table
384
+
385
+ Examples:
386
+ | state | other_state |
387
+ | missing | passing |
388
+ | passing | passing |
389
+ | failing | passing |
390
+ FAIL (RuntimeError)
391
+ ./features/step_definitions/sample_steps.rb:2:in `flunker'
392
+ ./features/step_definitions/sample_steps.rb:16:in `/^failing without a table$/'
393
+ features/outline_sample.feature:12:in `Given failing without a table'
394
+
395
+ 3 scenarios
396
+ 1 failed step
397
+ 2 skipped steps
398
+ 1 undefined step
399
+ 2 passed steps
400
+
401
+ """
402
+
403
+ Scenario: Run single failing scenario outline table row # features/cucumber_cli_outlines.feature:33
404
+ When I run cucumber features/outline_sample.feature:12 # features/step_definitions/cucumber_steps.rb:5
405
+ Then it should fail with # features/step_definitions/cucumber_steps.rb:15
406
+ """
407
+ Feature: Outline Sample
408
+
409
+ Scenario Outline: Test state # features/outline_sample.feature:5
410
+ Given <state> without a table
411
+ Given <other_state> without a table
412
+
413
+ Examples:
414
+ | state | other_state |
415
+ | failing | passing |
416
+ FAIL (RuntimeError)
417
+ ./features/step_definitions/sample_steps.rb:2:in `flunker'
418
+ ./features/step_definitions/sample_steps.rb:16:in `/^failing without a table$/'
419
+ features/outline_sample.feature:12:in `Given failing without a table'
420
+
421
+ 1 scenario
422
+ 1 failed step
423
+ 1 skipped step
424
+
425
+ """
426
+
427
+ Scenario: Run all with progress formatter # features/cucumber_cli_outlines.feature:57
428
+ When I run cucumber -q --format progress features/outline_sample.feature # features/step_definitions/cucumber_steps.rb:5
429
+ Then it should fail with # features/step_definitions/cucumber_steps.rb:15
430
+ """
431
+ UUS..FS
432
+
433
+ (::) undefined scenarios (::)
434
+
435
+ features/outline_sample.feature:3:in `Scenario: I have no steps'
436
+
437
+ (::) failed steps (::)
438
+
439
+ FAIL (RuntimeError)
440
+ ./features/step_definitions/sample_steps.rb:2:in `flunker'
441
+ ./features/step_definitions/sample_steps.rb:16:in `/^failing without a table$/'
442
+ features/outline_sample.feature:12:in `Given failing without a table'
443
+
444
+ 4 scenarios
445
+ 1 failed step
446
+ 2 skipped steps
447
+ 1 undefined step
448
+ 2 passed steps
449
+
450
+ """
451
+
452
+ Feature: Cucumber command line
453
+ In order to find out what step definitions need to be implemented
454
+ Developers should always see what step definition is missing
455
+
456
+ Scenario: Get info at arbitrary levels of nesting # features/report_called_undefined_steps.feature:5
457
+ When I run cucumber features/call_undefined_step_from_step_def.feature # features/step_definitions/cucumber_steps.rb:5
458
+ Then it should pass with # features/step_definitions/cucumber_steps.rb:15
459
+ """
460
+ Feature: Calling undefined step
461
+
462
+ Scenario: Call directly # features/call_undefined_step_from_step_def.feature:3
463
+ Given a step definition that calls an undefined step # features/step_definitions/sample_steps.rb:19
464
+ Undefined step: "this does not exist" (Cucumber::StepMother::Undefined)
465
+ ./features/step_definitions/sample_steps.rb:20:in `/^a step definition that calls an undefined step$/'
466
+
467
+ Scenario: Call via another # features/call_undefined_step_from_step_def.feature:6
468
+ Given call step "a step definition that calls an undefined step" # features/step_definitions/sample_steps.rb:23
469
+ Undefined step: "this does not exist" (Cucumber::StepMother::Undefined)
470
+ ./features/step_definitions/sample_steps.rb:20:in `/^a step definition that calls an undefined step$/'
471
+
472
+ 2 scenarios
473
+ 2 undefined steps
474
+
475
+ You can implement step definitions for missing steps with these snippets:
476
+
477
+ Given /^this does not exist$/ do
478
+ end
479
+
480
+
481
+ """
482
+
483
+ 17 scenarios
484
+ 3 failed steps
485
+ 1 skipped step
486
+ 32 passed steps
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aslakhellesoy-cucumber
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.16.5
4
+ version: 0.1.99.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - "Aslak Helles\xC3\xB8y"
@@ -61,6 +61,7 @@ extra_rdoc_files:
61
61
  - Manifest.txt
62
62
  - README.txt
63
63
  - examples/i18n/ja/README.txt
64
+ - pretty.txt
64
65
  files:
65
66
  - History.txt
66
67
  - License.txt
@@ -244,6 +245,7 @@ files:
244
245
  - lib/cucumber/formatter/pretty.rb
245
246
  - lib/cucumber/formatter/profile.rb
246
247
  - lib/cucumber/formatter/progress.rb
248
+ - lib/cucumber/formatter/rerun.rb
247
249
  - lib/cucumber/formatters/autotest_formatter.rb
248
250
  - lib/cucumber/formatters/cucumber.css
249
251
  - lib/cucumber/formatters/cucumber.js
@@ -268,6 +270,7 @@ files:
268
270
  - lib/cucumber/step_mother.rb
269
271
  - lib/cucumber/treetop_parser/feature_fi.rb
270
272
  - lib/cucumber/version.rb
273
+ - pretty.txt
271
274
  - rails_generators/cucumber/USAGE
272
275
  - rails_generators/cucumber/cucumber_generator.rb
273
276
  - rails_generators/cucumber/templates/cucumber
@@ -296,7 +299,6 @@ files:
296
299
  - spec/cucumber/formatter/html/index.html
297
300
  - spec/cucumber/formatter/html/jquery-1.3.min.js
298
301
  - spec/cucumber/formatter/html/jquery.uitableedit.js
299
- - spec/cucumber/formatter/pretty_spec.rb
300
302
  - spec/cucumber/formatters/autotest_formatter_spec.rb
301
303
  - spec/cucumber/formatters/features.html
302
304
  - spec/cucumber/formatters/profile_formatter_spec.rb