3c2b4a1ced
It consists of two parts: 1. Redirecting users to the configured external storage 1. Allowing the external storage to request the static object(s) on behalf of the user by means of specific tokens Part of https://gitlab.com/gitlab-com/gl-infra/infrastructure/issues/6829
52 lines
1.2 KiB
Ruby
52 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
describe 'Projects > Show > Download buttons' do
|
|
let(:user) { create(:user) }
|
|
let(:role) { :developer }
|
|
let(:status) { 'success' }
|
|
let(:project) { create(:project, :repository) }
|
|
|
|
let(:pipeline) do
|
|
create(:ci_pipeline,
|
|
project: project,
|
|
sha: project.commit.sha,
|
|
ref: project.default_branch,
|
|
status: status)
|
|
end
|
|
|
|
let!(:build) do
|
|
create(:ci_build, :success, :artifacts,
|
|
pipeline: pipeline,
|
|
status: pipeline.status,
|
|
name: 'build')
|
|
end
|
|
|
|
before do
|
|
sign_in(user)
|
|
project.add_role(user, role)
|
|
end
|
|
|
|
describe 'when checking project main page' do
|
|
it_behaves_like 'archive download buttons'
|
|
|
|
context 'with artifacts' do
|
|
before do
|
|
visit project_path(project)
|
|
end
|
|
|
|
it 'shows download artifacts button' do
|
|
href = latest_succeeded_project_artifacts_path(project, "#{project.default_branch}/download", job: 'build')
|
|
|
|
expect(page).to have_link build.name, href: href
|
|
end
|
|
|
|
it 'download links have download attribute' do
|
|
page.all('a', text: 'Download').each do |link|
|
|
expect(link[:download]).to eq ''
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|