summaryrefslogtreecommitdiff
path: root/qa/qa/scenario/template.rb
blob: a87d925ce3297cb568ff38fea5d62c873943645b (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
module QA
  module Scenario
    class Template
      class << self
        def perform(*args)
          new.tap do |scenario|
            yield scenario if block_given?
            break scenario.perform(*args)
          end
        end

        def tags(*tags)
          @tags = tags
        end

        def focus
          @tags.to_a
        end
      end

      def perform(address, *rspec_options)
        Runtime::Scenario.define(:gitlab_address, address)

        ##
        # Perform before hooks, which are different for CE and EE
        #
        Runtime::Release.perform_before_hooks

        Specs::Runner.perform do |specs|
          specs.tty = true
          specs.options =
            if rspec_options.any?
              rspec_options
            else
              ['--tag', self.class.focus.join(','), '--', ::File.expand_path('../specs/features', __dir__)]
            end
        end
      end
    end
  end
end