7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# File 'lib/gitlab/qa/scenario/test/integration/mattermost.rb', line 7
def perform(release, *rspec_args)
Component::Gitlab.perform do |gitlab|
gitlab.release = release
gitlab.network = 'test'
mattermost_hostname = "mattermost.#{gitlab.network}"
mattermost_external_url = "http://#{mattermost_hostname}"
gitlab.add_network_alias(mattermost_hostname)
gitlab.omnibus_configuration << <<~OMNIBUS
mattermost_external_url '#{mattermost_external_url}';
OMNIBUS
gitlab.instance do
Component::Specs.perform do |specs|
specs.suite = 'Test::Integration::Mattermost'
specs.release = gitlab.release
specs.network = gitlab.network
specs.args = [gitlab.address, mattermost_external_url, *rspec_args]
end
end
end
end
|