Welcome to mirror list, hosted at ThFree Co, Russian Federation.

avoid_feature_get.rb « gitlab « cop « rubocop - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1bce89268d92da95b334dca15843dc91b2c311a6 (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
# frozen_string_literal: true

module RuboCop
  module Cop
    module Gitlab
      # Cop that blacklists the use of `Feature.get`.
      class AvoidFeatureGet < RuboCop::Cop::Cop
        MSG = 'Use `stub_feature_flags` method instead of `Feature.get`. ' \
          'See doc/development/feature_flags/index.md#feature-flags-in-tests for more information.'

        def_node_matcher :feature_get?, <<~PATTERN
          (send (const nil? :Feature) :get ...)
        PATTERN

        def_node_matcher :global_feature_get?, <<~PATTERN
          (send (const (cbase) :Feature) :get ...)
        PATTERN

        def on_send(node)
          return unless feature_get?(node) || global_feature_get?(node)

          add_offense(node, location: :selector)
        end
      end
    end
  end
end