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: e36e0b020c0fe551e3ef9ab1b39ff915b48c2149 (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 `Feature.enable/disable` methods instead of `Feature.get`. ' \
          'See doc/development/testing_guide/best_practices.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