2015-04-26 12:48:37 +05:30
|
|
|
require "spec_helper"
|
|
|
|
|
|
|
|
describe Projects::RepositoriesController do
|
2017-08-17 22:00:37 +05:30
|
|
|
let(:project) { create(:project, :repository) }
|
2015-04-26 12:48:37 +05:30
|
|
|
|
|
|
|
describe "GET archive" do
|
2016-06-02 11:05:42 +05:30
|
|
|
context 'as a guest' do
|
|
|
|
it 'responds with redirect in correct format' do
|
2017-09-10 17:25:29 +05:30
|
|
|
get :archive, namespace_id: project.namespace, project_id: project, format: "zip", ref: 'master'
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
expect(response.header["Content-Type"]).to start_with('text/html')
|
2016-06-02 11:05:42 +05:30
|
|
|
expect(response).to be_redirect
|
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
context 'as a user' do
|
|
|
|
let(:user) { create(:user) }
|
2015-04-26 12:48:37 +05:30
|
|
|
|
|
|
|
before do
|
2018-03-17 18:26:18 +05:30
|
|
|
project.add_developer(user)
|
2016-06-02 11:05:42 +05:30
|
|
|
sign_in(user)
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
|
2016-06-16 23:09:34 +05:30
|
|
|
it "uses Gitlab::Workhorse" do
|
2017-08-17 22:00:37 +05:30
|
|
|
get :archive, namespace_id: project.namespace, project_id: project, ref: "master", format: "zip"
|
2016-06-16 23:09:34 +05:30
|
|
|
|
|
|
|
expect(response.header[Gitlab::Workhorse::SEND_DATA_HEADER]).to start_with("git-archive:")
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context "when the service raises an error" do
|
|
|
|
before do
|
|
|
|
allow(Gitlab::Workhorse).to receive(:send_git_archive).and_raise("Archive failed")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "renders Not Found" do
|
2017-08-17 22:00:37 +05:30
|
|
|
get :archive, namespace_id: project.namespace, project_id: project, ref: "master", format: "zip"
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(response).to have_gitlab_http_status(404)
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|