summaryrefslogtreecommitdiff
path: root/qa/qa/specs/features/browser_ui/5_package/container_registry/container_registry_omnibus_spec.rb
blob: f570ad335fe5c42da422d58892d32f8380a68f25 (plain)
1
2
3
4
5
6
7
8
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
# frozen_string_literal: true

module QA
  RSpec.describe 'Package', :orchestrated, :skip_live_env do
    describe 'Self-managed Container Registry' do
      include Support::Helpers::MaskToken

      let(:project) do
        Resource::Project.fabricate_via_api! do |project|
          project.name = 'project-with-registry'
          project.template_name = 'express'
          project.visibility = :private
        end
      end

      let(:project_deploy_token) do
        Resource::ProjectDeployToken.fabricate_via_api! do |deploy_token|
          deploy_token.name = 'registry-deploy-token'
          deploy_token.project = project
          deploy_token.scopes = %w[
            read_repository
            read_package_registry
            write_package_registry
            read_registry
            write_registry
          ]
        end
      end

      let!(:runner) do
        Resource::Runner.fabricate! do |runner|
          runner.name = "qa-runner-#{Time.now.to_i}"
          runner.tags = ["runner-for-#{project.name}"]
          runner.executor = :docker
          runner.project = project
        end
      end

      let(:personal_access_token) { Runtime::Env.personal_access_token }

      before do
        Flow::Login.sign_in
        project.visit!
      end

      after do
        runner.remove_via_api!
        project.remove_via_api!
      end

      context "when tls is disabled" do
        where do
          {
            'using docker:18.09.9 and a personal access token' => {
              docker_client_version: 'docker:18.09.9',
              authentication_token_type: :personal_access_token,
              token_name: 'Personal Access Token',
              testcase: 'https://gitlab.com/gitlab-org/gitlab/-/quality/test_cases/348499'
            },
            'using docker:18.09.9 and a project deploy token' => {
              docker_client_version: 'docker:18.09.9',
              authentication_token_type: :project_deploy_token,
              token_name: 'Deploy Token',
              testcase: 'https://gitlab.com/gitlab-org/gitlab/-/quality/test_cases/348852'
            },
            'using docker:18.09.9 and a ci job token' => {
              docker_client_version: 'docker:18.09.9',
              authentication_token_type: :ci_job_token,
              token_name: 'Job Token',
              testcase: 'https://gitlab.com/gitlab-org/gitlab/-/quality/test_cases/348765'
            },
            'using docker:19.03.12 and a personal access token' => {
              docker_client_version: 'docker:19.03.12',
              authentication_token_type: :personal_access_token,
              token_name: 'Personal Access Token',
              testcase: 'https://gitlab.com/gitlab-org/gitlab/-/quality/test_cases/348507'
            },
            'using docker:19.03.12 and a project deploy token' => {
              docker_client_version: 'docker:19.03.12',
              authentication_token_type: :project_deploy_token,
              token_name: 'Deploy Token',
              testcase: 'https://gitlab.com/gitlab-org/gitlab/-/quality/test_cases/348859'
            },
            'using docker:19.03.12 and a ci job token' => {
              docker_client_version: 'docker:19.03.12',
              authentication_token_type: :ci_job_token,
              token_name: 'Job Token',
              testcase: 'https://gitlab.com/gitlab-org/gitlab/-/quality/test_cases/348654'
            },
            'using docker:20.10 and a personal access token' => {
              docker_client_version: 'docker:20.10',
              authentication_token_type: :personal_access_token,
              token_name: 'Personal Access Token',
              testcase: 'https://gitlab.com/gitlab-org/gitlab/-/quality/test_cases/348754'
            },
            'using docker:20.10 and a project deploy token' => {
              docker_client_version: 'docker:20.10',
              authentication_token_type: :project_deploy_token,
              token_name: 'Deploy Token',
              testcase: 'https://gitlab.com/gitlab-org/gitlab/-/quality/test_cases/348856'
            },
            'using docker:20.10 and a ci job token' => {
              docker_client_version: 'docker:20.10',
              authentication_token_type: :ci_job_token,
              token_name: 'Job Token',
              testcase: 'https://gitlab.com/gitlab-org/gitlab/-/quality/test_cases/348766'
            }
          }
        end

        with_them do
          let(:auth_token) do
            case authentication_token_type
            when :personal_access_token
              use_ci_variable(name: 'PERSONAL_ACCESS_TOKEN', value: personal_access_token, project: project)
            when :project_deploy_token
              use_ci_variable(name: 'PROJECT_DEPLOY_TOKEN', value: project_deploy_token.token, project: project)
            when :ci_job_token
              '$CI_JOB_TOKEN'
            end
          end

          let(:auth_user) do
            case authentication_token_type
            when :personal_access_token
              "$CI_REGISTRY_USER"
            when :project_deploy_token
              "\"#{project_deploy_token.username}\""
            when :ci_job_token
              'gitlab-ci-token'
            end
          end

          it "pushes image and deletes tag", :registry, testcase: params[:testcase] do
            Support::Retrier.retry_on_exception(max_attempts: 3, sleep_interval: 2) do
              Resource::Repository::Commit.fabricate_via_api! do |commit|
                commit.project = project
                commit.commit_message = 'Add .gitlab-ci.yml'
                commit.add_files([{
                                    file_path: '.gitlab-ci.yml',
                                    content:
                                        <<~YAML
                                          build:
                                            image: "#{docker_client_version}"
                                            stage: build
                                            services:
                                            - name: "#{docker_client_version}-dind"
                                              command: ["--insecure-registry=gitlab.test:5050"]
                                            variables:
                                              IMAGE_TAG: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
                                            script:
                                              - docker login -u #{auth_user} -p #{auth_token} gitlab.test:5050
                                              - docker build -t $IMAGE_TAG .
                                              - docker push $IMAGE_TAG
                                            tags:
                                              - "runner-for-#{project.name}"
                                        YAML
                                }])
              end
            end

            Flow::Pipeline.visit_latest_pipeline

            Page::Project::Pipeline::Show.perform do |pipeline|
              pipeline.click_job('build')
            end

            Page::Project::Job::Show.perform do |job|
              expect(job).to be_successful(timeout: 800)
            end

            Page::Project::Menu.perform(&:go_to_container_registry)

            Page::Project::Registry::Show.perform do |registry|
              expect(registry).to have_registry_repository(project.path_with_namespace)

              registry.click_on_image(project.path_with_namespace)
              expect(registry).to have_tag('master')
            end
          end
        end
      end

      context "when tls is enabled" do
        it "pushes image and deletes tag", :registry_tls, testcase: 'https://gitlab.com/gitlab-org/gitlab/-/quality/test_cases/347591' do
          Support::Retrier.retry_on_exception(max_attempts: 3, sleep_interval: 2) do
            Resource::Repository::Commit.fabricate_via_api! do |commit|
              commit.project = project
              commit.commit_message = 'Add .gitlab-ci.yml'
              commit.add_files([{
                                  file_path: '.gitlab-ci.yml',
                                  content:
                                      <<~YAML
                                        build:
                                          image: docker:19.03.12
                                          stage: build
                                          services:
                                          - name: docker:19.03.12-dind
                                            command:
                                            - /bin/sh
                                            - -c
                                            - |
                                              apk add --no-cache openssl
                                              true | openssl s_client -showcerts -connect gitlab.test:5050 > /usr/local/share/ca-certificates/gitlab.test.crt
                                              update-ca-certificates
                                              dockerd-entrypoint.sh || exit
                                          variables:
                                            IMAGE_TAG: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
                                          script:
                                            - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD gitlab.test:5050
                                            - docker build -t $IMAGE_TAG .
                                            - docker push $IMAGE_TAG
                                          tags:
                                            - "runner-for-#{project.name}"
                                      YAML
                              }])
            end
          end

          Flow::Pipeline.visit_latest_pipeline

          Page::Project::Pipeline::Show.perform do |pipeline|
            pipeline.click_job('build')
          end

          Support::Retrier.retry_until(max_duration: 800, sleep_interval: 10) do
            project.pipelines.last[:status] == 'success'
          end

          Page::Project::Menu.perform(&:go_to_container_registry)

          Page::Project::Registry::Show.perform do |registry|
            expect(registry).to have_registry_repository(project.path_with_namespace)

            registry.click_on_image(project.path_with_namespace)
            expect(registry).to have_tag('master')

            registry.click_delete
            expect(registry).not_to have_tag('master')
          end
        end
      end
    end
  end
end