summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorLong Nguyen <long.polyglot@gmail.com>2016-05-22 09:32:39 +0700
committerLong Nguyen <long.polyglot@gmail.com>2016-05-22 09:32:39 +0700
commitf012c3de4c35cb420e8d1ad54fb6a729fb3e04fa (patch)
treebcb26c7319f8e6b3028f6036ebbc2831688141a7 /spec
parente099af026fe58ec2a441aab6aec55098d0068594 (diff)
parent5a02f28a1bb890fd62df628bfe610c0b4d49b2f1 (diff)
downloadgitlab-ce-f012c3de4c35cb420e8d1ad54fb6a729fb3e04fa.tar.gz
Merge branch 'master' of https://gitlab.com/gitlab-org/gitlab-ce into issue_17479_todos_not_remove_when_leave_project
Diffstat (limited to 'spec')
-rw-r--r--spec/services/auth/container_registry_authentication_service_spec.rb13
1 files changed, 12 insertions, 1 deletions
diff --git a/spec/services/auth/container_registry_authentication_service_spec.rb b/spec/services/auth/container_registry_authentication_service_spec.rb
index 6c9f56a4fba..73b8c3f048f 100644
--- a/spec/services/auth/container_registry_authentication_service_spec.rb
+++ b/spec/services/auth/container_registry_authentication_service_spec.rb
@@ -10,7 +10,7 @@ describe Auth::ContainerRegistryAuthenticationService, services: true do
subject { described_class.new(current_project, current_user, current_params).execute }
before do
- stub_container_registry_config(enabled: true, issuer: 'rspec', key: nil)
+ allow(Gitlab.config.registry).to receive_messages(enabled: true, issuer: 'rspec', key: nil)
allow_any_instance_of(JSONWebToken::RSAToken).to receive(:key).and_return(rsa_key)
end
@@ -60,6 +60,17 @@ describe Auth::ContainerRegistryAuthenticationService, services: true do
it { is_expected.to_not include(:token) }
end
+ describe '#full_access_token' do
+ let(:project) { create(:empty_project) }
+ let(:token) { described_class.full_access_token(project.path_with_namespace) }
+
+ subject { { token: token } }
+
+ it_behaves_like 'a accessible' do
+ let(:actions) { ['*'] }
+ end
+ end
+
context 'user authorization' do
let(:project) { create(:project) }
let(:current_user) { create(:user) }