2013-02-26 15:53:59 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2014-04-11 15:45:56 -04:00
|
|
|
describe API::API, api: true do
|
2013-02-26 15:53:59 -05:00
|
|
|
include ApiHelpers
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:key) { create(:key, user: user) }
|
|
|
|
let(:project) { create(:project) }
|
2015-02-16 07:16:26 -05:00
|
|
|
let(:secret_token) { File.read Gitlab.config.gitlab_shell.secret_file }
|
2013-02-26 15:53:59 -05:00
|
|
|
|
|
|
|
describe "GET /internal/check", no_db: true do
|
|
|
|
it do
|
2014-10-15 11:26:15 -04:00
|
|
|
get api("/internal/check"), secret_token: secret_token
|
2013-02-26 15:53:59 -05:00
|
|
|
|
2016-06-27 14:10:42 -04:00
|
|
|
expect(response).to have_http_status(200)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(json_response['api_version']).to eq(API::API.version)
|
2013-02-26 15:53:59 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-02-07 10:41:30 -05:00
|
|
|
describe "GET /internal/broadcast_message" do
|
|
|
|
context "broadcast message exists" do
|
|
|
|
let!(:broadcast_message) { create(:broadcast_message, starts_at: Time.now.yesterday, ends_at: Time.now.tomorrow ) }
|
|
|
|
|
|
|
|
it do
|
|
|
|
get api("/internal/broadcast_message"), secret_token: secret_token
|
|
|
|
|
2016-06-27 14:10:42 -04:00
|
|
|
expect(response).to have_http_status(200)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(json_response["message"]).to eq(broadcast_message.message)
|
2015-02-07 10:41:30 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "broadcast message doesn't exist" do
|
|
|
|
it do
|
|
|
|
get api("/internal/broadcast_message"), secret_token: secret_token
|
|
|
|
|
2016-06-27 14:10:42 -04:00
|
|
|
expect(response).to have_http_status(200)
|
2015-02-18 17:58:20 -05:00
|
|
|
expect(json_response).to be_empty
|
2015-02-07 10:41:30 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-07-26 17:48:51 -04:00
|
|
|
describe 'GET /internal/two_factor_recovery_codes' do
|
|
|
|
it 'returns an error message when the key does not exist' do
|
|
|
|
post api('/internal/two_factor_recovery_codes'),
|
|
|
|
secret_token: secret_token,
|
|
|
|
key_id: 12345
|
|
|
|
|
2016-08-24 20:58:05 -04:00
|
|
|
expect(json_response['success']).to be_falsey
|
|
|
|
expect(json_response['message']).to eq('Could not find the given key')
|
2016-07-26 17:48:51 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns an error message when the key is a deploy key' do
|
|
|
|
deploy_key = create(:deploy_key)
|
|
|
|
|
|
|
|
post api('/internal/two_factor_recovery_codes'),
|
|
|
|
secret_token: secret_token,
|
|
|
|
key_id: deploy_key.id
|
|
|
|
|
|
|
|
expect(json_response['success']).to be_falsey
|
|
|
|
expect(json_response['message']).to eq('Deploy keys cannot be used to retrieve recovery codes')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns an error message when the user does not exist' do
|
|
|
|
key_without_user = create(:key, user: nil)
|
|
|
|
|
|
|
|
post api('/internal/two_factor_recovery_codes'),
|
|
|
|
secret_token: secret_token,
|
|
|
|
key_id: key_without_user.id
|
|
|
|
|
|
|
|
expect(json_response['success']).to be_falsey
|
|
|
|
expect(json_response['message']).to eq('Could not find a user for the given key')
|
|
|
|
expect(json_response['recovery_codes']).to be_nil
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when two-factor is enabled' do
|
|
|
|
it 'returns new recovery codes when the user exists' do
|
|
|
|
allow_any_instance_of(User).to receive(:two_factor_enabled?).and_return(true)
|
|
|
|
allow_any_instance_of(User)
|
|
|
|
.to receive(:generate_otp_backup_codes!).and_return(%w(119135e5a3ebce8e 34bd7b74adbc8861))
|
|
|
|
|
|
|
|
post api('/internal/two_factor_recovery_codes'),
|
|
|
|
secret_token: secret_token,
|
|
|
|
key_id: key.id
|
|
|
|
|
|
|
|
expect(json_response['success']).to be_truthy
|
|
|
|
expect(json_response['recovery_codes']).to match_array(%w(119135e5a3ebce8e 34bd7b74adbc8861))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when two-factor is not enabled' do
|
|
|
|
it 'returns an error message' do
|
|
|
|
allow_any_instance_of(User).to receive(:two_factor_enabled?).and_return(false)
|
|
|
|
|
|
|
|
post api('/internal/two_factor_recovery_codes'),
|
|
|
|
secret_token: secret_token,
|
|
|
|
key_id: key.id
|
|
|
|
|
|
|
|
expect(json_response['success']).to be_falsey
|
|
|
|
expect(json_response['recovery_codes']).to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-09-19 10:34:32 -04:00
|
|
|
describe "POST /internal/lfs_authenticate" do
|
|
|
|
before do
|
|
|
|
project.team << [user, :developer]
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'user key' do
|
|
|
|
it 'returns the correct information about the key' do
|
|
|
|
lfs_auth(key.id, project)
|
|
|
|
|
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
expect(json_response['username']).to eq(user.username)
|
2016-09-28 12:02:31 -04:00
|
|
|
expect(json_response['lfs_token']).to eq(Gitlab::LfsToken.new(key).token)
|
2016-09-19 10:34:32 -04:00
|
|
|
|
|
|
|
expect(json_response['repository_http_path']).to eq(project.http_url_to_repo)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns a 404 when the wrong key is provided' do
|
|
|
|
lfs_auth(nil, project)
|
|
|
|
|
|
|
|
expect(response).to have_http_status(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'deploy key' do
|
|
|
|
let(:key) { create(:deploy_key) }
|
|
|
|
|
|
|
|
it 'returns the correct information about the key' do
|
|
|
|
lfs_auth(key.id, project)
|
|
|
|
|
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
expect(json_response['username']).to eq("lfs+deploy-key-#{key.id}")
|
2016-09-28 12:02:31 -04:00
|
|
|
expect(json_response['lfs_token']).to eq(Gitlab::LfsToken.new(key).token)
|
2016-09-19 10:34:32 -04:00
|
|
|
expect(json_response['repository_http_path']).to eq(project.http_url_to_repo)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-08-30 14:38:22 -04:00
|
|
|
describe "GET /internal/discover" do
|
|
|
|
it do
|
|
|
|
get(api("/internal/discover"), key_id: key.id, secret_token: secret_token)
|
|
|
|
|
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
|
|
|
|
expect(json_response['name']).to eq(user.name)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-12-01 09:55:33 -05:00
|
|
|
describe "POST /internal/allowed" do
|
2013-02-26 15:53:59 -05:00
|
|
|
context "access granted" do
|
|
|
|
before do
|
|
|
|
project.team << [user, :developer]
|
|
|
|
end
|
|
|
|
|
2016-02-24 09:54:36 -05:00
|
|
|
context "git push with project.wiki" do
|
2016-02-29 04:59:16 -05:00
|
|
|
it 'responds with success' do
|
2016-07-15 21:31:26 -04:00
|
|
|
push(key, project.wiki)
|
2016-02-26 04:40:30 -05:00
|
|
|
|
2016-07-15 21:31:26 -04:00
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
expect(json_response["status"]).to be_truthy
|
|
|
|
expect(json_response["repository_path"]).to eq(project.wiki.repository.path_to_repo)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "git pull with project.wiki" do
|
|
|
|
it 'responds with success' do
|
|
|
|
pull(key, project.wiki)
|
2016-02-24 09:54:36 -05:00
|
|
|
|
2016-06-27 14:10:42 -04:00
|
|
|
expect(response).to have_http_status(200)
|
2016-02-24 09:54:36 -05:00
|
|
|
expect(json_response["status"]).to be_truthy
|
2016-07-15 21:31:26 -04:00
|
|
|
expect(json_response["repository_path"]).to eq(project.wiki.repository.path_to_repo)
|
2016-02-24 09:54:36 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-26 15:53:59 -05:00
|
|
|
context "git pull" do
|
|
|
|
it do
|
2013-03-07 07:18:30 -05:00
|
|
|
pull(key, project)
|
2013-02-26 15:53:59 -05:00
|
|
|
|
2016-06-27 14:10:42 -04:00
|
|
|
expect(response).to have_http_status(200)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(json_response["status"]).to be_truthy
|
2016-06-22 17:04:51 -04:00
|
|
|
expect(json_response["repository_path"]).to eq(project.repository.path_to_repo)
|
2013-02-26 15:53:59 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "git push" do
|
|
|
|
it do
|
2013-03-07 07:18:30 -05:00
|
|
|
push(key, project)
|
2013-02-26 15:53:59 -05:00
|
|
|
|
2016-06-27 14:10:42 -04:00
|
|
|
expect(response).to have_http_status(200)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(json_response["status"]).to be_truthy
|
2016-06-22 17:04:51 -04:00
|
|
|
expect(json_response["repository_path"]).to eq(project.repository.path_to_repo)
|
2013-02-26 15:53:59 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "access denied" do
|
|
|
|
before do
|
|
|
|
project.team << [user, :guest]
|
|
|
|
end
|
|
|
|
|
|
|
|
context "git pull" do
|
|
|
|
it do
|
2013-03-07 07:18:30 -05:00
|
|
|
pull(key, project)
|
2013-02-26 15:53:59 -05:00
|
|
|
|
2016-06-27 14:10:42 -04:00
|
|
|
expect(response).to have_http_status(200)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(json_response["status"]).to be_falsey
|
2013-02-26 15:53:59 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "git push" do
|
|
|
|
it do
|
2013-03-07 07:18:30 -05:00
|
|
|
push(key, project)
|
2013-02-26 15:53:59 -05:00
|
|
|
|
2016-06-27 14:10:42 -04:00
|
|
|
expect(response).to have_http_status(200)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(json_response["status"]).to be_falsey
|
2013-02-26 15:53:59 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-03-07 07:18:30 -05:00
|
|
|
context "blocked user" do
|
|
|
|
let(:personal_project) { create(:project, namespace: user.namespace) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
user.block
|
|
|
|
end
|
|
|
|
|
|
|
|
context "git pull" do
|
|
|
|
it do
|
|
|
|
pull(key, personal_project)
|
|
|
|
|
2016-06-27 14:10:42 -04:00
|
|
|
expect(response).to have_http_status(200)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(json_response["status"]).to be_falsey
|
2013-03-07 07:18:30 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "git push" do
|
|
|
|
it do
|
|
|
|
push(key, personal_project)
|
|
|
|
|
2016-06-27 14:10:42 -04:00
|
|
|
expect(response).to have_http_status(200)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(json_response["status"]).to be_falsey
|
2013-03-07 07:18:30 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2013-07-29 08:25:33 -04:00
|
|
|
|
2013-11-29 11:10:59 -05:00
|
|
|
context "archived project" do
|
|
|
|
let(:personal_project) { create(:project, namespace: user.namespace) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
project.team << [user, :developer]
|
|
|
|
project.archive!
|
|
|
|
end
|
|
|
|
|
|
|
|
context "git pull" do
|
|
|
|
it do
|
|
|
|
pull(key, project)
|
|
|
|
|
2016-06-27 14:10:42 -04:00
|
|
|
expect(response).to have_http_status(200)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(json_response["status"]).to be_truthy
|
2013-11-29 11:10:59 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "git push" do
|
|
|
|
it do
|
|
|
|
push(key, project)
|
|
|
|
|
2016-06-27 14:10:42 -04:00
|
|
|
expect(response).to have_http_status(200)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(json_response["status"]).to be_falsey
|
2013-11-29 11:10:59 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-07-29 08:25:33 -04:00
|
|
|
context "deploy key" do
|
|
|
|
let(:key) { create(:deploy_key) }
|
|
|
|
|
|
|
|
context "added to project" do
|
|
|
|
before do
|
|
|
|
key.projects << project
|
|
|
|
end
|
|
|
|
|
|
|
|
it do
|
|
|
|
archive(key, project)
|
|
|
|
|
2016-06-27 14:10:42 -04:00
|
|
|
expect(response).to have_http_status(200)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(json_response["status"]).to be_truthy
|
2013-07-29 08:25:33 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "not added to project" do
|
|
|
|
it do
|
|
|
|
archive(key, project)
|
|
|
|
|
2016-06-27 14:10:42 -04:00
|
|
|
expect(response).to have_http_status(200)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(json_response["status"]).to be_falsey
|
2013-07-29 08:25:33 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2014-12-01 09:55:33 -05:00
|
|
|
|
|
|
|
context 'project does not exist' do
|
|
|
|
it do
|
|
|
|
pull(key, OpenStruct.new(path_with_namespace: 'gitlab/notexists'))
|
|
|
|
|
2016-06-27 14:10:42 -04:00
|
|
|
expect(response).to have_http_status(200)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(json_response["status"]).to be_falsey
|
2014-12-01 09:55:33 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'user does not exist' do
|
|
|
|
it do
|
|
|
|
pull(OpenStruct.new(id: 0), project)
|
|
|
|
|
2016-06-27 14:10:42 -04:00
|
|
|
expect(response).to have_http_status(200)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(json_response["status"]).to be_falsey
|
2014-12-01 09:55:33 -05:00
|
|
|
end
|
|
|
|
end
|
2016-06-22 20:16:24 -04:00
|
|
|
|
|
|
|
context 'ssh access has been disabled' do
|
|
|
|
before do
|
|
|
|
settings = ::ApplicationSetting.create_from_defaults
|
2016-06-29 15:30:27 -04:00
|
|
|
settings.update_attribute(:enabled_git_access_protocol, 'http')
|
2016-06-22 20:16:24 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'rejects the SSH push' do
|
|
|
|
push(key, project)
|
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response['status']).to be_falsey
|
|
|
|
expect(json_response['message']).to eq 'Git access over SSH is not allowed'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'rejects the SSH pull' do
|
|
|
|
pull(key, project)
|
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response['status']).to be_falsey
|
|
|
|
expect(json_response['message']).to eq 'Git access over SSH is not allowed'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'http access has been disabled' do
|
|
|
|
before do
|
|
|
|
settings = ::ApplicationSetting.create_from_defaults
|
2016-06-29 15:30:27 -04:00
|
|
|
settings.update_attribute(:enabled_git_access_protocol, 'ssh')
|
2016-06-22 20:16:24 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'rejects the HTTP push' do
|
|
|
|
push(key, project, 'http')
|
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response['status']).to be_falsey
|
|
|
|
expect(json_response['message']).to eq 'Git access over HTTP is not allowed'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'rejects the HTTP pull' do
|
|
|
|
pull(key, project, 'http')
|
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response['status']).to be_falsey
|
|
|
|
expect(json_response['message']).to eq 'Git access over HTTP is not allowed'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'web actions are always allowed' do
|
|
|
|
it 'allows WEB push' do
|
|
|
|
settings = ::ApplicationSetting.create_from_defaults
|
2016-06-29 15:30:27 -04:00
|
|
|
settings.update_attribute(:enabled_git_access_protocol, 'ssh')
|
2016-06-22 20:16:24 -04:00
|
|
|
project.team << [user, :developer]
|
|
|
|
push(key, project, 'web')
|
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(json_response['status']).to be_truthy
|
|
|
|
end
|
|
|
|
end
|
2013-03-07 07:18:30 -05:00
|
|
|
end
|
|
|
|
|
2016-07-28 00:04:57 -04:00
|
|
|
describe 'GET /internal/merge_request_urls' do
|
|
|
|
let(:repo_name) { "#{project.namespace.name}/#{project.path}" }
|
|
|
|
let(:changes) { URI.escape("#{Gitlab::Git::BLANK_SHA} 570e7b2abdd848b95f2f578043fc23bd6f6fd24d refs/heads/new_branch") }
|
|
|
|
|
|
|
|
before do
|
|
|
|
project.team << [user, :developer]
|
|
|
|
get api("/internal/merge_request_urls?project=#{repo_name}&changes=#{changes}"), secret_token: secret_token
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns link to create new merge request' do
|
|
|
|
expect(json_response).to match [{
|
|
|
|
"branch_name" => "new_branch",
|
|
|
|
"url" => "http://localhost/#{project.namespace.name}/#{project.path}/merge_requests/new?merge_request%5Bsource_branch%5D=new_branch",
|
|
|
|
"new_merge_request" => true
|
|
|
|
}]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-06-22 20:16:24 -04:00
|
|
|
def pull(key, project, protocol = 'ssh')
|
2014-09-03 02:06:16 -04:00
|
|
|
post(
|
2013-03-07 07:18:30 -05:00
|
|
|
api("/internal/allowed"),
|
|
|
|
key_id: key.id,
|
|
|
|
project: project.path_with_namespace,
|
2014-10-15 11:26:15 -04:00
|
|
|
action: 'git-upload-pack',
|
2016-06-22 20:16:24 -04:00
|
|
|
secret_token: secret_token,
|
|
|
|
protocol: protocol
|
2013-03-07 07:18:30 -05:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2016-06-22 20:16:24 -04:00
|
|
|
def push(key, project, protocol = 'ssh')
|
2014-09-03 02:06:16 -04:00
|
|
|
post(
|
2013-03-07 07:18:30 -05:00
|
|
|
api("/internal/allowed"),
|
2014-09-02 04:35:34 -04:00
|
|
|
changes: 'd14d6c0abdd253381df51a723d58691b2ee1ab08 570e7b2abdd848b95f2f578043fc23bd6f6fd24d refs/heads/master',
|
2013-03-07 07:18:30 -05:00
|
|
|
key_id: key.id,
|
|
|
|
project: project.path_with_namespace,
|
2014-10-15 11:26:15 -04:00
|
|
|
action: 'git-receive-pack',
|
2016-06-22 20:16:24 -04:00
|
|
|
secret_token: secret_token,
|
|
|
|
protocol: protocol
|
2013-03-07 07:18:30 -05:00
|
|
|
)
|
2013-02-26 15:53:59 -05:00
|
|
|
end
|
2013-07-29 08:25:33 -04:00
|
|
|
|
|
|
|
def archive(key, project)
|
2014-09-03 02:06:16 -04:00
|
|
|
post(
|
2013-07-29 08:25:33 -04:00
|
|
|
api("/internal/allowed"),
|
|
|
|
ref: 'master',
|
|
|
|
key_id: key.id,
|
|
|
|
project: project.path_with_namespace,
|
2014-10-15 11:26:15 -04:00
|
|
|
action: 'git-upload-archive',
|
2016-06-22 20:16:24 -04:00
|
|
|
secret_token: secret_token,
|
|
|
|
protocol: 'ssh'
|
2013-07-29 08:25:33 -04:00
|
|
|
)
|
|
|
|
end
|
2016-09-19 10:34:32 -04:00
|
|
|
|
|
|
|
def lfs_auth(key_id, project)
|
|
|
|
post(
|
|
|
|
api("/internal/lfs_authenticate"),
|
|
|
|
key_id: key_id,
|
|
|
|
secret_token: secret_token,
|
|
|
|
project: project.path_with_namespace
|
|
|
|
)
|
|
|
|
end
|
2013-02-26 15:53:59 -05:00
|
|
|
end
|