Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-07-09 00:09:09 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-07-09 00:09:09 +0300
commit83fc2f3dc81052cad76addb44726876ba1d0f156 (patch)
tree1d58eedea14b1462b40bc5b02c9561e5a128ac0b /spec/tasks
parent1d3086ebb41758289c1184dc5ad1462c81e1a1f9 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/tasks')
-rw-r--r--spec/tasks/gitlab/container_registry_rake_spec.rb82
1 files changed, 10 insertions, 72 deletions
diff --git a/spec/tasks/gitlab/container_registry_rake_spec.rb b/spec/tasks/gitlab/container_registry_rake_spec.rb
index 6cb5c30cc31..b83ff567126 100644
--- a/spec/tasks/gitlab/container_registry_rake_spec.rb
+++ b/spec/tasks/gitlab/container_registry_rake_spec.rb
@@ -3,24 +3,18 @@
require 'rake_helper'
RSpec.describe 'gitlab:container_registry namespace rake tasks' do
- let_it_be(:application_settings) { Gitlab::CurrentSettings }
let_it_be(:api_url) { 'http://registry.gitlab' }
before :all do
Rake.application.rake_require 'tasks/gitlab/container_registry'
end
- describe 'configure' do
- before do
- stub_access_token
- stub_container_registry_config(enabled: true, api_url: api_url)
- end
-
+ describe '#configure' do
subject { run_rake_task('gitlab:container_registry:configure') }
shared_examples 'invalid config' do
- it 'does not update the application settings' do
- expect(application_settings).not_to receive(:update!)
+ it 'does not call UpdateContainerRegistryInfoService' do
+ expect_any_instance_of(UpdateContainerRegistryInfoService).not_to receive(:execute)
subject
end
@@ -30,7 +24,7 @@ RSpec.describe 'gitlab:container_registry namespace rake tasks' do
end
it 'prints a warning message' do
- expect { subject }.to output(/Registry is not enabled or registry api url is not present./).to_stdout
+ expect { subject }.to output("Registry is not enabled or registry api url is not present.\n").to_stdout
end
end
@@ -50,74 +44,18 @@ RSpec.describe 'gitlab:container_registry namespace rake tasks' do
it_behaves_like 'invalid config'
end
- context 'when creating a registry client instance' do
- let(:token) { 'foo' }
- let(:client) { ContainerRegistry::Client.new(api_url, token: token) }
-
+ context 'when container registry is enabled and api_url is not blank' do
before do
- stub_registry_info({})
- end
-
- it 'uses a token with no access permissions' do
- expect(Auth::ContainerRegistryAuthenticationService)
- .to receive(:access_token).with([], []).and_return(token)
- expect(ContainerRegistry::Client)
- .to receive(:new).with(api_url, token: token).and_return(client)
-
- run_rake_task('gitlab:container_registry:configure')
+ stub_container_registry_config(enabled: true, api_url: api_url)
end
- end
-
- context 'when unabled to detect the container registry type' do
- it 'fails and raises an error message' do
- stub_registry_info({})
-
- run_rake_task('gitlab:container_registry:configure')
-
- application_settings.reload
- expect(application_settings.container_registry_vendor).to be_blank
- expect(application_settings.container_registry_version).to be_blank
- expect(application_settings.container_registry_features).to eq([])
- end
- end
- context 'when able to detect the container registry type' do
- context 'when using the GitLab container registry' do
- it 'updates application settings accordingly' do
- stub_registry_info(vendor: 'gitlab', version: '2.9.1-gitlab', features: %w[a,b,c])
-
- run_rake_task('gitlab:container_registry:configure')
-
- application_settings.reload
- expect(application_settings.container_registry_vendor).to eq('gitlab')
- expect(application_settings.container_registry_version).to eq('2.9.1-gitlab')
- expect(application_settings.container_registry_features).to eq(%w[a,b,c])
+ it 'calls UpdateContainerRegistryInfoService' do
+ expect_next_instance_of(UpdateContainerRegistryInfoService) do |service|
+ expect(service).to receive(:execute)
end
- end
- context 'when using a third-party container registry' do
- it 'updates application settings accordingly' do
- stub_registry_info(vendor: 'other', version: nil, features: nil)
-
- run_rake_task('gitlab:container_registry:configure')
-
- application_settings.reload
- expect(application_settings.container_registry_vendor).to eq('other')
- expect(application_settings.container_registry_version).to be_blank
- expect(application_settings.container_registry_features).to eq([])
- end
+ subject
end
end
end
-
- def stub_access_token
- allow(Auth::ContainerRegistryAuthenticationService)
- .to receive(:access_token).with([], []).and_return('foo')
- end
-
- def stub_registry_info(output)
- allow_next_instance_of(ContainerRegistry::Client) do |client|
- allow(client).to receive(:registry_info).and_return(output)
- end
- end
end