Skip to content

Commit

Permalink
Merge pull request #1443 from mbj/change/test-runner-fail-fast-determ…
Browse files Browse the repository at this point in the history
…inism

Change to test runner fail fast determinism
  • Loading branch information
mbj committed May 11, 2024
2 parents c65d5af + 1f45d81 commit dae46ad
Show file tree
Hide file tree
Showing 28 changed files with 253 additions and 111 deletions.
13 changes: 13 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# v0.12.1 2024-05-11

* [#1443](https://github.com/mbj/mutant/pull/1443)

Change mutants test runner to always report in test definition order deterministically.
Before results where recorded in order of arrival, which could result a fast test that started late to
be reported before a slow test that started early. Basically it makes parallel test execution reporting
deterministic.

Change the behavior of reporting test errors on fail fast to only display the fist test that failed.
Parallel test execution can result in one or more tests failing before the execution engine has time to
adhere to the fail fast setting.

# v0.12.0 2024-04-22

Drop the license gem, entirely. This reduces DRM in mutants code base to the absolute minimum.
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
mutant (0.12.0)
mutant (0.12.1)
diff-lcs (~> 1.3)
parser (~> 3.3.0)
regexp_parser (~> 2.9.0)
Expand Down
7 changes: 4 additions & 3 deletions lib/mutant/integration/minitest.rb
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,10 @@ def call(tests)
reporter.report

Result::Test.new(
output: '',
passed: reporter.passed?,
runtime: timer.now - start
job_index: nil,
output: '',
passed: reporter.passed?,
runtime: timer.now - start
)
end

Expand Down
7 changes: 4 additions & 3 deletions lib/mutant/integration/null.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ def all_tests
# @return [Result::Test]
def call(_tests)
Result::Test.new(
output: '',
passed: true,
runtime: 0.0
job_index: nil,
output: '',
passed: true,
runtime: 0.0
)
end

Expand Down
8 changes: 5 additions & 3 deletions lib/mutant/integration/rspec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,12 @@ def call(tests)
start = timer.now
passed = @runner.run_specs(@rspec_world.ordered_example_groups).equal?(EXIT_SUCCESS)
@runner.configuration.reset_reporter

Result::Test.new(
output: '',
passed: passed,
runtime: timer.now - start
job_index: nil,
output: '',
passed: passed,
runtime: timer.now - start
)
end
# rubocop:enable Metrics/AbcSize
Expand Down
1 change: 1 addition & 0 deletions lib/mutant/matcher.rb
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,6 @@ def self.ignore_subject?(config, subject)
expression.prefix?(subject.expression)
end
end
private_class_method :ignore_subject?
end # Matcher
end # Mutant
23 changes: 22 additions & 1 deletion lib/mutant/reporter/cli/printer/test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class EnvResult < self
#
# @return [undefined]
def run
visit_collection(Result, object.failed_test_results)
visit_failed
visit(Env, object.env)
FORMATS.each do |report, format, value|
__send__(report, format, __send__(value))
Expand All @@ -77,6 +77,27 @@ def run

private

def visit_failed
failed = object.failed_test_results

if object.env.config.fail_fast
visit_failed_tests(failed.take(1))
visit_other_failed(failed.drop(1))
else
visit_failed_tests(failed)
end
end

def visit_other_failed(other)
return if other.empty?

puts('Other failed tests (report suppressed from fail fast): %d' % other.length)
end

def visit_failed_tests(failed)
visit_collection(Result, failed)
end

def efficiency_percent
(testtime / runtime) * 100
end
Expand Down
9 changes: 5 additions & 4 deletions lib/mutant/result.rb
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def amount_tests_success

# Test result
class Test
include Anima.new(:passed, :runtime, :output)
include Anima.new(:job_index, :passed, :runtime, :output)

alias_method :success?, :passed

Expand All @@ -170,9 +170,10 @@ class VoidValue < self
# @return [undefined]
def initialize
super(
output: '',
passed: false,
runtime: 0.0
job_index: nil,
output: '',
passed: false,
runtime: 0.0
)
end
end # VoidValue
Expand Down
8 changes: 6 additions & 2 deletions lib/mutant/test/runner/sink.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def status
Result::TestEnv.new(
env: env,
runtime: env.world.timer.now - @start,
test_results: @test_results
test_results: @test_results.sort_by!(&:job_index)
)
end

Expand All @@ -42,7 +42,11 @@ def response(response)
fail response.error
end

@test_results << response.result.with(output: response.log)
@test_results << response.result.with(
job_index: response.job.index,
output: response.log
)

self
end
end # Sink
Expand Down
2 changes: 1 addition & 1 deletion lib/mutant/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

module Mutant
# Current mutant version
VERSION = '0.12.0'
VERSION = '0.12.1'
end # Mutant
14 changes: 8 additions & 6 deletions spec/support/shared_context.rb
Original file line number Diff line number Diff line change
Expand Up @@ -230,17 +230,19 @@ def setup_shared_context

let(:mutation_a_test_result) do
Mutant::Result::Test.new(
output: '',
passed: false,
runtime: 1.0
job_index: 0,
output: '',
passed: false,
runtime: 1.0
)
end

let(:mutation_b_test_result) do
Mutant::Result::Test.new(
output: '',
passed: false,
runtime: 1.0
job_index: 1,
output: '',
passed: false,
runtime: 1.0
)
end

Expand Down
7 changes: 4 additions & 3 deletions spec/unit/mutant/env_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,10 @@ def apply

let(:test_result) do
Mutant::Result::Test.new(
passed: true,
runtime: 0.1,
output: ''
job_index: nil,
output: '',
passed: true,
runtime: 0.1
)
end

Expand Down
14 changes: 8 additions & 6 deletions spec/unit/mutant/integration/rspec_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -336,9 +336,10 @@ def apply
it 'should return failed result' do
expect(subject).to eql(
Mutant::Result::Test.new(
output: '',
passed: false,
runtime: 0.0
job_index: nil,
output: '',
passed: false,
runtime: 0.0
)
)
end
Expand All @@ -352,9 +353,10 @@ def apply
it 'should return passed result' do
expect(subject).to eql(
Mutant::Result::Test.new(
output: '',
passed: true,
runtime: 0.0
job_index: nil,
output: '',
passed: true,
runtime: 0.0
)
)
end
Expand Down
7 changes: 4 additions & 3 deletions spec/unit/mutant/integration_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,10 @@ def apply
it 'returns test result' do
should eql(
Mutant::Result::Test.new(
output: '',
passed: true,
runtime: 0.0
job_index: nil,
output: '',
passed: true,
runtime: 0.0
)
)
end
Expand Down
107 changes: 87 additions & 20 deletions spec/unit/mutant/reporter/cli/printer/test/env_result_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,34 +13,101 @@

let(:test_result_a) do
Mutant::Result::Test.new(
output: '<test-output>',
passed: false,
runtime: 0.1
job_index: 0,
output: '<test-output-a>',
passed: false,
runtime: 0.1
)
end

let(:test_result_b) do
Mutant::Result::Test.new(
output: '<test-output>',
passed: true,
runtime: 0.2
job_index: 1,
output: '<test-output-b>',
passed: true,
runtime: 0.2
)
end

describe '.call' do
it_reports <<~'STR'
<test-output>
Test environment:
Fail-Fast: false
Integration: null
Jobs: auto
Tests: 2
Test-Results: 2
Test-Failed: 1
Test-Success: 1
Runtime: 0.80s
Testtime: 0.30s
Efficiency: 37.50%
STR
context 'single test failure' do
context 'without fail fast' do
it_reports <<~'STR'
<test-output-a>
Test environment:
Fail-Fast: false
Integration: null
Jobs: auto
Tests: 2
Test-Results: 2
Test-Failed: 1
Test-Success: 1
Runtime: 0.80s
Testtime: 0.30s
Efficiency: 37.50%
STR
end

context 'with fail fast' do
let(:config) { super().with(fail_fast: true) }

it_reports <<~'STR'
<test-output-a>
Test environment:
Fail-Fast: true
Integration: null
Jobs: auto
Tests: 2
Test-Results: 2
Test-Failed: 1
Test-Success: 1
Runtime: 0.80s
Testtime: 0.30s
Efficiency: 37.50%
STR
end
end

context 'with multiple test failures' do
let(:test_result_b) { super().with(passed: false) }

context 'without fail fast' do
it_reports <<~'STR'
<test-output-a>
<test-output-b>
Test environment:
Fail-Fast: false
Integration: null
Jobs: auto
Tests: 2
Test-Results: 2
Test-Failed: 2
Test-Success: 0
Runtime: 0.80s
Testtime: 0.30s
Efficiency: 37.50%
STR
end

context 'with fail fast' do
let(:config) { super().with(fail_fast: true) }

it_reports <<~'STR'
<test-output-a>
Other failed tests (report suppressed from fail fast): 1
Test environment:
Fail-Fast: true
Integration: null
Jobs: auto
Tests: 2
Test-Results: 2
Test-Failed: 2
Test-Success: 0
Runtime: 0.80s
Testtime: 0.30s
Efficiency: 37.50%
STR
end
end
end
end
7 changes: 4 additions & 3 deletions spec/unit/mutant/reporter/cli/printer/test/result_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@

let(:reportable) do
Mutant::Result::Test.new(
output: '<test-output>',
passed: false,
runtime: 0.1
job_index: 0,
output: '<test-output>',
passed: false,
runtime: 0.1
)
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@
let(:test_results) do
[
Mutant::Result::Test.new(
output: '',
passed: false,
runtime: 0.5
job_index: 0,
output: '',
passed: false,
runtime: 0.5
)
]
end
Expand Down

0 comments on commit dae46ad

Please sign in to comment.