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

selector_usage_spec.rb « qa « cop « rubocop « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b40c57f89916e08712f069a5a4f820e85b911dfb (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# frozen_string_literal: true

require 'fast_spec_helper'

require_relative '../../../../rubocop/cop/qa/selector_usage'

RSpec.describe RuboCop::Cop::QA::SelectorUsage do
  subject(:cop) { described_class.new }

  shared_examples 'non-qa file usage' do
    it 'reports an offense' do
      expect_offense(<<-RUBY)
        find('#{selector}').click
             #{'^' * (selector.size + 2)} Do not use `#{selector}` as this is reserved for the end-to-end specs. Use a different selector or a data-testid instead.
      RUBY
    end
  end

  context 'in a QA file' do
    before do
      allow(cop).to receive(:in_qa_file?).and_return(true)
    end

    it 'has no error' do
      expect_no_offenses(<<-RUBY)
        has_element?('[data-qa-selector="my_selector"]')
      RUBY
    end
  end

  context 'outside of QA' do
    before do
      allow(cop).to receive(:in_qa_file?).and_return(false)
      allow(cop).to receive(:in_spec?).and_return(true)
    end

    context 'data-qa-selector' do
      let(:selector) { '[data-qa-selector="my_selector"]' }

      it_behaves_like 'non-qa file usage'
    end

    context 'qa class' do
      let(:selector) { '.qa-selector' }

      it_behaves_like 'non-qa file usage'
    end
  end
end