2018-05-07 19:39:37 -04:00
|
|
|
require "spec_helper"
|
|
|
|
|
|
|
|
describe "User downloads artifacts" do
|
|
|
|
set(:project) { create(:project, :public) }
|
|
|
|
set(:pipeline) { create(:ci_empty_pipeline, status: :success, project: project) }
|
|
|
|
set(:job) { create(:ci_build, :artifacts, :success, pipeline: pipeline) }
|
|
|
|
|
|
|
|
shared_examples "downloading" do
|
|
|
|
it "downloads the zip" do
|
2019-02-04 20:27:22 -05:00
|
|
|
expect(page.response_headers["Content-Disposition"]).to eq(%Q{attachment; filename*=UTF-8''#{job.artifacts_file.filename}; filename="#{job.artifacts_file.filename}"})
|
2018-05-07 19:39:37 -04:00
|
|
|
expect(page.response_headers['Content-Transfer-Encoding']).to eq("binary")
|
|
|
|
expect(page.response_headers['Content-Type']).to eq("application/zip")
|
|
|
|
expect(page.source.b).to eq(job.artifacts_file.file.read.b)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when downloading" do
|
|
|
|
before do
|
|
|
|
visit(url)
|
|
|
|
end
|
|
|
|
|
|
|
|
context "via job id" do
|
2018-09-25 04:07:47 -04:00
|
|
|
let(:url) { download_project_job_artifacts_path(project, job) }
|
2018-05-07 19:39:37 -04:00
|
|
|
|
|
|
|
it_behaves_like "downloading"
|
|
|
|
end
|
|
|
|
|
|
|
|
context "via branch name and job name" do
|
2018-09-25 04:07:47 -04:00
|
|
|
let(:url) { latest_succeeded_project_artifacts_path(project, "#{pipeline.ref}/download", job: job.name) }
|
2018-05-07 19:39:37 -04:00
|
|
|
|
|
|
|
it_behaves_like "downloading"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|