Class: Gitlab::QA::Scenario::Test::Integration::CloudActivation

Inherits:
Gitlab::QA::Scenario::Template show all
Defined in:
lib/gitlab/qa/scenario/test/integration/cloud_activation.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
27
28
29
30
# File 'lib/gitlab/qa/scenario/test/integration/cloud_activation.rb', line 9

def perform(release, *rspec_args)
  Component::Gitlab.perform do |gitlab|
    gitlab.release = release
    gitlab.network = 'test'

    gitlab.omnibus_configuration << "      gitlab_rails['env'] = { 'GITLAB_LICENSE_MODE' => 'test', 'CUSTOMER_PORTAL_URL' => 'https://customers.staging.gitlab.com' }\n    OMNIBUS\n\n    gitlab.instance do\n      rspec_args << \"--\" unless rspec_args.include?('--')\n      rspec_args << %w[--tag cloud_activation]\n\n      Component::Specs.perform do |specs|\n        specs.suite = 'Test::Instance::All'\n        specs.release = gitlab.release\n        specs.network = gitlab.network\n        specs.args = [gitlab.address, *rspec_args]\n      end\n    end\n  end\nend\n"