Class: Gitlab::QA::Scenario::Test::Integration::ObjectStorage

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

Constant Summary collapse

TYPES =
%w[artifacts external_diffs lfs uploads packages dependency_proxy].freeze

Constants included from CLICommands

CLICommands::GIT_LFS_VERSION

Instance Method Summary collapse

Methods included from CLICommands

#git_lfs_install_commands

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

perform

Instance Method Details

#object_storage_config(minio) ⇒ Object



45
46
47
48
49
50
51
52
53
54
55
56
57
58
# File 'lib/gitlab/qa/scenario/test/integration/object_storage.rb', line 45

def object_storage_config(minio)
  TYPES.map do |object_type|
    <<~OMNIBUS
      gitlab_rails['#{object_type}_enabled'] = true;
      gitlab_rails['#{object_type}_storage_path'] = '/var/opt/gitlab/gitlab-rails/shared/#{object_type}';
      gitlab_rails['#{object_type}_object_store_enabled'] = true;
      gitlab_rails['#{object_type}_object_store_remote_directory'] = '#{object_type}-bucket';
      gitlab_rails['#{object_type}_object_store_background_upload'] = false;
      gitlab_rails['#{object_type}_object_store_direct_upload'] = true;
      gitlab_rails['#{object_type}_object_store_proxy_download'] = true;
      gitlab_rails['#{object_type}_object_store_connection'] = #{minio.to_config};
    OMNIBUS
  end.join("\n")
end

#perform(release, *rspec_args) ⇒ Object



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
# File 'lib/gitlab/qa/scenario/test/integration/object_storage.rb', line 13

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

    Component::Minio.perform do |minio|
      minio.network = 'test'

      TYPES.each do |bucket_name|
        minio.add_bucket("#{bucket_name}-bucket")
      end

      gitlab.omnibus_config = object_storage_config(minio)
      gitlab.exec_commands = git_lfs_install_commands

      minio.instance do
        gitlab.instance do
          puts 'Running object storage specs!'

          Component::Specs.perform do |specs|
            specs.suite = 'Test::Integration::ObjectStorage'
            specs.release = gitlab.release
            specs.network = gitlab.network
            specs.args = [gitlab.address, *rspec_args]
          end
        end
      end
    end
  end
end