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
data/lib/cucumber.rb
CHANGED
@@ -1,19 +1,63 @@
|
|
1
1
|
$:.unshift(File.dirname(__FILE__)) unless
|
2
2
|
$:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
|
3
3
|
|
4
|
+
require 'yaml'
|
4
5
|
require 'cucumber/platform'
|
5
|
-
require '
|
6
|
-
require 'treetop/runtime'
|
7
|
-
require 'treetop/ruby_extensions'
|
6
|
+
require 'cucumber/parser'
|
8
7
|
require 'cucumber/version'
|
9
|
-
require 'cucumber/step_methods'
|
10
|
-
require 'cucumber/tree'
|
11
|
-
require 'cucumber/model'
|
12
|
-
require 'cucumber/executor'
|
13
8
|
require 'cucumber/step_mother'
|
14
|
-
require 'cucumber/
|
15
|
-
require 'cucumber/treetop_parser/feature_parser'
|
16
|
-
require 'cucumber/cli'
|
9
|
+
require 'cucumber/cli/main'
|
17
10
|
require 'cucumber/broadcaster'
|
18
|
-
require 'cucumber/world'
|
19
11
|
require 'cucumber/core_ext/exception'
|
12
|
+
|
13
|
+
module Cucumber
|
14
|
+
KEYWORD_KEYS = %w{name native encoding feature background scenario scenario_outline examples given when then but}
|
15
|
+
|
16
|
+
class << self
|
17
|
+
attr_reader :lang
|
18
|
+
|
19
|
+
def load_language(lang) #:nodoc:
|
20
|
+
return if @lang
|
21
|
+
@lang = lang
|
22
|
+
alias_step_definitions(lang)
|
23
|
+
Parser.load_parser(keyword_hash)
|
24
|
+
end
|
25
|
+
|
26
|
+
def language_incomplete?(lang=@lang)
|
27
|
+
KEYWORD_KEYS.detect{|key| keyword_hash(lang)[key].nil?}
|
28
|
+
end
|
29
|
+
|
30
|
+
# File mode that accounts for Ruby platform and current language
|
31
|
+
def file_mode(m)
|
32
|
+
Cucumber::RUBY_1_9 ? "#{m}:#{keyword_hash['encoding']}" : m
|
33
|
+
end
|
34
|
+
|
35
|
+
# Returns a Hash of the currently active
|
36
|
+
# language, or for a specific language if +lang+ is
|
37
|
+
# specified.
|
38
|
+
def keyword_hash(lang=@lang)
|
39
|
+
LANGUAGES[lang]
|
40
|
+
end
|
41
|
+
|
42
|
+
def alias_step_definitions(lang) #:nodoc:
|
43
|
+
keywords = %w{given when then and but}.map{|keyword| keyword_hash(lang)[keyword]}
|
44
|
+
alias_steps(keywords)
|
45
|
+
end
|
46
|
+
|
47
|
+
# Sets up additional method aliases for Given, When and Then.
|
48
|
+
# This does *not* affect how feature files are parsed. If you
|
49
|
+
# want to create aliases in the parser, you have to do this in
|
50
|
+
# languages.yml. For example:
|
51
|
+
#
|
52
|
+
# and: And|With
|
53
|
+
def alias_steps(keywords)
|
54
|
+
keywords.each do |adverb|
|
55
|
+
StepMother.alias_adverb(adverb)
|
56
|
+
World.alias_adverb(adverb)
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
# Make sure we always have English aliases
|
62
|
+
alias_step_definitions('en')
|
63
|
+
end
|
data/lib/cucumber/ast.rb
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'cucumber/ast/comment'
|
2
|
+
require 'cucumber/ast/tags'
|
3
|
+
require 'cucumber/ast/features'
|
4
|
+
require 'cucumber/ast/feature'
|
5
|
+
require 'cucumber/ast/background'
|
6
|
+
require 'cucumber/ast/scenario'
|
7
|
+
require 'cucumber/ast/scenario_outline'
|
8
|
+
require 'cucumber/ast/step_invocation'
|
9
|
+
require 'cucumber/ast/step_collection'
|
10
|
+
require 'cucumber/ast/step'
|
11
|
+
require 'cucumber/ast/table'
|
12
|
+
require 'cucumber/ast/py_string'
|
13
|
+
require 'cucumber/ast/outline_table'
|
14
|
+
require 'cucumber/ast/examples'
|
15
|
+
require 'cucumber/ast/visitor'
|
16
|
+
|
17
|
+
module Cucumber
|
18
|
+
# Classes in this module represent the Abstract Syntax Tree (AST)
|
19
|
+
# that gets built when feature files are parsed.
|
20
|
+
#
|
21
|
+
# AST classes don't expose any internal data directly. This is
|
22
|
+
# in order to encourage a less coupled design in the classes
|
23
|
+
# that operate on the AST. The only public method is #accept.
|
24
|
+
#
|
25
|
+
# The AST can be traversed with a visitor. See Cucumber::Format::Pretty
|
26
|
+
# for an example.
|
27
|
+
module Ast
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,50 @@
|
|
1
|
+
require 'cucumber/ast/feature_element'
|
2
|
+
|
3
|
+
module Cucumber
|
4
|
+
module Ast
|
5
|
+
class Background
|
6
|
+
include FeatureElement
|
7
|
+
attr_writer :feature
|
8
|
+
|
9
|
+
def initialize(comment, line, keyword, steps)
|
10
|
+
@comment, @line, @keyword, @steps = comment, line, keyword, StepCollection.new(steps)
|
11
|
+
attach_steps(steps)
|
12
|
+
@step_invocations = @steps.step_invocations(true)
|
13
|
+
end
|
14
|
+
|
15
|
+
def step_collection(step_invocations)
|
16
|
+
unless(@first_collection_created)
|
17
|
+
@first_collection_created = true
|
18
|
+
@step_invocations.dup(step_invocations)
|
19
|
+
else
|
20
|
+
@steps.step_invocations(true).dup(step_invocations)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
def accept(visitor)
|
25
|
+
visitor.visit_comment(@comment)
|
26
|
+
visitor.visit_background_name(@keyword, "", file_colon_line(@line), source_indent(text_length))
|
27
|
+
visitor.step_mother.before_and_after(self)
|
28
|
+
visitor.visit_steps(@step_invocations)
|
29
|
+
@failed = @step_invocations.detect{|step_invocation| step_invocation.exception}
|
30
|
+
end
|
31
|
+
|
32
|
+
def failed?
|
33
|
+
@failed
|
34
|
+
end
|
35
|
+
|
36
|
+
def text_length
|
37
|
+
@keyword.jlength
|
38
|
+
end
|
39
|
+
|
40
|
+
def to_sexp
|
41
|
+
sexp = [:background, @line, @keyword]
|
42
|
+
comment = @comment.to_sexp
|
43
|
+
sexp += [comment] if comment
|
44
|
+
steps = @steps.to_sexp
|
45
|
+
sexp += steps if steps.any?
|
46
|
+
sexp
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
module Cucumber
|
2
|
+
module Ast
|
3
|
+
# Holds the value of a comment parsed from a feature file:
|
4
|
+
#
|
5
|
+
# # Lorem ipsum
|
6
|
+
# # dolor sit amet
|
7
|
+
#
|
8
|
+
# This gets parsed into a Comment with value <tt>"# Lorem ipsum\n# dolor sit amet\n"</tt>
|
9
|
+
#
|
10
|
+
class Comment
|
11
|
+
def initialize(value)
|
12
|
+
@value = value
|
13
|
+
end
|
14
|
+
|
15
|
+
def accept(visitor)
|
16
|
+
@value.split("\n").each do |line|
|
17
|
+
visitor.visit_comment_line(line.strip)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
def to_sexp
|
22
|
+
(@value.nil? || @value == '') ? nil : [:comment, @value]
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
module Cucumber
|
2
|
+
module Ast
|
3
|
+
class Examples
|
4
|
+
def initialize(line, keyword, name, outline_table)
|
5
|
+
@keyword, @name, @outline_table = keyword, name, outline_table
|
6
|
+
end
|
7
|
+
|
8
|
+
def accept(visitor)
|
9
|
+
visitor.visit_examples_name(@keyword, @name)
|
10
|
+
visitor.visit_outline_table(@outline_table)
|
11
|
+
end
|
12
|
+
|
13
|
+
def descend?(visitor)
|
14
|
+
@outline_table.descend?(visitor)
|
15
|
+
end
|
16
|
+
|
17
|
+
def skip_invoke!
|
18
|
+
@outline_table.skip_invoke!
|
19
|
+
end
|
20
|
+
|
21
|
+
def matches_scenario_names?(scenario_names)
|
22
|
+
scenario_names.detect{|name| name == @name}
|
23
|
+
end
|
24
|
+
|
25
|
+
def each_example_row(&proc)
|
26
|
+
@outline_table.cells_rows[1..-1].each(&proc)
|
27
|
+
end
|
28
|
+
|
29
|
+
def matches_lines?(lines)
|
30
|
+
lines.index(@line) || @outline_table.matches_lines?(lines)
|
31
|
+
end
|
32
|
+
|
33
|
+
def to_sexp
|
34
|
+
[:examples, @keyword, @name, @outline_table.to_sexp]
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,62 @@
|
|
1
|
+
module Cucumber
|
2
|
+
module Ast
|
3
|
+
# Represents the root node of a parsed feature.
|
4
|
+
class Feature
|
5
|
+
attr_accessor :file
|
6
|
+
attr_writer :features, :lines
|
7
|
+
|
8
|
+
def initialize(background, comment, tags, name, feature_elements)
|
9
|
+
@background, @comment, @tags, @name, @feature_elements = background, comment, tags, name, feature_elements
|
10
|
+
@lines = []
|
11
|
+
|
12
|
+
@feature_elements.each do |feature_element|
|
13
|
+
feature_element.feature = self
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
def accept(visitor)
|
18
|
+
visitor.current_feature_lines = @lines
|
19
|
+
visitor.visit_comment(@comment)
|
20
|
+
visitor.visit_tags(@tags)
|
21
|
+
visitor.visit_feature_name(@name)
|
22
|
+
visitor.visit_background(@background) if @background
|
23
|
+
@feature_elements.each do |feature_element|
|
24
|
+
visitor.visit_feature_element(feature_element) if feature_element.descend?(visitor)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
def descend?(visitor)
|
29
|
+
@feature_elements.detect{ |feature_element| feature_element.descend?(visitor) }
|
30
|
+
end
|
31
|
+
|
32
|
+
def has_tags?(tags)
|
33
|
+
@tags.has_tags?(tags)
|
34
|
+
end
|
35
|
+
|
36
|
+
def next_feature_element(feature_element, &proc)
|
37
|
+
index = @feature_elements.index(feature_element)
|
38
|
+
next_one = @feature_elements[index+1]
|
39
|
+
proc.call(next_one) if next_one
|
40
|
+
end
|
41
|
+
|
42
|
+
def backtrace_line(step_name, line)
|
43
|
+
"#{file_colon_line(line)}:in `#{step_name}'"
|
44
|
+
end
|
45
|
+
|
46
|
+
def file_colon_line(line)
|
47
|
+
"#{@file}:#{line}"
|
48
|
+
end
|
49
|
+
|
50
|
+
def to_sexp
|
51
|
+
sexp = [:feature, @name]
|
52
|
+
comment = @comment.to_sexp
|
53
|
+
sexp += [comment] if comment
|
54
|
+
tags = @tags.to_sexp
|
55
|
+
sexp += tags if tags.any?
|
56
|
+
sexp += [@background.to_sexp] if @background
|
57
|
+
sexp += @feature_elements.map{|fe| fe.to_sexp}
|
58
|
+
sexp
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
module Cucumber
|
2
|
+
module FeatureElement
|
3
|
+
def attach_steps(steps)
|
4
|
+
steps.each {|step| step.feature_element = self}
|
5
|
+
end
|
6
|
+
|
7
|
+
def file_colon_line(line = @line)
|
8
|
+
@feature.file_colon_line(line) if @feature
|
9
|
+
end
|
10
|
+
|
11
|
+
def text_length
|
12
|
+
@keyword.jlength + @name.jlength
|
13
|
+
end
|
14
|
+
|
15
|
+
def matches_lines?(lines)
|
16
|
+
lines.index(@line) || @steps.matches_lines?(lines) || @tags.matches_lines?(lines)
|
17
|
+
end
|
18
|
+
|
19
|
+
def has_tags?(tags)
|
20
|
+
@tags.has_tags?(tags) || @feature.has_tags?(tags)
|
21
|
+
end
|
22
|
+
|
23
|
+
def matches_scenario_names?(scenario_names)
|
24
|
+
scenario_names.detect{|name| name == @name}
|
25
|
+
end
|
26
|
+
|
27
|
+
def backtrace_line(name = "#{@keyword} #{@name}", line = @line)
|
28
|
+
@feature.backtrace_line(name, line) if @feature
|
29
|
+
end
|
30
|
+
|
31
|
+
def source_indent(text_length)
|
32
|
+
max_line_length - text_length
|
33
|
+
end
|
34
|
+
|
35
|
+
def max_line_length
|
36
|
+
@steps.max_line_length(self)
|
37
|
+
end
|
38
|
+
|
39
|
+
# TODO: Remove when we use StepCollection everywhere
|
40
|
+
def previous_step(step)
|
41
|
+
i = @steps.index(step) || -1
|
42
|
+
@steps[i-1]
|
43
|
+
end
|
44
|
+
|
45
|
+
end
|
46
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
module Cucumber
|
2
|
+
module Ast
|
3
|
+
class Features
|
4
|
+
def initialize
|
5
|
+
@features = []
|
6
|
+
end
|
7
|
+
|
8
|
+
def add_feature(feature)
|
9
|
+
feature.features = self
|
10
|
+
@features << feature
|
11
|
+
end
|
12
|
+
|
13
|
+
def accept(visitor)
|
14
|
+
@features.each do |feature|
|
15
|
+
visitor.visit_feature(feature) if feature.descend?(visitor)
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,81 @@
|
|
1
|
+
module Cucumber
|
2
|
+
module Ast
|
3
|
+
class OutlineTable < Table
|
4
|
+
def initialize(raw, scenario_outline)
|
5
|
+
super(raw)
|
6
|
+
@scenario_outline = scenario_outline
|
7
|
+
@cells_class = ExampleCells
|
8
|
+
|
9
|
+
cells_rows.each do |cells|
|
10
|
+
cells.create_step_invocations!(scenario_outline)
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
def accept(visitor)
|
15
|
+
cells_rows.each_with_index do |row, n|
|
16
|
+
if n == 0 || matches?(visitor, row)
|
17
|
+
visitor.visit_table_row(row)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
nil
|
21
|
+
end
|
22
|
+
|
23
|
+
def descend?(visitor)
|
24
|
+
cells_rows.detect{|cells_row| cells_row.descend?(visitor)}
|
25
|
+
end
|
26
|
+
|
27
|
+
def matches?(visitor, cells)
|
28
|
+
@scenario_outline.matches_tags_and_name?(visitor) &&
|
29
|
+
(visitor.matches_lines?(cells) || visitor.matches_lines?(@scenario_outline))
|
30
|
+
end
|
31
|
+
|
32
|
+
def skip_invoke!
|
33
|
+
cells_rows.each do |cells|
|
34
|
+
cells.skip_invoke!
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
class ExampleCells < Cells
|
39
|
+
def create_step_invocations!(scenario_outline)
|
40
|
+
@step_invocations = scenario_outline.step_invocations(self)
|
41
|
+
end
|
42
|
+
|
43
|
+
def descend?(visitor)
|
44
|
+
@table.matches?(visitor, self)
|
45
|
+
end
|
46
|
+
|
47
|
+
def skip_invoke!
|
48
|
+
@step_invocations.each do |step_invocation|
|
49
|
+
step_invocation.skip_invoke!
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
def accept(visitor)
|
54
|
+
if header?
|
55
|
+
@cells.each do |cell|
|
56
|
+
cell.status = :skipped
|
57
|
+
visitor.visit_table_cell(cell)
|
58
|
+
end
|
59
|
+
else
|
60
|
+
visitor.step_mother.before_and_after(self) do
|
61
|
+
@step_invocations.each do |step_invocation|
|
62
|
+
step_invocation.invoke(visitor.step_mother, visitor.options)
|
63
|
+
@exception ||= step_invocation.exception
|
64
|
+
end
|
65
|
+
|
66
|
+
@cells.each do |cell|
|
67
|
+
visitor.visit_table_cell(cell)
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
private
|
74
|
+
|
75
|
+
def header?
|
76
|
+
index == 0
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
@@ -0,0 +1,58 @@
|
|
1
|
+
module Cucumber
|
2
|
+
module Ast
|
3
|
+
# Represents an inline argument in a step. Example:
|
4
|
+
#
|
5
|
+
# Given the message
|
6
|
+
# """
|
7
|
+
# I like
|
8
|
+
# Cucumber sandwich
|
9
|
+
# """
|
10
|
+
#
|
11
|
+
# The text between the pair of <tt>"""</tt> is stored inside a PyString,
|
12
|
+
# which is yielded to the StepDefinition block as the last argument.
|
13
|
+
#
|
14
|
+
# The StepDefinition can then access the String via the #to_s method. In the
|
15
|
+
# example above, that would return: <tt>"I like\nCucumber sandwich"</tt>
|
16
|
+
#
|
17
|
+
# Note how the indentation from the source is stripped away.
|
18
|
+
#
|
19
|
+
class PyString
|
20
|
+
def initialize(start_line, end_line, string, quotes_indent)
|
21
|
+
@start_line, @end_line = start_line, end_line
|
22
|
+
@string, @quotes_indent = string.gsub(/\\"/, '"'), quotes_indent
|
23
|
+
@status = :passed
|
24
|
+
end
|
25
|
+
|
26
|
+
def status=(status)
|
27
|
+
@status = status
|
28
|
+
end
|
29
|
+
|
30
|
+
def to_s
|
31
|
+
@string.indent(-@quotes_indent)
|
32
|
+
end
|
33
|
+
|
34
|
+
def matches_lines?(lines)
|
35
|
+
lines.detect{|l| l >= @start_line && l <= @end_line}
|
36
|
+
end
|
37
|
+
|
38
|
+
def accept(visitor)
|
39
|
+
visitor.visit_py_string(to_s, @status)
|
40
|
+
end
|
41
|
+
|
42
|
+
def arguments_replaced(arguments) #:nodoc:
|
43
|
+
string = @string
|
44
|
+
arguments.each do |name, value|
|
45
|
+
value ||= ''
|
46
|
+
string = string.gsub(name, value)
|
47
|
+
end
|
48
|
+
PyString.new(@start_line, @end_line, string, @quotes_indent)
|
49
|
+
end
|
50
|
+
|
51
|
+
# For testing only
|
52
|
+
def to_sexp #:nodoc:
|
53
|
+
[:py_string, to_s]
|
54
|
+
end
|
55
|
+
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|