111 lines
3.8 KiB
Ruby
111 lines
3.8 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
describe API::Keys do
|
|
let(:user) { create(:user) }
|
|
let(:admin) { create(:admin) }
|
|
let(:key) { create(:key, user: user) }
|
|
let(:email) { create(:email, user: user) }
|
|
|
|
describe 'GET /keys/:uid' do
|
|
context 'when unauthenticated' do
|
|
it 'returns authentication error' do
|
|
get api("/keys/#{key.id}")
|
|
expect(response).to have_gitlab_http_status(401)
|
|
end
|
|
end
|
|
|
|
context 'when authenticated' do
|
|
it 'returns 404 for non-existing key' do
|
|
get api('/keys/0', admin)
|
|
expect(response).to have_gitlab_http_status(404)
|
|
expect(json_response['message']).to eq('404 Not found')
|
|
end
|
|
|
|
it 'returns single ssh key with user information' do
|
|
user.keys << key
|
|
get api("/keys/#{key.id}", admin)
|
|
expect(response).to have_gitlab_http_status(200)
|
|
expect(json_response['title']).to eq(key.title)
|
|
expect(json_response['user']['id']).to eq(user.id)
|
|
expect(json_response['user']['username']).to eq(user.username)
|
|
end
|
|
|
|
it "does not include the user's `is_admin` flag" do
|
|
get api("/keys/#{key.id}", admin)
|
|
|
|
expect(json_response['user']['is_admin']).to be_nil
|
|
end
|
|
end
|
|
end
|
|
|
|
describe 'GET /keys?fingerprint=' do
|
|
it 'returns authentication error' do
|
|
get api("/keys?fingerprint=#{key.fingerprint}")
|
|
|
|
expect(response).to have_gitlab_http_status(401)
|
|
end
|
|
|
|
it 'returns authentication error when authenticated as user' do
|
|
get api("/keys?fingerprint=#{key.fingerprint}", user)
|
|
|
|
expect(response).to have_gitlab_http_status(403)
|
|
end
|
|
|
|
context 'when authenticated as admin' do
|
|
it 'returns 404 for non-existing SSH md5 fingerprint' do
|
|
get api("/keys?fingerprint=11:11:11:11:11:11:11:11:11:11:11:11:11:11:11:11", admin)
|
|
|
|
expect(response).to have_gitlab_http_status(404)
|
|
expect(json_response['message']).to eq('404 Key Not Found')
|
|
end
|
|
|
|
it 'returns 404 for non-existing SSH sha256 fingerprint' do
|
|
get api("/keys?fingerprint=#{URI.encode_www_form_component("SHA256:nUhzNyftwADy8AH3wFY31tAKs7HufskYTte2aXo1lCg")}", admin)
|
|
|
|
expect(response).to have_gitlab_http_status(404)
|
|
expect(json_response['message']).to eq('404 Key Not Found')
|
|
end
|
|
|
|
it 'returns user if SSH md5 fingerprint found' do
|
|
user.keys << key
|
|
|
|
get api("/keys?fingerprint=#{key.fingerprint}", admin)
|
|
|
|
expect(response).to have_gitlab_http_status(200)
|
|
expect(json_response['title']).to eq(key.title)
|
|
expect(json_response['user']['id']).to eq(user.id)
|
|
expect(json_response['user']['username']).to eq(user.username)
|
|
end
|
|
|
|
it 'returns user if SSH sha256 fingerprint found' do
|
|
user.keys << key
|
|
|
|
get api("/keys?fingerprint=#{URI.encode_www_form_component("SHA256:" + key.fingerprint_sha256)}", admin)
|
|
|
|
expect(response).to have_gitlab_http_status(200)
|
|
expect(json_response['title']).to eq(key.title)
|
|
expect(json_response['user']['id']).to eq(user.id)
|
|
expect(json_response['user']['username']).to eq(user.username)
|
|
end
|
|
|
|
it 'returns user if SSH sha256 fingerprint found' do
|
|
user.keys << key
|
|
|
|
get api("/keys?fingerprint=#{URI.encode_www_form_component("sha256:" + key.fingerprint_sha256)}", admin)
|
|
|
|
expect(response).to have_gitlab_http_status(200)
|
|
expect(json_response['title']).to eq(key.title)
|
|
expect(json_response['user']['id']).to eq(user.id)
|
|
expect(json_response['user']['username']).to eq(user.username)
|
|
end
|
|
|
|
it "does not include the user's `is_admin` flag" do
|
|
get api("/keys?fingerprint=#{key.fingerprint}", admin)
|
|
|
|
expect(json_response['user']['is_admin']).to be_nil
|
|
end
|
|
end
|
|
end
|
|
end
|