Class: Gitlab::QA::Scenario::Test::Integration::SSHTunnel

Inherits:
Gitlab::QA::Scenario::Template show all
Defined in:
lib/gitlab/qa/scenario/test/integration/ssh_tunnel.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'lib/gitlab/qa/scenario/test/integration/ssh_tunnel.rb', line 9

def perform(release, *rspec_args)
  Runtime::Env.override_default_password!
  Runtime::Env.require_ssh_tunnel!

  Component::Gitlab.perform do |gitlab|
    gitlab.release = release
    gitlab.network = 'test'

    Component::InternetTunnel.perform do |tunnel_gitlab|
      Component::InternetTunnel.perform do |tunnel_registry|
        tunnel_gitlab.gitlab_hostname = gitlab.hostname
        tunnel_gitlab.network = 'test'
        tunnel_registry.gitlab_hostname = gitlab.hostname
        tunnel_registry.network = 'test'

        gitlab.omnibus_configuration << "          external_url '\#{tunnel_gitlab.url}';\n          nginx['listen_port'] = 80;\n          nginx['listen_https'] = false;\n          gitlab_rails['initial_root_password'] = '\#{Runtime::Env.require_initial_password!}';\n\n          registry_external_url '\#{tunnel_registry.url}';\n          registry_nginx['listen_port'] = 80;\n          registry_nginx['listen_https'] = false;\n        OMNIBUS\n\n        tunnel_gitlab.instance do\n          tunnel_registry.instance do\n            gitlab.instance do\n              Component::Specs.perform do |specs|\n                specs.suite = 'Test::Integration::SSHTunnel'\n                specs.release = gitlab.release\n                specs.network = gitlab.network\n                specs.args = [tunnel_gitlab.url, *rspec_args]\n              end\n            end\n          end\n        end\n      end\n    end\n  end\nend\n"