summaryrefslogtreecommitdiff
path: root/rubocop/cop/include_action_view_context.rb
blob: 14662a33e95f97f5d55fe8425f83427d83d95942 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# frozen_string_literal: true

require_relative '../spec_helpers'

module RuboCop
  module Cop
    # Cop that makes sure workers include `::Gitlab::ActionViewOutput::Context`, not `ActionView::Context`.
    class IncludeActionViewContext < RuboCop::Cop::Cop
      include SpecHelpers

      MSG = 'Include `::Gitlab::ActionViewOutput::Context`, not `ActionView::Context`, for Rails 5.'.freeze

      def_node_matcher :includes_action_view_context?, <<~PATTERN
        (send nil? :include (const (const nil? :ActionView) :Context))
      PATTERN

      def on_send(node)
        return if in_spec?(node)
        return unless includes_action_view_context?(node)

        add_offense(node.arguments.first, location: :expression)
      end

      def autocorrect(node)
        lambda do |corrector|
          corrector.replace(node.source_range, '::Gitlab::ActionViewOutput::Context')
        end
      end
    end
  end
end