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

selectors_spec.rb « sanity « test « scenario « spec « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ecc8e0e0f2c1f4279dc7bd96a5f57b933523b276 (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
# frozen_string_literal: true

RSpec.describe QA::Scenario::Test::Sanity::Selectors do
  let(:validator) { spy('validator') }

  before do
    stub_const('QA::Page::Validator', validator)

    allow(QA::Runtime::Logger).to receive(:warn)
    allow(QA::Runtime::Logger).to receive(:info)
  end

  context 'when there are errors detected' do
    let(:error) { 'some error' }

    before do
      allow(validator).to receive(:errors).and_return([error])
    end

    it 'outputs information about errors', :aggregate_failures do
      described_class.perform

      expect(QA::Runtime::Logger).to have_received(:warn)
        .with(/GitLab QA sanity selectors validation test detected problems/)

      expect(QA::Runtime::Logger).to have_received(:warn)
        .with(/#{error}/)
    end
  end

  context 'when there are no errors detected' do
    before do
      allow(validator).to receive(:errors).and_return([])
    end

    it 'processes pages module' do
      described_class.perform

      expect(validator).to have_received(:new).with(QA::Page)
    end

    it 'triggers validation' do
      described_class.perform

      expect(validator).to have_received(:validate!).at_least(:once)
    end
  end
end