File: selector_usage.rb

package info (click to toggle)
gitlab 17.6.5-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 629,368 kB
  • sloc: ruby: 1,915,304; javascript: 557,307; sql: 60,639; xml: 6,509; sh: 4,567; makefile: 1,239; python: 406
file content (39 lines) | stat: -rw-r--r-- 1,185 bytes parent folder | download
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
32
33
34
35
36
37
38
39
# frozen_string_literal: true

require_relative '../../qa_helpers'
require_relative '../../code_reuse_helpers'

module RuboCop
  module Cop
    module QA
      # This cop checks for the usage of data-qa-selectors or .qa-* classes in non-QA files
      #
      # @example
      #   # bad
      #   find('[data-qa-selector="the_selector"]')
      #   find('.qa-selector')
      #
      #   # good
      #   find('[data-testid="the_selector"]')
      #   find('#selector')
      class SelectorUsage < RuboCop::Cop::Base
        include QAHelpers
        include CodeReuseHelpers

        SELECTORS = /\.qa-\w+|data-qa-\w+/
        MESSAGE = %(Do not use `%s` as this is reserved for the end-to-end specs. Use a different selector or a data-testid instead.)

        def on_str(node)
          return if in_qa_file?(node)
          return unless in_spec?(node)

          add_offense(node, message: MESSAGE % node.value) if SELECTORS.match?(node.value)
        rescue StandardError
          # catch all errors and ignore them.
          # without this catch-all rescue, rubocop will fail
          # because of non-UTF-8 characters in some Strings
        end
      end
    end
  end
end