-
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
If a Minitest class inherits from another class, it will also inherit its methods causing Minitest to run the parent’s tests methods twice. This PR detects when there are two tests classes, one inherits from the other, and both have tests methods. MinitestRubocop will add an offence to the Child class in such a case. Note that this cop only works if both classes are on the same file.
- Loading branch information
1 parent
a13b52e
commit c4d900e
Showing
5 changed files
with
199 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
# frozen_string_literal: true | ||
|
||
module RuboCop | ||
module Cop | ||
module Minitest | ||
# If a Minitest class inherits from another class, | ||
# it will also inherit its methods causing Minitest to run the parent's tests methods twice. | ||
# | ||
# This cop detects when there are two tests classes, one inherits from the other, and both have tests methods. | ||
# This cop will add an offence to the Child class in such a case. | ||
# | ||
# @example | ||
# # bad | ||
# class ParentTest < Minitest::Test | ||
# def test_parent # it will run this test twice. | ||
# end | ||
# end | ||
# | ||
# class ChildTest < ParentTest | ||
# def test_child | ||
# end | ||
# end | ||
# | ||
# | ||
# # good | ||
# class ParentTest < Minitest::Test | ||
# def test_parent | ||
# end | ||
# end | ||
# | ||
# class ChildTest < Minitest::Test | ||
# def test_child | ||
# end | ||
# end | ||
# | ||
# # good | ||
# class ParentTest < Minitest::Test | ||
# end | ||
# | ||
# class ChildTest | ||
# def test_child | ||
# end | ||
# | ||
# def test_parent | ||
# end | ||
# end | ||
# | ||
class DuplicatedTestRun < Base | ||
include MinitestExplorationHelpers | ||
|
||
MSG = 'Subclasses with test methods causes the parent\' tests to run them twice.' | ||
|
||
def on_class(class_node) | ||
return unless test_class?(class_node) | ||
|
||
return unless test_methods?(class_node) | ||
|
||
# If the class if a test method and has tests on it, | ||
# we look at the parent and see if it has tests too. | ||
|
||
parent_class = class_node.parent_class | ||
|
||
return unless parent_class_has_test_methods(class_node, parent_class) | ||
|
||
message = format(MSG) | ||
add_offense(class_node, message: message) | ||
end | ||
|
||
private | ||
|
||
def parent_class_has_test_methods(class_node, parent_class) | ||
parent_class_node = class_node.parent.each_child_node(:class).detect do |klass| | ||
klass.identifier == parent_class | ||
end | ||
|
||
return unless parent_class_node | ||
|
||
test_methods?(parent_class_node) | ||
end | ||
|
||
def test_methods?(class_node) | ||
test_cases(class_node).size.positive? | ||
end | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'test_helper' | ||
|
||
class DuplicatedTestRunTest < Minitest::Test | ||
def test_registers_offense_when_parent_and_child_have_tests_methods | ||
assert_offense(<<~RUBY) | ||
class ParentTest < Minitest::Test | ||
def test_parent | ||
end | ||
end | ||
class ChildTest < ParentTest | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Subclasses with test methods causes the parent' tests to run them twice. | ||
def test_child_asserts_twice | ||
assert_equal(1, 1) | ||
end | ||
end | ||
RUBY | ||
end | ||
|
||
def test_registers_offense_when_parent_and_children_have_tests_methods | ||
assert_offense(<<~RUBY) | ||
class ParentTest < Minitest::Test | ||
def test_parent | ||
end | ||
end | ||
class Child1Test < ParentTest | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Subclasses with test methods causes the parent' tests to run them twice. | ||
def test_parent | ||
end | ||
end | ||
class Child2Test < ParentTest | ||
end | ||
class Child3Test < ParentTest | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Subclasses with test methods causes the parent' tests to run them twice. | ||
def test_1_child_2_asserts_twice | ||
end | ||
def test_2_child_2_asserts_twice | ||
end | ||
def test_3_child_2_asserts_twice | ||
end | ||
end | ||
RUBY | ||
end | ||
|
||
def test_does_not_register_offense_if_the_parent_does_not_have_test_methods | ||
assert_no_offenses(<<~RUBY) | ||
class ParentTest < Minitest::Test | ||
end | ||
class ChildTest < ParentTest | ||
def test_child_asserts_twice | ||
assert_equal(1, 1) | ||
end | ||
end | ||
RUBY | ||
end | ||
|
||
def test_does_not_register_offense_if_the_child_does_not_have_test_methods | ||
assert_no_offenses(<<~RUBY) | ||
class ParentTest < Minitest::Test | ||
def test_child_asserts_twice | ||
assert_equal(1, 1) | ||
end | ||
end | ||
class ChildTest < ParentTest | ||
end | ||
RUBY | ||
end | ||
|
||
def test_does_not_register_offense_if_the_class_has_no_children | ||
assert_no_offenses(<<~RUBY) | ||
class ParentTest < Minitest::Test | ||
def test_child_asserts_twice | ||
assert_equal(1, 1) | ||
end | ||
end | ||
class ClassTwo < ParentTest | ||
end | ||
RUBY | ||
end | ||
|
||
def test_does_not_register_offense_if_the_class_is_not_a_test_class | ||
assert_no_offenses(<<~RUBY) | ||
class ParentTest < ExampleClass | ||
def test_child_asserts_twice | ||
assert_equal(1, 1) | ||
end | ||
end | ||
class ChildClass < ParentTest | ||
def test_child_asserts_twice | ||
assert_equal(1, 1) | ||
end | ||
end | ||
RUBY | ||
end | ||
end |