debian-mirror-gitlab/spec/requests/api/keys_spec.rb

42 lines
1.2 KiB
Ruby
Raw Normal View History

2015-09-25 12:07:36 +05:30
require 'spec_helper'
2017-08-17 22:00:37 +05:30
describe API::Keys do
2015-09-25 12:07:36 +05:30
let(:user) { create(:user) }
let(:admin) { create(:admin) }
let(:key) { create(:key, user: user) }
2017-09-10 17:25:29 +05:30
let(:email) { create(:email, user: user) }
2015-09-25 12:07:36 +05:30
describe 'GET /keys/:uid' do
context 'when unauthenticated' do
2016-09-13 17:45:13 +05:30
it 'returns authentication error' do
2015-09-25 12:07:36 +05:30
get api("/keys/#{key.id}")
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(401)
2015-09-25 12:07:36 +05:30
end
end
context 'when authenticated' do
2016-09-13 17:45:13 +05:30
it 'returns 404 for non-existing key' do
2019-05-30 16:15:17 +05:30
get api('/keys/999999', admin)
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(404)
2015-09-25 12:07:36 +05:30
expect(json_response['message']).to eq('404 Not found')
end
2016-09-13 17:45:13 +05:30
it 'returns single ssh key with user information' do
2015-09-25 12:07:36 +05:30
user.keys << key
user.save
get api("/keys/#{key.id}", admin)
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2015-09-25 12:07:36 +05:30
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
2017-08-17 22:00:37 +05:30
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
2015-09-25 12:07:36 +05:30
end
end
end