Sha256: de83b4618cc93899d99dd7adbcb80601c70cd772985da8f1b709105ee92d9bed

Contents?: true

Size: 1.45 KB

Versions: 15

Compression:

Stored size: 1.45 KB

Contents

# 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 ActionControllerTestCase < Base
        extend AutoCorrector
        extend TargetRailsVersion

        MSG = 'Use `ActionDispatch::IntegrationTest` instead.'

        minimum_target_rails_version 5.0

        def_node_matcher :action_controller_test_case?, <<~PATTERN
          (class
            (const nil? _)
            (const (const {nil? cbase} :ActionController) :TestCase) nil?)
        PATTERN

        def on_class(node)
          return unless action_controller_test_case?(node)

          add_offense(node.parent_class) do |corrector|
            corrector.replace(node.parent_class, 'ActionDispatch::IntegrationTest')
          end
        end
      end
    end
  end
end

Version data entries

15 entries across 13 versions & 3 rubygems

Version Path
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/rubocop-rails-2.15.2/lib/rubocop/cop/rails/action_controller_test_case.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/rubocop-rails-2.15.2/lib/rubocop/cop/rails/action_controller_test_case.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/rubocop-rails-2.15.2/lib/rubocop/cop/rails/action_controller_test_case.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-rails-2.14.2/lib/rubocop/cop/rails/action_controller_test_case.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-rails-2.15.2/lib/rubocop/cop/rails/action_controller_test_case.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-rails-2.14.2/lib/rubocop/cop/rails/action_controller_test_case.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-rails-2.15.2/lib/rubocop/cop/rails/action_controller_test_case.rb
rubocop-rails-2.16.1 lib/rubocop/cop/rails/action_controller_test_case.rb
rubocop-rails-2.16.0 lib/rubocop/cop/rails/action_controller_test_case.rb
rubocop-rails-2.15.2 lib/rubocop/cop/rails/action_controller_test_case.rb
rubocop-rails-2.15.1 lib/rubocop/cop/rails/action_controller_test_case.rb
rubocop-rails-2.15.0 lib/rubocop/cop/rails/action_controller_test_case.rb
rubocop-rails-2.14.2 lib/rubocop/cop/rails/action_controller_test_case.rb
rubocop-rails-2.14.1 lib/rubocop/cop/rails/action_controller_test_case.rb
rubocop-rails-2.14.0 lib/rubocop/cop/rails/action_controller_test_case.rb