-
-
Notifications
You must be signed in to change notification settings - Fork 263
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new Rails/ActionControllerTesting cop
Add controller testing cop to discourage use of ActionController::TestCase. ActionDispatch::IntegrationTest should be used instead to test controllers.
- Loading branch information
Showing
5 changed files
with
111 additions
and
0 deletions.
There are no files selected for viewing
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 @@ | ||
* [#638](https://github.com/rubocop/rubocop-rails/pull/638): Add new `Rails/ActionControllerTesting` cop. ([@gmcgibbon][]) |
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,47 @@ | ||
# frozen_string_literal: true | ||
|
||
module RuboCop | ||
module Cop | ||
module Rails | ||
# Using ActionController::TestCase is discouraged and should be replaced by | ||
# ActionDispatch::IntegrationTest. Controller tests are too close to the | ||
# internals of a controller whereas integration tests mimic the browser/user. | ||
# | ||
# @safety | ||
# This cop's autocorrection is unsafe because the API of each test case class is different. | ||
# Make sure to update each test of your controller test cases after changing the superclass. | ||
# | ||
# @example | ||
# # bad | ||
# class MyControllerTest < ActionController::TestCase | ||
# end | ||
# | ||
# # good | ||
# class MyControllerTest < ActionDispatch::IntegrationTest | ||
# end | ||
# | ||
class ActionControllerTesting < Base | ||
extend AutoCorrector | ||
extend TargetRailsVersion | ||
|
||
MSG = 'Use `ActionDispatch::IntegrationTest` instead.' | ||
|
||
minimum_target_rails_version 5.0 | ||
|
||
def_node_matcher :controller_test_case?, <<~PATTERN | ||
(class | ||
(const nil? _) | ||
(const (const _ :ActionController) :TestCase) nil?) | ||
PATTERN | ||
|
||
def on_class(node) | ||
return unless controller_test_case?(node) | ||
|
||
add_offense(node.parent_class) do |corrector| | ||
corrector.replace(node.parent_class, 'ActionDispatch::IntegrationTest') | ||
end | ||
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,52 @@ | ||
# frozen_string_literal: true | ||
|
||
RSpec.describe RuboCop::Cop::Rails::ActionControllerTesting, :config do | ||
context 'Rails 4.2', :rails42, :config do | ||
it 'does not add offense when extending ActionController::TestCase' do | ||
expect_no_offenses(<<~RUBY) | ||
class MyControllerTest < ActionController::TestCase | ||
end | ||
RUBY | ||
end | ||
end | ||
|
||
it 'adds offense when extending ActionController::TestCase' do | ||
expect_offense(<<~RUBY) | ||
class MyControllerTest < ActionController::TestCase | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^ Use `ActionDispatch::IntegrationTest` instead. | ||
end | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
class MyControllerTest < ActionDispatch::IntegrationTest | ||
end | ||
RUBY | ||
end | ||
|
||
it 'adds offense when extending ::ActionController::TestCase' do | ||
expect_offense(<<~RUBY) | ||
class MyControllerTest < ::ActionController::TestCase | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Use `ActionDispatch::IntegrationTest` instead. | ||
end | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
class MyControllerTest < ActionDispatch::IntegrationTest | ||
end | ||
RUBY | ||
end | ||
|
||
it 'does not add offense when extending ActionDispatch::IntegrationTest' do | ||
expect_no_offenses(<<~RUBY) | ||
class MyControllerTest < ActionDispatch::IntegrationTest | ||
end | ||
RUBY | ||
end | ||
|
||
it 'does not add offense when extending custom superclass' do | ||
expect_no_offenses(<<~RUBY) | ||
class MyControllerTest < SuperControllerTest | ||
end | ||
RUBY | ||
end | ||
end |