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

sidekiq_options_queue.rb « cop « rubocop - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 43b35ba0214c81c96559de2d83f849a755c7fa71 (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
require_relative '../spec_helpers'

module RuboCop
  module Cop
    # Cop that prevents manually setting a queue in Sidekiq workers.
    class SidekiqOptionsQueue < RuboCop::Cop::Cop
      include SpecHelpers

      MSG = 'Do not manually set a queue; `ApplicationWorker` sets one automatically.'.freeze

      def_node_matcher :sidekiq_options?, <<~PATTERN
        (send nil :sidekiq_options $...)
      PATTERN

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

        node.arguments.first.each_node(:pair) do |pair|
          key_name = pair.key.children[0]

          add_offense(pair, :expression) if key_name == :queue
        end
      end
    end
  end
end