Class: Cucumber::Runtime

Inherits:
Object
  • Object
show all
Includes:
Core, Formatter::Duration, UserInterface
Defined in:
lib/cucumber/runtime.rb,
lib/cucumber/runtime/step_hooks.rb,
lib/cucumber/runtime/after_hooks.rb,
lib/cucumber/runtime/before_hooks.rb,
lib/cucumber/runtime/support_code.rb,
lib/cucumber/runtime/user_interface.rb,
lib/cucumber/runtime/meta_message_builder.rb,
lib/cucumber/runtime/for_programming_languages.rb

Defined Under Namespace

Modules: UserInterface Classes: AfterHooks, BeforeHooks, ForProgrammingLanguages, MetaMessageBuilder, NormalisedEncodingFile, StepHooks, SupportCode

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from UserInterface

#ask, #attach

Methods included from Formatter::Duration

#format_duration

Constructor Details

#initialize(configuration = Configuration.default) ⇒ Runtime

Returns a new instance of Runtime.



56
57
58
59
# File 'lib/cucumber/runtime.rb', line 56

def initialize(configuration = Configuration.default)
  @configuration = Configuration.new(configuration)
  @support_code = SupportCode.new(self, @configuration)
end

Instance Attribute Details

#configurationObject (readonly)

Returns the value of attribute configuration.



50
51
52
# File 'lib/cucumber/runtime.rb', line 50

def configuration
  @configuration
end

#resultsObject (readonly)

Returns the value of attribute results.



50
51
52
# File 'lib/cucumber/runtime.rb', line 50

def results
  @results
end

#support_codeObject (readonly)

Returns the value of attribute support_code.



50
51
52
# File 'lib/cucumber/runtime.rb', line 50

def support_code
  @support_code
end

Instance Method Details

#begin_scenario(test_case) ⇒ Object



94
95
96
# File 'lib/cucumber/runtime.rb', line 94

def begin_scenario(test_case)
  @support_code.fire_hook(:begin_scenario, test_case)
end

#configure(new_configuration) ⇒ Object

Allows you to take an existing runtime and change its configuration



62
63
64
65
# File 'lib/cucumber/runtime.rb', line 62

def configure(new_configuration)
  @configuration = Configuration.new(new_configuration)
  @support_code.configure(@configuration)
end

#doc_string(string_without_triple_quotes, content_type = '', _line_offset = 0) ⇒ Object

Returns Ast::DocString for string_without_triple_quotes.



104
105
106
# File 'lib/cucumber/runtime.rb', line 104

def doc_string(string_without_triple_quotes, content_type = '', _line_offset = 0)
  Core::Test::DocString.new(string_without_triple_quotes, content_type)
end

#dry_run?Boolean

Returns:

  • (Boolean)


86
87
88
# File 'lib/cucumber/runtime.rb', line 86

def dry_run?
  @configuration.dry_run?
end

#end_scenario(_scenario) ⇒ Object



98
99
100
# File 'lib/cucumber/runtime.rb', line 98

def end_scenario(_scenario)
  @support_code.fire_hook(:end_scenario)
end

#failure?Boolean

Returns:

  • (Boolean)


108
109
110
111
112
113
114
# File 'lib/cucumber/runtime.rb', line 108

def failure?
  if @configuration.wip?
    summary_report.test_cases.total_passed.positive?
  else
    !summary_report.ok?(strict: @configuration.strict) || !global_hooks_summary_report.ok?
  end
end

#features_pathsObject



82
83
84
# File 'lib/cucumber/runtime.rb', line 82

def features_paths
  @configuration.paths
end

#run!Object



67
68
69
70
71
72
73
74
75
76
77
78
79
80
# File 'lib/cucumber/runtime.rb', line 67

def run!
  @configuration.notify :envelope, Cucumber::Messages::Envelope.new(
    meta: MetaMessageBuilder.build_meta_message
  )

  load_step_definitions
  fire_install_plugin_hook
  create_formatters

  receiver = Test::Runner.new(@configuration.event_bus)
  compile features, receiver, filters, @configuration.event_bus
  fire_after_all_hook unless dry_run?
  @configuration.notify :test_run_finished, !failure?
end

#unmatched_step_definitionsObject



90
91
92
# File 'lib/cucumber/runtime.rb', line 90

def unmatched_step_definitions
  @support_code.unmatched_step_definitions
end