Class: Gitlab::QA::Scenario::Test::Integration::Integrations

Inherits:
Gitlab::QA::Scenario::Template show all
Defined in:
lib/gitlab/qa/scenario/test/integration/integrations.rb

Instance Method Summary collapse

Methods inherited from Gitlab::QA::Scenario::Template

perform

Instance Method Details

#perform(release, *rspec_args) ⇒ Object



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/gitlab/qa/scenario/test/integration/integrations.rb', line 9

def perform(release, *rspec_args)
  Component::Gitlab.perform do |gitlab|
    gitlab.release = QA::Release.new(release)
    gitlab.network = 'test'
    gitlab.name = 'gitlab-integrations'
    gitlab.instance do
      Component::Specs.perform do |specs|
        rspec_args << '--' unless rspec_args.include?('--')
        rspec_args << %w[--tag integrations]
        specs.suite = 'Test::Instance::All'
        specs.hostname = "qa-e2e-specs.#{gitlab.network}"
        specs.release = gitlab.release
        specs.network = gitlab.network
        specs.args = [gitlab.address, *rspec_args]
      end
    end
  end
end