Class: RSpec::Core::Bisect::Coordinator

Inherits:
Object
  • Object
show all
Defined in:
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/rspec-core-3.12.0/lib/rspec/core/bisect/coordinator.rb

Overview

The main entry point into the bisect logic. Coordinates among:

- Bisect::ShellCommand: Generates shell commands to run spec subsets
- Bisect::ExampleMinimizer: Contains the core bisect logic.
- A bisect runner: runs a set of examples and returns the results.
- A bisect formatter: provides progress updates to the user.

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(spec_runner, original_cli_args, formatter) ⇒ Coordinator

Returns a new instance of Coordinator.



20
21
22
23
24
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/rspec-core-3.12.0/lib/rspec/core/bisect/coordinator.rb', line 20

def initialize(spec_runner, original_cli_args, formatter)
  @spec_runner   = spec_runner
  @shell_command = ShellCommand.new(original_cli_args)
  @notifier      = Bisect::Notifier.new(formatter)
end

Class Method Details

.bisect_with(spec_runner, original_cli_args, formatter) ⇒ Object



16
17
18
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/rspec-core-3.12.0/lib/rspec/core/bisect/coordinator.rb', line 16

def self.bisect_with(spec_runner, original_cli_args, formatter)
  new(spec_runner, original_cli_args, formatter).bisect
end

Instance Method Details

#bisectObject



26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/rspec-core-3.12.0/lib/rspec/core/bisect/coordinator.rb', line 26

def bisect
  repro = start_bisect_runner do |runner|
    minimizer = ExampleMinimizer.new(@shell_command, runner, @notifier)

    gracefully_abort_on_sigint(minimizer)
    minimizer.find_minimal_repro
    minimizer.repro_command_for_currently_needed_ids
  end

  @notifier.publish(:bisect_repro_command, :repro => repro)

  true
rescue BisectFailedError => e
  @notifier.publish(:bisect_failed, :failure_explanation => e.message)
  false
ensure
  @notifier.publish(:close)
end