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

Attributes included from UserInterface

#visitor

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.



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

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.



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

def configuration
  @configuration
end

#resultsObject (readonly)

Returns the value of attribute results.



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

def results
  @results
end

#support_codeObject (readonly)

Returns the value of attribute support_code.



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

def support_code
  @support_code
end

Instance Method Details

#begin_scenario(test_case) ⇒ Object



96
97
98
# File 'lib/cucumber/runtime.rb', line 96

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



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

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.



106
107
108
# File 'lib/cucumber/runtime.rb', line 106

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)


88
89
90
# File 'lib/cucumber/runtime.rb', line 88

def dry_run?
  @configuration.dry_run?
end

#end_scenario(_scenario) ⇒ Object



100
101
102
# File 'lib/cucumber/runtime.rb', line 100

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

#failure?Boolean

Returns:

  • (Boolean)


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

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



84
85
86
# File 'lib/cucumber/runtime.rb', line 84

def features_paths
  @configuration.paths
end

#run!Object



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

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

  load_step_definitions
  fire_install_plugin_hook
  # TODO: can we remove this state?
  self.visitor = report

  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



92
93
94
# File 'lib/cucumber/runtime.rb', line 92

def unmatched_step_definitions
  @support_code.unmatched_step_definitions
end