cucumber 0.1.16 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +111 -5
- data/License.txt +1 -1
- data/Manifest.txt +141 -83
- data/Rakefile +1 -1
- data/bin/cucumber +2 -2
- data/config/hoe.rb +8 -2
- data/examples/cs/features/addition.feature +4 -5
- data/examples/cs/features/step_definitons/calculator_steps.rb +1 -5
- data/examples/i18n/README.textile +1 -1
- data/examples/i18n/Rakefile +5 -5
- data/examples/i18n/ar/features/addition.feature +10 -11
- data/examples/i18n/ar/features/step_definitons/calculator_steps.rb +1 -10
- data/examples/i18n/da/features/step_definitons/kalkulator_steps.rb +1 -1
- data/examples/i18n/de/features/addition.feature +10 -11
- data/examples/i18n/de/features/division.feature +0 -1
- data/examples/i18n/de/features/step_definitons/calculator_steps.rb +2 -10
- data/examples/i18n/en-lol/Rakefile +6 -0
- data/examples/i18n/en-lol/features/step_definitions/cucumbrz_steps.rb +16 -0
- data/examples/i18n/en-lol/features/stuffing.feature +8 -0
- data/examples/i18n/en-lol/features/support/env.rb +8 -0
- data/examples/i18n/en-lol/lib/basket.rb +12 -0
- data/examples/i18n/en-lol/lib/belly.rb +11 -0
- data/examples/i18n/en/features/addition.feature +10 -11
- data/examples/i18n/en/features/division.feature +0 -1
- data/examples/i18n/en/features/step_definitons/calculator_steps.rb +2 -6
- data/examples/i18n/es/features/adicion.feature +11 -12
- data/examples/i18n/es/features/step_definitons/calculador_steps.rb +7 -10
- data/examples/i18n/es/lib/calculador.rb +4 -1
- data/examples/i18n/et/features/jagamine.feature +9 -0
- data/examples/i18n/et/features/liitmine.feature +10 -11
- data/examples/i18n/et/features/step_definitions/kalkulaator_steps.rb +4 -8
- data/examples/i18n/et/lib/kalkulaator.rb +5 -1
- data/examples/i18n/fi/Rakefile +6 -0
- data/examples/i18n/fi/features/jakolasku.feature +9 -0
- data/examples/i18n/fi/features/step_definitons/laskin_steps.rb +24 -0
- data/examples/i18n/fi/features/yhteenlasku.feature +16 -0
- data/examples/i18n/fi/lib/laskin.rb +14 -0
- data/examples/i18n/fr/features/addition.feature +14 -12
- data/examples/i18n/fr/features/step_definitions/calculatrice_steps.rb +11 -13
- data/examples/i18n/fr/lib/calculatrice.rb +1 -1
- data/examples/i18n/id/features/addition.feature +10 -11
- data/examples/i18n/id/features/division.feature +0 -1
- data/examples/i18n/id/features/step_definitons/calculator_steps.rb +2 -11
- data/examples/i18n/it/features/step_definitons/calcolatrice_steps.rb +1 -1
- data/examples/i18n/ja/features/addition.feature +10 -11
- data/examples/i18n/ja/features/division.feature +2 -3
- data/examples/i18n/ja/features/step_definitons/calculator_steps.rb +4 -13
- data/examples/i18n/ko/features/addition.feature +7 -8
- data/examples/i18n/ko/features/division.feature +3 -4
- data/examples/i18n/ko/features/step_definitons/calculator_steps.rb +1 -5
- data/examples/i18n/lt/features/addition.feature +11 -11
- data/examples/i18n/lt/features/division.feature +0 -1
- data/examples/i18n/lt/features/step_definitons/calculator_steps.rb +2 -11
- data/examples/i18n/no/features/step_definitons/kalkulator_steps.rb +3 -10
- data/examples/i18n/no/features/summering.feature +1 -0
- data/examples/i18n/no/features/support/env.rb +6 -0
- data/examples/i18n/pt/features/step_definitions/calculadora_steps.rb +1 -1
- data/examples/i18n/ro/features/step_definitons/calculator_steps.rb +1 -1
- data/examples/i18n/ru/Rakefile +6 -0
- data/examples/i18n/ru/features/addition.feature +10 -0
- data/examples/i18n/ru/features/consecutive_calculations.feature +16 -0
- data/examples/i18n/ru/features/division.feature +15 -0
- data/examples/i18n/ru/features/step_definitons/calculator_steps.rb +19 -0
- data/examples/i18n/ru/features/support/env.rb +6 -0
- data/examples/i18n/ru/features/support/world.rb +7 -0
- data/examples/i18n/ru/lib/calculator.rb +24 -0
- data/examples/i18n/se/features/step_definitons/kalkulator_steps.rb +1 -1
- data/examples/i18n/zh-CN/features/step_definitons/calculator_steps.rb +2 -2
- data/examples/i18n/zh-TW/Rakefile +6 -0
- data/examples/i18n/zh-TW/features/addition.feature +16 -0
- data/examples/i18n/zh-TW/features/division.feature +10 -0
- data/examples/i18n/zh-TW/features/step_definitons/calculator_steps.rb +24 -0
- data/examples/i18n/zh-TW/lib/calculator.rb +14 -0
- data/examples/java/src/cucumber/demo/Hello.java +16 -0
- data/examples/jbehave/README.textile +20 -0
- data/examples/jbehave/features/support/env.rb +7 -0
- data/examples/jbehave/features/trading.feature +28 -0
- data/examples/jbehave/pom.xml +53 -0
- data/examples/jbehave/src/main/java/cukes/jbehave/examples/trader/converters/TraderConverter.java +32 -0
- data/examples/jbehave/src/main/java/cukes/jbehave/examples/trader/model/Stock.java +42 -0
- data/examples/jbehave/src/main/java/cukes/jbehave/examples/trader/model/Trader.java +29 -0
- data/examples/jbehave/src/main/java/cukes/jbehave/examples/trader/persistence/TraderPersister.java +22 -0
- data/examples/jbehave/src/main/java/cukes/jbehave/examples/trader/scenarios/TraderSteps.java +70 -0
- data/examples/selenium/features/step_definitons/search_steps.rb +13 -0
- data/examples/selenium/features/support/env.rb +19 -0
- data/examples/{calculator_ruby_features → selenium_webrat}/Rakefile +0 -0
- data/examples/selenium_webrat/features/search.feature +9 -0
- data/examples/selenium_webrat/features/step_definitons/search_steps.rb +13 -0
- data/examples/selenium_webrat/features/support/env.rb +41 -0
- data/examples/self_test/README.textile +4 -1
- data/examples/self_test/Rakefile +6 -0
- data/examples/self_test/features/background/failing_background.feature +11 -0
- data/examples/self_test/features/background/failing_background_after_success.feature +11 -0
- data/examples/self_test/features/background/multiline_args_background.feature +32 -0
- data/examples/self_test/features/background/passing_background.feature +10 -0
- data/examples/self_test/features/background/pending_background.feature +10 -0
- data/examples/self_test/features/background/scenario_outline_failing_background.feature +16 -0
- data/examples/self_test/features/background/scenario_outline_passing_background.feature +16 -0
- data/examples/self_test/features/call_undefined_step_from_step_def.feature +7 -0
- data/examples/self_test/features/failing_expectation.feature +4 -0
- data/examples/self_test/features/lots_of_undefined.feature +8 -0
- data/examples/self_test/features/outline_sample.feature +11 -5
- data/examples/self_test/features/sample.feature +8 -3
- data/examples/self_test/features/step_definitions/sample_steps.rb +55 -4
- data/examples/self_test/features/support/env.rb +1 -0
- data/examples/self_test/features/support/tag_count_formatter.rb +25 -0
- data/examples/sinatra/Rakefile +6 -0
- data/examples/sinatra/app.rb +14 -0
- data/examples/sinatra/features/add.feature +11 -0
- data/examples/sinatra/features/step_definitions/add_steps.rb +15 -0
- data/examples/sinatra/features/support/env.rb +20 -0
- data/examples/sinatra/views/add.erb +5 -0
- data/examples/sinatra/views/layout.erb +8 -0
- data/examples/tickets/Rakefile +13 -8
- data/examples/tickets/cucumber.yml +2 -1
- data/examples/tickets/features/172.feature +28 -0
- data/examples/tickets/features/177/1.feature +29 -0
- data/examples/tickets/features/177/2.feature +21 -0
- data/examples/tickets/features/177/3.feature +18 -0
- data/examples/tickets/features/180.feature +7 -0
- data/examples/tickets/features/236.feature +13 -0
- data/examples/tickets/features/241.feature +13 -0
- data/examples/tickets/features/scenario_outline.feature +6 -1
- data/examples/tickets/features/step_definitons/tickets_steps.rb +41 -4
- data/examples/tickets/features/tickets.feature +5 -1
- data/features/background.feature +221 -0
- data/features/cucumber_cli.feature +263 -97
- data/features/cucumber_cli_diff_disabled.feature +45 -0
- data/features/cucumber_cli_outlines.feature +50 -42
- data/features/custom_formatter.feature +11 -0
- data/features/report_called_undefined_steps.feature +34 -0
- data/features/step_definitions/cucumber_steps.rb +6 -3
- data/features/step_definitions/extra_steps.rb +1 -1
- data/features/support/env.rb +3 -2
- data/gem_tasks/features.rake +1 -1
- data/gem_tasks/flog.rake +1 -1
- data/gem_tasks/gemspec.rake +2 -2
- data/gem_tasks/jar.rake +67 -0
- data/gem_tasks/rspec.rake +2 -0
- data/lib/autotest/cucumber_mixin.rb +18 -23
- data/lib/cucumber.rb +55 -11
- data/lib/cucumber/ast.rb +29 -0
- data/lib/cucumber/ast/background.rb +50 -0
- data/lib/cucumber/ast/comment.rb +26 -0
- data/lib/cucumber/ast/examples.rb +38 -0
- data/lib/cucumber/ast/feature.rb +62 -0
- data/lib/cucumber/ast/feature_element.rb +46 -0
- data/lib/cucumber/ast/features.rb +20 -0
- data/lib/cucumber/ast/outline_table.rb +81 -0
- data/lib/cucumber/ast/py_string.rb +58 -0
- data/lib/cucumber/ast/scenario.rb +64 -0
- data/lib/cucumber/ast/scenario_outline.rb +90 -0
- data/lib/cucumber/ast/step.rb +122 -0
- data/lib/cucumber/ast/step_collection.rb +66 -0
- data/lib/cucumber/ast/step_invocation.rb +110 -0
- data/lib/cucumber/ast/table.rb +318 -0
- data/lib/cucumber/ast/tags.rb +33 -0
- data/lib/cucumber/ast/visitor.rb +125 -0
- data/lib/cucumber/broadcaster.rb +2 -9
- data/lib/cucumber/cli/configuration.rb +364 -0
- data/lib/cucumber/cli/language_help_formatter.rb +59 -0
- data/lib/cucumber/cli/main.rb +109 -0
- data/lib/cucumber/core_ext/exception.rb +41 -8
- data/lib/cucumber/core_ext/instance_exec.rb +54 -0
- data/lib/cucumber/core_ext/proc.rb +29 -65
- data/lib/cucumber/core_ext/string.rb +19 -0
- data/lib/cucumber/formatter.rb +1 -0
- data/lib/cucumber/{formatters → formatter}/ansicolor.rb +13 -16
- data/lib/cucumber/formatter/color_io.rb +23 -0
- data/lib/cucumber/formatter/console.rb +109 -0
- data/lib/cucumber/formatter/cucumber.css +55 -0
- data/lib/cucumber/formatter/cucumber.sass +49 -0
- data/lib/cucumber/formatter/html.rb +133 -0
- data/lib/cucumber/formatter/pretty.rb +179 -0
- data/lib/cucumber/formatter/profile.rb +77 -0
- data/lib/cucumber/formatter/progress.rb +60 -0
- data/lib/cucumber/formatter/rerun.rb +35 -0
- data/lib/cucumber/formatter/unicode.rb +35 -0
- data/lib/cucumber/formatters/unicode.rb +2 -35
- data/lib/cucumber/jbehave.rb +97 -0
- data/lib/cucumber/languages.yml +196 -80
- data/lib/cucumber/parser.rb +43 -0
- data/lib/cucumber/parser/basic.rb +0 -0
- data/lib/cucumber/parser/feature.rb +1487 -0
- data/lib/cucumber/parser/feature.tt +193 -0
- data/lib/cucumber/parser/i18n.tt +31 -0
- data/lib/cucumber/parser/table.rb +402 -0
- data/lib/cucumber/parser/table.tt +59 -0
- data/lib/cucumber/parser/treetop_ext.rb +75 -0
- data/lib/cucumber/platform.rb +2 -17
- data/lib/cucumber/rails/rspec.rb +5 -9
- data/lib/cucumber/rails/world.rb +2 -2
- data/lib/cucumber/rake/task.rb +39 -7
- data/lib/cucumber/step_definition.rb +103 -0
- data/lib/cucumber/step_match.rb +49 -0
- data/lib/cucumber/step_mother.rb +183 -67
- data/lib/cucumber/version.rb +2 -2
- data/lib/cucumber/world.rb +53 -1
- data/rails_generators/cucumber/cucumber_generator.rb +22 -3
- data/rails_generators/cucumber/templates/cucumber +2 -1
- data/rails_generators/cucumber/templates/cucumber.rake +13 -5
- data/rails_generators/cucumber/templates/env.rb +4 -3
- data/rails_generators/cucumber/templates/paths.rb +18 -11
- data/rails_generators/cucumber/templates/webrat_steps.rb +41 -25
- data/rails_generators/feature/feature_generator.rb +4 -0
- data/rails_generators/feature/templates/steps.erb +0 -4
- data/spec/cucumber/ast/background_spec.rb +49 -0
- data/spec/cucumber/ast/feature_factory.rb +63 -0
- data/spec/cucumber/ast/feature_spec.rb +37 -0
- data/spec/cucumber/ast/py_string_spec.rb +47 -0
- data/spec/cucumber/ast/scenario_outline_spec.rb +67 -0
- data/spec/cucumber/ast/scenario_spec.rb +65 -0
- data/spec/cucumber/ast/step_collection_spec.rb +8 -0
- data/spec/cucumber/ast/step_spec.rb +66 -0
- data/spec/cucumber/ast/table_spec.rb +149 -0
- data/spec/cucumber/ast/tags_spec.rb +19 -0
- data/spec/cucumber/broadcaster_spec.rb +6 -18
- data/spec/cucumber/cli/configuration_spec.rb +275 -0
- data/spec/cucumber/cli/main_spec.rb +203 -0
- data/spec/cucumber/core_ext/proc_spec.rb +27 -35
- data/spec/cucumber/core_ext/string_spec.rb +8 -0
- data/spec/cucumber/{formatters → formatter}/ansicolor_spec.rb +2 -2
- data/spec/cucumber/formatter/color_io_spec.rb +26 -0
- data/spec/cucumber/formatter/html/cucumber.css +37 -0
- data/spec/cucumber/formatter/html/cucumber.js +13 -0
- data/spec/cucumber/formatter/html/index.html +45 -0
- data/spec/cucumber/formatter/html/jquery-1.3.min.js +19 -0
- data/spec/cucumber/formatter/html/jquery.uitableedit.js +100 -0
- data/spec/cucumber/formatters/profile_formatter_spec.rb +17 -16
- data/spec/cucumber/parser/feature_parser_spec.rb +282 -0
- data/spec/cucumber/parser/table_parser_spec.rb +48 -0
- data/spec/cucumber/step_definition_spec.rb +81 -0
- data/spec/cucumber/step_mother_spec.rb +50 -51
- data/spec/cucumber/treetop_parser/empty_feature.feature +1 -1
- data/spec/cucumber/treetop_parser/multiple_tables.feature +6 -8
- data/spec/cucumber/treetop_parser/scenario_outline.feature +1 -1
- data/spec/cucumber/treetop_parser/spaces.feature +3 -1
- data/spec/cucumber/treetop_parser/with_comments.feature +1 -1
- data/spec/cucumber/treetop_parser/with_tags.feature +18 -0
- data/spec/cucumber/world/pending_spec.rb +13 -12
- data/spec/spec_helper.rb +1 -1
- metadata +165 -88
- data/examples/calculator_ruby_features/features/addition.rb +0 -39
- data/examples/calculator_ruby_features/features/step_definitons/calculator_steps.rb +0 -43
- data/examples/i18n/ja/README.txt +0 -5
- data/examples/selenium/features/step_definitons/stories_steps.rb +0 -40
- data/gem_tasks/treetop.rake +0 -41
- data/lib/cucumber/cli.rb +0 -356
- data/lib/cucumber/executor.rb +0 -205
- data/lib/cucumber/formatters.rb +0 -1
- data/lib/cucumber/formatters/autotest_formatter.rb +0 -23
- data/lib/cucumber/formatters/cucumber.css +0 -132
- data/lib/cucumber/formatters/cucumber.js +0 -11
- data/lib/cucumber/formatters/html_formatter.rb +0 -151
- data/lib/cucumber/formatters/jquery.js +0 -32
- data/lib/cucumber/formatters/pretty_formatter.rb +0 -285
- data/lib/cucumber/formatters/profile_formatter.rb +0 -92
- data/lib/cucumber/formatters/progress_formatter.rb +0 -61
- data/lib/cucumber/model.rb +0 -1
- data/lib/cucumber/model/table.rb +0 -32
- data/lib/cucumber/step_methods.rb +0 -49
- data/lib/cucumber/tree.rb +0 -16
- data/lib/cucumber/tree/feature.rb +0 -105
- data/lib/cucumber/tree/features.rb +0 -21
- data/lib/cucumber/tree/given_scenario.rb +0 -13
- data/lib/cucumber/tree/scenario.rb +0 -240
- data/lib/cucumber/tree/step.rb +0 -173
- data/lib/cucumber/tree/table.rb +0 -26
- data/lib/cucumber/tree/top_down_visitor.rb +0 -23
- data/lib/cucumber/treetop_parser/feature.treetop.erb +0 -254
- data/lib/cucumber/treetop_parser/feature_ar.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_cy.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_da.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_de.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_en-lol.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_en-tx.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_en.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_es.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_et.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_fr.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_id.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_it.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_ja.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_ko.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_lt.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_nl.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_no.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_parser.rb +0 -36
- data/lib/cucumber/treetop_parser/feature_pl.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_pt.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_ro.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_ro2.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_ru.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_se.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_zh-CN.rb +0 -1951
- data/lib/cucumber/world/pending.rb +0 -22
- data/script/console +0 -10
- data/script/console.cmd +0 -1
- data/script/destroy +0 -14
- data/script/destroy.cmd +0 -1
- data/script/generate +0 -14
- data/script/generate.cmd +0 -1
- data/script/txt2html +0 -74
- data/script/txt2html.cmd +0 -1
- data/setup.rb +0 -1585
- data/spec/cucumber/cli_spec.rb +0 -521
- data/spec/cucumber/executor_spec.rb +0 -382
- data/spec/cucumber/formatters/autotest_formatter_spec.rb +0 -26
- data/spec/cucumber/formatters/features.html +0 -269
- data/spec/cucumber/formatters/html_formatter_spec.rb +0 -104
- data/spec/cucumber/formatters/pretty_formatter_spec.rb +0 -410
- data/spec/cucumber/formatters/progress_formatter_spec.rb +0 -81
- data/spec/cucumber/model/table_spec.rb +0 -32
- data/spec/cucumber/tree/feature_spec.rb +0 -122
- data/spec/cucumber/tree/row_scenario_outline_spec.rb +0 -73
- data/spec/cucumber/tree/row_scenario_spec.rb +0 -55
- data/spec/cucumber/tree/row_step_outline_spec.rb +0 -38
- data/spec/cucumber/tree/scenario_outline_spec.rb +0 -50
- data/spec/cucumber/tree/scenario_spec.rb +0 -134
- data/spec/cucumber/tree/step_outline_spec.rb +0 -17
- data/spec/cucumber/tree/step_spec.rb +0 -59
- data/spec/cucumber/treetop_parser/feature_parser_spec.rb +0 -120
@@ -0,0 +1,45 @@
|
|
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 failing scenario with default diff enabled
|
6
|
+
When I run cucumber -q features/failing_expectation.feature
|
7
|
+
Then it should fail with
|
8
|
+
"""
|
9
|
+
Feature: Failing expectation
|
10
|
+
|
11
|
+
Scenario: Failing expectation
|
12
|
+
Given failing expectation
|
13
|
+
expected: "that",
|
14
|
+
got: "this" (using ==)
|
15
|
+
Diff:
|
16
|
+
@@ -1,2 +1,2 @@
|
17
|
+
-that
|
18
|
+
+this
|
19
|
+
(Spec::Expectations::ExpectationNotMetError)
|
20
|
+
./features/step_definitions/sample_steps.rb:63:in `/^failing expectation$/'
|
21
|
+
features/failing_expectation.feature:4:in `Given failing expectation'
|
22
|
+
|
23
|
+
1 scenario
|
24
|
+
1 failed step
|
25
|
+
|
26
|
+
"""
|
27
|
+
|
28
|
+
Scenario: Run single failing scenario with diff output disabled
|
29
|
+
When I run cucumber -q --no-diff features/failing_expectation.feature
|
30
|
+
Then it should fail with
|
31
|
+
"""
|
32
|
+
Feature: Failing expectation
|
33
|
+
|
34
|
+
Scenario: Failing expectation
|
35
|
+
Given failing expectation
|
36
|
+
expected: "that",
|
37
|
+
got: "this" (using ==) (Spec::Expectations::ExpectationNotMetError)
|
38
|
+
./features/step_definitions/sample_steps.rb:63:in `/^failing expectation$/'
|
39
|
+
features/failing_expectation.feature:4:in `Given failing expectation'
|
40
|
+
|
41
|
+
1 scenario
|
42
|
+
1 failed step
|
43
|
+
|
44
|
+
"""
|
45
|
+
|
@@ -1,54 +1,60 @@
|
|
1
1
|
Feature: Cucumber command line
|
2
2
|
In order to write better software
|
3
3
|
Developers should be able to execute requirements as tests
|
4
|
-
|
5
|
-
Scenario: Run scenario outline steps only
|
6
|
-
When I run cucumber -q features/outline_sample.feature:3
|
7
|
-
Then it should pass with
|
8
|
-
"""
|
9
|
-
Feature: Outline Sample
|
10
|
-
Scenario Outline: Test state
|
11
|
-
Given <state> without a table
|
12
4
|
|
13
|
-
|
14
|
-
|
15
|
-
1 scenario
|
16
|
-
|
17
|
-
"""
|
18
|
-
|
19
|
-
Scenario: Run single scenario outline table row with missing step definition
|
5
|
+
Scenario: Run scenario outline steps only
|
20
6
|
When I run cucumber -q features/outline_sample.feature:7
|
21
|
-
Then it should
|
7
|
+
Then it should fail with
|
22
8
|
"""
|
23
9
|
Feature: Outline Sample
|
10
|
+
|
24
11
|
Scenario Outline: Test state
|
25
12
|
Given <state> without a table
|
13
|
+
Given <other_state> without a table
|
14
|
+
|
15
|
+
Examples: Rainbow colours
|
16
|
+
| state | other_state |
|
17
|
+
| missing | passing |
|
18
|
+
| passing | passing |
|
19
|
+
| failing | passing |
|
20
|
+
FAIL (RuntimeError)
|
21
|
+
./features/step_definitions/sample_steps.rb:2:in `flunker'
|
22
|
+
./features/step_definitions/sample_steps.rb:16:in `/^failing without a table$/'
|
23
|
+
features/outline_sample.feature:6:in `Given <state> without a table'
|
24
|
+
|
25
|
+
Examples: Only passing
|
26
|
+
| state | other_state |
|
27
|
+
| passing | passing |
|
28
|
+
|
29
|
+
4 scenarios
|
30
|
+
1 failed step
|
31
|
+
2 skipped steps
|
32
|
+
1 undefined step
|
33
|
+
4 passed steps
|
26
34
|
|
27
|
-
|state |
|
28
|
-
|missing|
|
29
|
-
|
30
|
-
2 scenarios
|
31
|
-
1 step pending (1 with no step definition)
|
32
|
-
|
33
35
|
"""
|
34
36
|
|
35
37
|
Scenario: Run single failing scenario outline table row
|
36
|
-
When I run cucumber
|
38
|
+
When I run cucumber features/outline_sample.feature:12
|
37
39
|
Then it should fail with
|
38
40
|
"""
|
39
41
|
Feature: Outline Sample
|
40
|
-
Scenario Outline: Test state
|
41
|
-
Given <state> without a table
|
42
42
|
|
43
|
-
|
44
|
-
|
43
|
+
Scenario Outline: Test state # features/outline_sample.feature:5
|
44
|
+
Given <state> without a table # features/step_definitions/sample_steps.rb:12
|
45
|
+
Given <other_state> without a table # features/step_definitions/sample_steps.rb:12
|
45
46
|
|
46
|
-
|
47
|
-
|
48
|
-
|
47
|
+
Examples: Rainbow colours
|
48
|
+
| state | other_state |
|
49
|
+
| failing | passing |
|
50
|
+
FAIL (RuntimeError)
|
51
|
+
./features/step_definitions/sample_steps.rb:2:in `flunker'
|
52
|
+
./features/step_definitions/sample_steps.rb:16:in `/^failing without a table$/'
|
53
|
+
features/outline_sample.feature:6:in `Given <state> without a table'
|
49
54
|
|
50
|
-
|
51
|
-
1 step
|
55
|
+
1 scenario
|
56
|
+
1 failed step
|
57
|
+
1 skipped step
|
52
58
|
|
53
59
|
"""
|
54
60
|
|
@@ -56,18 +62,20 @@ Feature: Cucumber command line
|
|
56
62
|
When I run cucumber -q --format progress features/outline_sample.feature
|
57
63
|
Then it should fail with
|
58
64
|
"""
|
59
|
-
|
60
|
-
|
61
|
-
Pending Scenarios:
|
65
|
+
----U-..F---..
|
62
66
|
|
63
|
-
|
67
|
+
(::) failed steps (::)
|
64
68
|
|
69
|
+
FAIL (RuntimeError)
|
70
|
+
./features/step_definitions/sample_steps.rb:2:in `flunker'
|
71
|
+
./features/step_definitions/sample_steps.rb:16:in `/^failing without a table$/'
|
72
|
+
features/outline_sample.feature:6:in `Given <state> without a table'
|
65
73
|
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
features/outline_sample.feature:9:in `/^failing without a table$/'
|
74
|
+
5 scenarios
|
75
|
+
1 failed step
|
76
|
+
2 skipped steps
|
77
|
+
1 undefined step
|
78
|
+
4 passed steps
|
72
79
|
|
73
80
|
"""
|
81
|
+
|
@@ -0,0 +1,34 @@
|
|
1
|
+
Feature: Cucumber command line
|
2
|
+
In order to find out what step definitions need to be implemented
|
3
|
+
Developers should always see what step definition is missing
|
4
|
+
|
5
|
+
Scenario: Get info at arbitrary levels of nesting
|
6
|
+
When I run cucumber features/call_undefined_step_from_step_def.feature
|
7
|
+
Then it should pass with
|
8
|
+
"""
|
9
|
+
Feature: Calling undefined step
|
10
|
+
|
11
|
+
Scenario: Call directly # features/call_undefined_step_from_step_def.feature:3
|
12
|
+
Given a step definition that calls an undefined step # features/step_definitions/sample_steps.rb:19
|
13
|
+
Undefined step: "this does not exist" (Cucumber::Undefined)
|
14
|
+
./features/step_definitions/sample_steps.rb:20:in `/^a step definition that calls an undefined step$/'
|
15
|
+
features/call_undefined_step_from_step_def.feature:4:in `Given a step definition that calls an undefined step'
|
16
|
+
|
17
|
+
Scenario: Call via another # features/call_undefined_step_from_step_def.feature:6
|
18
|
+
Given call step "a step definition that calls an undefined step" # features/step_definitions/sample_steps.rb:23
|
19
|
+
Undefined step: "this does not exist" (Cucumber::Undefined)
|
20
|
+
./features/step_definitions/sample_steps.rb:20:in `/^a step definition that calls an undefined step$/'
|
21
|
+
features/call_undefined_step_from_step_def.feature:7:in `Given call step "a step definition that calls an undefined step"'
|
22
|
+
|
23
|
+
2 scenarios
|
24
|
+
2 undefined steps
|
25
|
+
|
26
|
+
You can implement step definitions for missing steps with these snippets:
|
27
|
+
|
28
|
+
Given /^this does not exist$/ do
|
29
|
+
pending
|
30
|
+
end
|
31
|
+
|
32
|
+
|
33
|
+
"""
|
34
|
+
|
@@ -6,7 +6,7 @@ When /^I run cucumber (.*)$/ do |cmd|
|
|
6
6
|
@dir ||= 'self_test'
|
7
7
|
full_dir ||= File.expand_path(File.dirname(__FILE__) + "/../../examples/#{@dir}")
|
8
8
|
Dir.chdir(full_dir) do
|
9
|
-
@full_cmd = "#{Cucumber::RUBY_BINARY} #{Cucumber::BINARY} #{cmd}"
|
9
|
+
@full_cmd = "#{Cucumber::RUBY_BINARY} #{Cucumber::BINARY} --no-color #{cmd}"
|
10
10
|
@out = `#{@full_cmd}`
|
11
11
|
@status = $?.exitstatus
|
12
12
|
end
|
@@ -14,8 +14,11 @@ end
|
|
14
14
|
|
15
15
|
Then /^it should (fail|pass) with$/ do |success, output|
|
16
16
|
@out.should == output
|
17
|
-
|
18
|
-
|
17
|
+
if success == 'fail'
|
18
|
+
@status.should_not == 0
|
19
|
+
else
|
20
|
+
@status.should == 0
|
21
|
+
end
|
19
22
|
end
|
20
23
|
|
21
24
|
Then /^(.*) should contain$/ do |file, text|
|
@@ -1,2 +1,2 @@
|
|
1
1
|
Given /^missing$/ do
|
2
|
-
end
|
2
|
+
end
|
data/features/support/env.rb
CHANGED
data/gem_tasks/features.rake
CHANGED
data/gem_tasks/flog.rake
CHANGED
data/gem_tasks/gemspec.rake
CHANGED
@@ -4,7 +4,7 @@ namespace :gemspec do
|
|
4
4
|
File.open('cucumber.gemspec', 'w') {|io| io.write($hoe.spec.to_ruby)}
|
5
5
|
puts "1) git commit -a -m \"Release #{Cucumber::VERSION::STRING}\""
|
6
6
|
puts "2) git tag -a \"v#{Cucumber::VERSION::STRING}\" -m \"Release #{Cucumber::VERSION::STRING}\""
|
7
|
-
puts "3) git push
|
8
|
-
puts "4)
|
7
|
+
puts "3) git push"
|
8
|
+
puts "4) git push --tags"
|
9
9
|
end
|
10
10
|
end
|
data/gem_tasks/jar.rake
ADDED
@@ -0,0 +1,67 @@
|
|
1
|
+
# http://blog.nicksieger.com/articles/2009/01/10/jruby-1-1-6-gems-in-a-jar
|
2
|
+
|
3
|
+
USE_JRUBY_VERSION = '1.1.6'
|
4
|
+
USE_JBEHAVE_VERSION = '2.1'
|
5
|
+
USE_JUNIT_VERSION = '4.5'
|
6
|
+
USE_HAMCREST_VERSION = '1.1'
|
7
|
+
CUCUMBER_VERSIONED = "cucumber-#{Cucumber::VERSION::STRING}"
|
8
|
+
|
9
|
+
task :jar => [
|
10
|
+
:clean,
|
11
|
+
'jar:download_jruby',
|
12
|
+
'jar:install_gems',
|
13
|
+
'jar:bundle_gems',
|
14
|
+
'jar:download_jars_deps',
|
15
|
+
'jar:unpack_jar_deps',
|
16
|
+
'jar:bundle_jars',
|
17
|
+
'jar:fix_gem_binaries',
|
18
|
+
'jar:test_jar'
|
19
|
+
]
|
20
|
+
|
21
|
+
namespace :jar do
|
22
|
+
task :download_jruby do
|
23
|
+
sh "wget http://dist.codehaus.org/jruby/#{USE_JRUBY_VERSION}/jruby-complete-#{USE_JRUBY_VERSION}.jar -O #{CUCUMBER_VERSIONED}.jar"
|
24
|
+
end
|
25
|
+
|
26
|
+
task :install_gems => :gem do
|
27
|
+
mkdir 'pkg/jar_gems'
|
28
|
+
sh "java -jar #{CUCUMBER_VERSIONED}.jar -S gem install -i ./pkg/jar_gems pkg/#{CUCUMBER_VERSIONED}.gem --no-ri --no-rdoc"
|
29
|
+
end
|
30
|
+
|
31
|
+
task :bundle_gems do
|
32
|
+
sh "jar uf #{CUCUMBER_VERSIONED}.jar -C pkg/jar_gems ."
|
33
|
+
end
|
34
|
+
|
35
|
+
task :download_jars_deps do
|
36
|
+
mkdir 'pkg/jar_deps'
|
37
|
+
sh "wget http://repository.codehaus.org/org/jbehave/jbehave-core/#{USE_JBEHAVE_VERSION}/jbehave-core-#{USE_JBEHAVE_VERSION}.jar -O pkg/jar_deps/jbehave-core-#{USE_JBEHAVE_VERSION}.jar"
|
38
|
+
sh "wget http://mirrors.ibiblio.org/pub/mirrors/maven2/junit/junit/#{USE_JUNIT_VERSION}/junit-#{USE_JUNIT_VERSION}.jar -O pkg/jar_deps/junit-#{USE_JUNIT_VERSION}.jar"
|
39
|
+
sh "wget http://hamcrest.googlecode.com/files/hamcrest-all-#{USE_HAMCREST_VERSION}.jar -O pkg/jar_deps/hamcrest-all-#{USE_HAMCREST_VERSION}.jar"
|
40
|
+
end
|
41
|
+
|
42
|
+
task :unpack_jar_deps do
|
43
|
+
Dir.chdir 'pkg/jar_deps' do
|
44
|
+
Dir['*.jar'].each do |jar|
|
45
|
+
sh "jar xvf #{jar}"
|
46
|
+
rm_rf jar
|
47
|
+
rm_rf 'META-INF'
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
task :bundle_jars do
|
53
|
+
sh "jar uf #{CUCUMBER_VERSIONED}.jar -C pkg/jar_deps ."
|
54
|
+
end
|
55
|
+
|
56
|
+
task :fix_gem_binaries do
|
57
|
+
mkdir_p 'pkg/gem_binaries/META-INF/jruby.home'
|
58
|
+
Dir.chdir 'pkg/gem_binaries/META-INF/jruby.home' do
|
59
|
+
sh "jar xvf ../../../../#{CUCUMBER_VERSIONED}.jar bin"
|
60
|
+
end
|
61
|
+
sh "jar uf #{CUCUMBER_VERSIONED}.jar -C pkg/gem_binaries ."
|
62
|
+
end
|
63
|
+
|
64
|
+
task :test_jar do
|
65
|
+
sh "java -cp examples/jbehave/target/classes -jar #{CUCUMBER_VERSIONED}.jar -S cucumber examples/jbehave/features"
|
66
|
+
end
|
67
|
+
end
|
data/gem_tasks/rspec.rake
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
require 'autotest'
|
2
2
|
require 'tempfile'
|
3
|
-
require
|
3
|
+
require 'yaml'
|
4
|
+
require File.dirname(__FILE__) + '/../cucumber'
|
4
5
|
|
5
6
|
module Autotest::CucumberMixin
|
6
7
|
def self.included(receiver)
|
7
8
|
receiver::ALL_HOOKS << [:run_features, :ran_features]
|
8
9
|
end
|
9
10
|
|
10
|
-
attr_accessor :
|
11
|
+
attr_accessor :features_to_run
|
11
12
|
|
12
13
|
def initialize
|
13
14
|
super
|
@@ -45,7 +46,7 @@ module Autotest::CucumberMixin
|
|
45
46
|
end
|
46
47
|
|
47
48
|
def all_features_good
|
48
|
-
|
49
|
+
features_to_run == ""
|
49
50
|
end
|
50
51
|
|
51
52
|
def get_to_green
|
@@ -62,13 +63,13 @@ module Autotest::CucumberMixin
|
|
62
63
|
end
|
63
64
|
|
64
65
|
def reset_features
|
65
|
-
self.
|
66
|
+
self.features_to_run = :all
|
66
67
|
end
|
67
68
|
|
68
69
|
def run_features
|
69
70
|
hook :run_features
|
70
|
-
Tempfile.open('autotest-cucumber') do |
|
71
|
-
cmd = self.make_cucumber_cmd
|
71
|
+
Tempfile.open('autotest-cucumber') do |dirty_features_file|
|
72
|
+
cmd = self.make_cucumber_cmd(self.features_to_run, dirty_features_file.path)
|
72
73
|
return if cmd.empty?
|
73
74
|
puts cmd unless $q
|
74
75
|
old_sync = $stdout.sync
|
@@ -94,37 +95,31 @@ module Autotest::CucumberMixin
|
|
94
95
|
ensure
|
95
96
|
$stdout.sync = old_sync
|
96
97
|
end
|
97
|
-
self.
|
98
|
-
self.tainted = true unless self.
|
98
|
+
self.features_to_run = dirty_features_file.read.strip
|
99
|
+
self.tainted = true unless self.features_to_run == []
|
99
100
|
end
|
100
101
|
hook :ran_features
|
101
102
|
end
|
102
103
|
|
103
|
-
def make_cucumber_cmd(
|
104
|
-
return '' if
|
104
|
+
def make_cucumber_cmd(features_to_run, dirty_features_filename)
|
105
|
+
return '' if features_to_run == ''
|
105
106
|
|
106
107
|
profiles = YAML.load_file("cucumber.yml").keys rescue []
|
107
108
|
|
108
|
-
profile ||= "autotest-all" if profiles.include?("autotest-all") and
|
109
|
+
profile ||= "autotest-all" if profiles.include?("autotest-all") and features_to_run == :all
|
109
110
|
profile ||= "autotest" if profiles.include?("autotest")
|
110
111
|
profile ||= nil
|
111
112
|
|
112
113
|
if profile
|
113
114
|
args = ["--profile", profile]
|
114
115
|
else
|
115
|
-
args = %w{
|
116
|
+
args = %w{--format} << (features_to_run == :all ? "progress" : "pretty")
|
116
117
|
end
|
117
|
-
|
118
|
+
# No --color option as some IDEs (Netbeans) don't output them very well ([31m1 failed step[0m)
|
119
|
+
args += %w{--format rerun --out} << dirty_features_filename
|
120
|
+
args << (features_to_run == :all ? "features" : features_to_run)
|
118
121
|
args = args.join(' ')
|
119
|
-
|
120
|
-
|
121
|
-
scenario_args = nil
|
122
|
-
else
|
123
|
-
# We escape scenario names for the shell by wrapping them in $'...' and replacing
|
124
|
-
# every single quote with an escaped version, "\'". We use a double backslash for
|
125
|
-
# Ruby, and we put it in a block or gsub interpolates the sequence "\'" as $'.
|
126
|
-
scenario_args = scenarios_to_run.map { |s| "-s $'#{s.gsub("'") {"\\'"} }'" }.join(' ')
|
127
|
-
end
|
128
|
-
return "#{Cucumber::RUBY_BINARY} #{Cucumber::BINARY} #{args} #{scenario_args}"
|
122
|
+
|
123
|
+
return "#{Cucumber::RUBY_BINARY} #{Cucumber::BINARY} #{args}"
|
129
124
|
end
|
130
125
|
end
|