Skip to content

Commit 06225b5

Browse files
committed
Only run our minitest plugin code if SimpleCov is indeed defined
* Fixes #877 * not quire sure whether we should wrap the entire thing in if undefined?(..) or not but since the file has all the right structure otherwise I'm more worried about minitest being weirded out that it doesn't find what it expects than I am of letting it execute an empty method * also yes the version workaround is maybe a bit weird, however I wanted our test suite to reproduce the exact failure case because otherwise it'd be to easy to just implement a respond_to? check which would have everything passing but would fail in real life.
1 parent dfada04 commit 06225b5

File tree

3 files changed

+41
-9
lines changed

3 files changed

+41
-9
lines changed

features/minitest_basic.feature

+22-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1+
@minitest
2+
13
Feature:
4+
"Working with minitest"
25

36
Background:
47
Given I'm working on the project "faked_project"
@@ -15,12 +18,12 @@ Feature:
1518
When I open the coverage report generated with `bundle exec rake minitest`
1619
Then I should see the groups:
1720
| name | coverage | files |
18-
| All Files | 87.5% | 2 |
21+
| All Files | 87.5% | 2 |
1922

2023
And I should see the source files:
2124
| name | coverage |
22-
| lib/faked_project/some_class.rb | 80.00 % |
23-
| minitest/some_test.rb | 100.00 % |
25+
| lib/faked_project/some_class.rb | 80.00 % |
26+
| minitest/some_test.rb | 100.00 % |
2427

2528
Scenario:
2629
Given SimpleCov for Minitest is configured with:
@@ -36,4 +39,19 @@ Feature:
3639

3740
And I should see the source files:
3841
| name | coverage |
39-
| lib/faked_project/some_class.rb | 80.00 % |
42+
| lib/faked_project/some_class.rb | 80.00 % |
43+
44+
Scenario: Not having simplecov loaded/enabled it does not crash #877
45+
Given SimpleCov for Minitest is configured with:
46+
"""
47+
# nothing
48+
"""
49+
# What's this? Path requirements in the Gemfile evaluate the gemspec,
50+
# which normally loads the version, which defined SimpleCov which leads
51+
# to a different failure. This works around that issue.
52+
And I set the environment variables to:
53+
| variable | value |
54+
| SIMPLECOV_NO_REQUIRE_VERSION | 100.0.0 |
55+
56+
When I successfully run `bundle exec rake minitest`
57+
Then no coverage report should have been generated

lib/minitest/simplecov_plugin.rb

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@
44
# https://github.com/seattlerb/minitest#writing-extensions
55
module Minitest
66
def self.plugin_simplecov_init(_options)
7-
SimpleCov.external_at_exit = true
7+
if defined?(SimpleCov)
8+
SimpleCov.external_at_exit = true
89

9-
Minitest.after_run do
10-
SimpleCov.at_exit_behavior if SimpleCov.respond_to?(:at_exit_behavior)
10+
Minitest.after_run do
11+
SimpleCov.at_exit_behavior
12+
end
1113
end
1214
end
1315
end

simplecov.gemspec

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
11
# frozen_string_literal: true
22

33
$LOAD_PATH.push File.expand_path("lib", __dir__)
4-
require "simplecov/version"
4+
5+
# Why oh why oh what is this?
6+
# See the cuke that is setting this.
7+
# Basically to really reproduce #877 we needed a gemspec that doesn't
8+
# (indirectly) define a SimpleCov module... so this is the workaround.
9+
# No one ever but hat test should set that environment variable. Please.
10+
version =
11+
if ENV["SIMPLECOV_NO_REQUIRE_VERSION"]
12+
ENV["SIMPLECOV_NO_REQUIRE_VERSION"]
13+
else
14+
require "simplecov/version"
15+
SimpleCov::VERSION
16+
end
517

618
Gem::Specification.new do |gem|
719
gem.name = "simplecov"
8-
gem.version = SimpleCov::VERSION
20+
gem.version = version
921
gem.platform = Gem::Platform::RUBY
1022
gem.authors = ["Christoph Olszowka"]
1123
gem.email = ["christoph at olszowka de"]

0 commit comments

Comments
 (0)