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
@@ -1,14 +1,19 @@
|
|
1
|
+
@one
|
1
2
|
Feature: Sample
|
2
3
|
|
4
|
+
@two @three
|
3
5
|
Scenario: Missing
|
4
6
|
Given missing
|
5
7
|
|
8
|
+
@three
|
6
9
|
Scenario: Passing
|
7
10
|
Given passing
|
8
11
|
|a|b|
|
9
12
|
|c|d|
|
10
|
-
|
13
|
+
|
14
|
+
@four
|
11
15
|
Scenario: Failing
|
12
16
|
Given failing
|
13
|
-
|
14
|
-
|
17
|
+
"""
|
18
|
+
hello
|
19
|
+
"""
|
@@ -1,13 +1,64 @@
|
|
1
|
+
def flunker
|
2
|
+
raise "FAIL"
|
3
|
+
end
|
4
|
+
|
1
5
|
Given /^passing$/ do |table|
|
2
6
|
end
|
3
7
|
|
4
|
-
Given /^failing$/ do |
|
5
|
-
|
8
|
+
Given /^failing$/ do |string|
|
9
|
+
flunker
|
6
10
|
end
|
7
11
|
|
8
12
|
Given /^passing without a table$/ do
|
9
13
|
end
|
10
14
|
|
11
15
|
Given /^failing without a table$/ do
|
12
|
-
|
13
|
-
end
|
16
|
+
flunker
|
17
|
+
end
|
18
|
+
|
19
|
+
Given /^a step definition that calls an undefined step$/ do
|
20
|
+
Given 'this does not exist'
|
21
|
+
end
|
22
|
+
|
23
|
+
Given /^call step "(.*)"$/ do |step|
|
24
|
+
Given step
|
25
|
+
end
|
26
|
+
|
27
|
+
Given /^'(.+)' cukes$/ do |cukes|
|
28
|
+
@cukes = cukes
|
29
|
+
end
|
30
|
+
|
31
|
+
Then /^I should have '(.+)' cukes$/ do |cukes|
|
32
|
+
@cukes.should == cukes
|
33
|
+
end
|
34
|
+
|
35
|
+
Given /^'(.+)' global cukes$/ do |cukes|
|
36
|
+
$scenario_runs ||= 0
|
37
|
+
flunker if $scenario_runs >= 1
|
38
|
+
$cukes = cukes
|
39
|
+
$scenario_runs += 1
|
40
|
+
end
|
41
|
+
|
42
|
+
Then /^I should have '(.+)' global cukes$/ do |cukes|
|
43
|
+
$cukes.should == cukes
|
44
|
+
end
|
45
|
+
|
46
|
+
Given /^table$/ do |table|
|
47
|
+
@table = table
|
48
|
+
end
|
49
|
+
|
50
|
+
Given /^multiline string$/ do |string|
|
51
|
+
@multiline = string
|
52
|
+
end
|
53
|
+
|
54
|
+
Then /^the table should be$/ do |table|
|
55
|
+
@table.to_sexp.should == table.to_sexp
|
56
|
+
end
|
57
|
+
|
58
|
+
Then /^the multiline string should be$/ do |string|
|
59
|
+
@multiline.should == string
|
60
|
+
end
|
61
|
+
|
62
|
+
Given /^failing expectation$/ do
|
63
|
+
'this'.should == 'that'
|
64
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
require 'spec/expectations'
|
@@ -0,0 +1,25 @@
|
|
1
|
+
module Tag
|
2
|
+
# Custom formatter that reports occurrences of each tag
|
3
|
+
class Count < Cucumber::Ast::Visitor
|
4
|
+
def initialize(step_mother, io, options)
|
5
|
+
super(step_mother)
|
6
|
+
@io = io
|
7
|
+
@counts = Hash.new{|h,k| h[k] = 0}
|
8
|
+
end
|
9
|
+
|
10
|
+
def visit_features(features)
|
11
|
+
super
|
12
|
+
print_summary
|
13
|
+
end
|
14
|
+
|
15
|
+
def visit_tag_name(tag_name)
|
16
|
+
@counts[tag_name] += 1
|
17
|
+
end
|
18
|
+
|
19
|
+
def print_summary
|
20
|
+
matrix = @counts.to_a.sort{|paira, pairb| paira[0] <=> pairb[0]}.transpose
|
21
|
+
table = Cucumber::Ast::Table.new(matrix)
|
22
|
+
Cucumber::Formatter::Pretty.new(@step_mother, @io, {}).visit_multiline_arg(table)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
Feature: Addition
|
2
|
+
In order to avoid silly mistakes
|
3
|
+
As a math idiot
|
4
|
+
I want to be told the sum of two numbers
|
5
|
+
|
6
|
+
Scenario: Add two numbers
|
7
|
+
Given I visit the calculator page
|
8
|
+
And I fill in '50' for 'first'
|
9
|
+
And I fill in '70' for 'second'
|
10
|
+
When I press 'Add'
|
11
|
+
Then I should see 'Answer: 120'
|
@@ -0,0 +1,15 @@
|
|
1
|
+
Given /^I visit the calculator page$/ do
|
2
|
+
visit '/add'
|
3
|
+
end
|
4
|
+
|
5
|
+
Given /^I fill in '(.*)' for '(.*)'$/ do |value, field|
|
6
|
+
fill_in(field, :with => value)
|
7
|
+
end
|
8
|
+
|
9
|
+
When /^I press '(.*)'$/ do |name|
|
10
|
+
click_button(name)
|
11
|
+
end
|
12
|
+
|
13
|
+
Then /^I should see '(.*)'$/ do |text|
|
14
|
+
response.should contain(/#{text}/m)
|
15
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# Sinatra
|
2
|
+
require File.join(File.dirname(__FILE__), *%w[.. .. app])
|
3
|
+
# Force the application name because polyglot breaks the auto-detection logic.
|
4
|
+
Sinatra::Application.app_file = File.join(File.dirname(__FILE__), *%w[.. .. app.rb])
|
5
|
+
|
6
|
+
# RSpec
|
7
|
+
require 'spec/expectations'
|
8
|
+
|
9
|
+
# Webrat
|
10
|
+
require 'webrat'
|
11
|
+
Webrat.configure do |config|
|
12
|
+
config.mode = :sinatra
|
13
|
+
end
|
14
|
+
|
15
|
+
World do
|
16
|
+
session = Webrat::SinatraSession.new
|
17
|
+
session.extend(Webrat::Matchers)
|
18
|
+
session.extend(Webrat::HaveTagMatcher)
|
19
|
+
session
|
20
|
+
end
|
data/examples/tickets/Rakefile
CHANGED
@@ -1,11 +1,16 @@
|
|
1
1
|
$:.unshift(File.dirname(__FILE__) + '/../../lib')
|
2
2
|
require 'cucumber/rake/task'
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
Cucumber::Rake::Task.new do |t|
|
9
|
-
|
10
|
-
|
11
|
-
|
4
|
+
Cucumber::Rake::Task.new(:pretty) do |t|
|
5
|
+
t.cucumber_opts = "--format pretty"
|
6
|
+
end
|
7
|
+
|
8
|
+
Cucumber::Rake::Task.new(:html) do |t|
|
9
|
+
t.cucumber_opts = "--format html --out features.html"
|
10
|
+
end
|
11
|
+
|
12
|
+
Cucumber::Rake::Task.new(:progress) do |t|
|
13
|
+
t.cucumber_opts = "--format progress -i -n"
|
14
|
+
end
|
15
|
+
|
16
|
+
task :default => [:pretty, :html, :progress]
|
@@ -0,0 +1,28 @@
|
|
1
|
+
Feature: Login
|
2
|
+
To ensure the safety of the application
|
3
|
+
A regular user of the system
|
4
|
+
Must authenticate before using the app
|
5
|
+
|
6
|
+
|
7
|
+
Scenario Outline: Failed Login
|
8
|
+
Given the user "known_user"
|
9
|
+
|
10
|
+
When I go to the main page
|
11
|
+
Then I should see the login form
|
12
|
+
|
13
|
+
When I fill in "login" with "<login>"
|
14
|
+
And I fill in "password" with "<password>"
|
15
|
+
And I press "Log In"
|
16
|
+
Then the login request should fail
|
17
|
+
And I should see the error message "Login or Password incorrect"
|
18
|
+
|
19
|
+
Examples:
|
20
|
+
| login | password |
|
21
|
+
| | |
|
22
|
+
| unknown_user | |
|
23
|
+
| known_user | |
|
24
|
+
| | wrong_password |
|
25
|
+
| | known_userpass |
|
26
|
+
| unknown_user | wrong_password |
|
27
|
+
| unknown_user | known_userpass |
|
28
|
+
| known_user | wrong_password |
|
@@ -0,0 +1,29 @@
|
|
1
|
+
Users want to know that nobody can masquerade as them. We want to extend trust
|
2
|
+
only to visitors who present the appropriate credentials. Everyone wants this
|
3
|
+
identity verification to be as secure and convenient as possible.
|
4
|
+
|
5
|
+
Feature: Logging in
|
6
|
+
As an anonymous user with an account
|
7
|
+
I want to log in to my account
|
8
|
+
So that I can be myself
|
9
|
+
|
10
|
+
#
|
11
|
+
# Log in: get form
|
12
|
+
#
|
13
|
+
Scenario: Anonymous user can get a login form.
|
14
|
+
Given I am logged out
|
15
|
+
When I go to "/login"
|
16
|
+
Then I should be at the "sessions/new" page
|
17
|
+
|
18
|
+
#
|
19
|
+
# Log in successfully, but don't remember me
|
20
|
+
#
|
21
|
+
Scenario: Anonymous user can log in
|
22
|
+
Given an "activated" user named "reggie" exists
|
23
|
+
And I am logged out
|
24
|
+
When I go to "/login"
|
25
|
+
And I fill in "Login" with "reggie"
|
26
|
+
And I fill in "Password" with "password"
|
27
|
+
And I press "Log in"
|
28
|
+
Then I should be at the "dashboard/index" page
|
29
|
+
|
@@ -0,0 +1,21 @@
|
|
1
|
+
Visitors may create an account, but for those who are not already in the
|
2
|
+
system an someone must activate the account for them before it can be used.
|
3
|
+
|
4
|
+
Feature: Activating an account
|
5
|
+
As a registered, but not yet activated, user
|
6
|
+
I want to be able to activate my account
|
7
|
+
So that I can log in to the site
|
8
|
+
|
9
|
+
Scenario: Not-yet-activated user can activate her account
|
10
|
+
Given a registered user named 'Reggie' # need to rewrite
|
11
|
+
# And the user has activation_code: 'activate_me', activated_at: nil!
|
12
|
+
# And we try hard to remember the user's updated_at, and created_at
|
13
|
+
# When she goes to /activate/activate_me
|
14
|
+
# Then she should be redirected to 'login'
|
15
|
+
# When she follows that redirect!
|
16
|
+
# Then she should see a notice message 'Signup complete!'
|
17
|
+
# And a user with login: 'reggie' should exist
|
18
|
+
# And the user should have login: 'reggie', and email: 'registered@example.com'
|
19
|
+
# And the user's activation_code should be nil
|
20
|
+
# And the user's activated_at should not be nil
|
21
|
+
# And she should not be logged in
|
@@ -0,0 +1,18 @@
|
|
1
|
+
Feature: Matt's example with a comment before a step
|
2
|
+
|
3
|
+
Scenario: Upload an image for an artist and create a concert in the process
|
4
|
+
Given I am logged in to my account
|
5
|
+
And there is one Artist named "Pixies"
|
6
|
+
And there is one Venue
|
7
|
+
When I visit the page for the Artist
|
8
|
+
And I follow "add a photo"
|
9
|
+
And I upload an Image
|
10
|
+
# Search on select concert page
|
11
|
+
And I press "Search Pixies concerts"
|
12
|
+
And I follow "Add a new Concert"
|
13
|
+
And I fill in new Concert information
|
14
|
+
And I press "Preview"
|
15
|
+
And I press "Add concert"
|
16
|
+
# No artists appear in this photo
|
17
|
+
And I press "Submit"
|
18
|
+
Then my Concert should exist with 1 Image
|
@@ -0,0 +1,13 @@
|
|
1
|
+
Feature: Unsubstituted argument placeholder
|
2
|
+
|
3
|
+
Scenario Outline: See Annual Leave Details (as Management & Human Resource)
|
4
|
+
Given the following users exist in the system
|
5
|
+
| name | email | role_assignments | group_memberships |
|
6
|
+
| Jane | jane@fmail.com | <role> | Sales (manager) |
|
7
|
+
| Max | max@fmail.com | | Sales (member) |
|
8
|
+
| Carol | carol@fmail.com | | Sales (member) |
|
9
|
+
| Cat | cat@fmail.com | | |
|
10
|
+
|
11
|
+
Examples:
|
12
|
+
| role |
|
13
|
+
| HUMAN RESOURCE |
|
@@ -0,0 +1,13 @@
|
|
1
|
+
Users want to use cucumber, so tests are necessary to verify
|
2
|
+
it is all working as expected
|
3
|
+
|
4
|
+
Feature: Using the Console Formatter
|
5
|
+
In order to verify this error
|
6
|
+
I want to run this feature using the progress format
|
7
|
+
So that it can be fixed
|
8
|
+
|
9
|
+
Scenario: A normal feature
|
10
|
+
Given I have a pending step
|
11
|
+
When I run this feature with the progress format
|
12
|
+
Then I should get a no method error for 'backtrace_line'
|
13
|
+
|
@@ -19,10 +19,15 @@ Feature: Outlines
|
|
19
19
|
Then I should have <left> cucumbers
|
20
20
|
And I should have <eat> cucumbers in my belly
|
21
21
|
|
22
|
-
Examples:
|
22
|
+
Examples: Lots of cukes
|
23
23
|
| start | eat | left |
|
24
24
|
| 12 | 5 | 7 |
|
25
25
|
| 20 | 5 | 15 |
|
26
|
+
|
27
|
+
Examples: Ridiculous amounts of cukes
|
28
|
+
| start | eat | left |
|
29
|
+
| 120 | 50 | 70 |
|
30
|
+
| 200 | 50 | 150 |
|
26
31
|
|
27
32
|
Scenario Outline: no placeholders
|
28
33
|
Given there are 12 cucumbers
|
@@ -4,20 +4,41 @@ World do
|
|
4
4
|
Object.new
|
5
5
|
end
|
6
6
|
|
7
|
+
After do |scenario|
|
8
|
+
end
|
9
|
+
|
7
10
|
Given "be_empty" do
|
8
11
|
[1,2].should_not be_empty
|
9
12
|
end
|
10
13
|
|
11
14
|
Given "nested step is called" do
|
12
|
-
Given "
|
15
|
+
Given "I like mushroom", Cucumber::Ast::Table.new([
|
16
|
+
%w{sponge bob},
|
17
|
+
%w{is cool}
|
18
|
+
])
|
13
19
|
end
|
14
20
|
|
15
|
-
Given
|
16
|
-
|
21
|
+
Given 'nested step is called using text table' do
|
22
|
+
Given "I like mushroom", table(%{
|
23
|
+
| sponge | bob |
|
24
|
+
| is | cool |
|
25
|
+
})
|
26
|
+
|
27
|
+
# Alternative syntax (file and line will be reported on parse error)
|
28
|
+
# Given "I like mushroom", table(<<-EOT, __FILE__, __LINE__)
|
29
|
+
# | sponge | bob |
|
30
|
+
# | is | cool
|
31
|
+
# EOT
|
32
|
+
end
|
33
|
+
|
34
|
+
Given "I like $what" do |what, table|
|
35
|
+
@magic = what
|
36
|
+
@tool = table.raw[0][0]
|
17
37
|
end
|
18
38
|
|
19
39
|
Then "nested step should be executed" do
|
20
40
|
@magic.should == 'mushroom'
|
41
|
+
@tool.should == 'sponge'
|
21
42
|
end
|
22
43
|
|
23
44
|
Given /^the following table$/ do |table|
|
@@ -29,8 +50,24 @@ Then /^I should be (\w+) in (\w+)$/ do |key, value|
|
|
29
50
|
hash[key].should == value
|
30
51
|
end
|
31
52
|
|
32
|
-
Then /^I
|
53
|
+
Then /^I should see a multiline string like$/ do |s|
|
33
54
|
s.should == %{A string
|
34
55
|
that spans
|
35
56
|
several lines}
|
36
57
|
end
|
58
|
+
|
59
|
+
Given /^the following users exist in the system$/ do |table|
|
60
|
+
table.hashes[0][:role_assignments].should == 'HUMAN RESOURCE'
|
61
|
+
end
|
62
|
+
|
63
|
+
Given /^I have a pending step$/ do
|
64
|
+
pending
|
65
|
+
end
|
66
|
+
|
67
|
+
When /^I run this feature with the progress format$/ do
|
68
|
+
pending
|
69
|
+
end
|
70
|
+
|
71
|
+
Then /^I should get a no method error for 'backtrace_line'$/ do
|
72
|
+
pending
|
73
|
+
end
|