summaryrefslogtreecommitdiff
path: root/qa/qa/scenario/test/sanity/selectors.rb
blob: cff320cb7512ede59ac9129211d94ed44e58b7b8 (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
50
51
52
53
54
module QA
  module Scenario
    module Test
      module Sanity
        class Selectors < Scenario::Template
          include Scenario::Bootable

          PAGES = [QA::Page].freeze

          def perform(*)
            validators = PAGES.map do |pages|
              Page::Validator.new(pages)
            end

            validators.map(&:errors).flatten.tap do |errors|
              break if errors.none?

              warn <<~EOS
                GitLab QA sanity selectors validation test detected problems
                with your merge request!

                The purpose of this test is to make sure that GitLab QA tests,
                that are entirely black-box, click-driven scenarios, do match
                pages structure / layout in GitLab CE / EE repositories.

                It looks like you have changed views / pages / selectors, and
                these are now out of sync with what we have defined in `qa/`
                directory.

                Please update the code in `qa/` directory to make it match
                current changes in this merge request.

                For more help see documentation in `qa/page/README.md` file or
                ask for help on #quality channel on Slack (GitLab Team only).

                If you are not a Team Member, and you still need help to
                contribute, please open an issue in GitLab QA issue tracker.

                Please see errors described below.

              EOS

              warn errors
            end

            validators.each(&:validate!)

            puts 'Views / selectors validation passed!'
          end
        end
      end
    end
  end
end