BigW Consortium Gitlab

repositories_controller_spec.rb 1.24 KB
Newer Older
Douwe Maan committed
1 2 3 4 5 6
require "spec_helper"

describe Projects::RepositoriesController do
  let(:project) { create(:project) }

  describe "GET archive" do
7 8 9
    context 'as a guest' do
      it 'responds with redirect in correct format' do
        get :archive, namespace_id: project.namespace.path, project_id: project.path, format: "zip"
Douwe Maan committed
10

11 12 13
        expect(response.content_type).to start_with 'text/html'
        expect(response).to be_redirect
      end
Douwe Maan committed
14 15
    end

16 17
    context 'as a user' do
      let(:user) { create(:user) }
Douwe Maan committed
18 19

      before do
20 21
        project.team << [user, :developer]
        sign_in(user)
Douwe Maan committed
22 23
      end

24
      it "uses Gitlab::Workhorse" do
Douwe Maan committed
25
        get :archive, namespace_id: project.namespace.path, project_id: project.path, ref: "master", format: "zip"
26 27

        expect(response.header[Gitlab::Workhorse::SEND_DATA_HEADER]).to start_with("git-archive:")
28 29 30 31 32 33 34 35 36 37
      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
          get :archive, namespace_id: project.namespace.path, project_id: project.path, ref: "master", format: "zip"
Douwe Maan committed
38

39 40
          expect(response.status).to eq(404)
        end
Douwe Maan committed
41 42 43 44
      end
    end
  end
end