debian-mirror-gitlab/spec/features/projects/tags/download_buttons_spec.rb

44 lines
997 B
Ruby
Raw Normal View History

2016-09-29 09:46:39 +05:30
require 'spec_helper'
2018-11-08 19:23:39 +05:30
describe 'Download buttons in tags page' do
let(:user) { create(:user) }
let(:role) { :developer }
let(:status) { 'success' }
let(:tag) { 'v1.0.0' }
let(:project) { create(:project, :repository) }
2016-09-29 09:46:39 +05:30
2018-11-08 19:23:39 +05:30
let(:pipeline) do
2016-09-29 09:46:39 +05:30
create(:ci_pipeline,
project: project,
sha: project.commit(tag).sha,
ref: tag,
status: status)
end
2018-11-08 19:23:39 +05:30
let!(:build) do
2016-09-29 09:46:39 +05:30
create(:ci_build, :success, :artifacts,
pipeline: pipeline,
status: pipeline.status,
name: 'build')
end
2018-11-08 19:23:39 +05:30
before do
2017-09-10 17:25:29 +05:30
sign_in(user)
2018-03-17 18:26:18 +05:30
project.add_role(user, role)
2016-09-29 09:46:39 +05:30
end
describe 'when checking tags' do
context 'with artifacts' do
before do
2017-09-10 17:25:29 +05:30
visit project_tags_path(project)
2016-09-29 09:46:39 +05:30
end
2018-11-08 19:23:39 +05:30
it 'shows download artifacts button' do
2017-09-10 17:25:29 +05:30
href = latest_succeeded_project_artifacts_path(project, "#{tag}/download", job: 'build')
2016-09-29 09:46:39 +05:30
2019-07-31 22:56:46 +05:30
expect(page).to have_link build.name, href: href
2016-09-29 09:46:39 +05:30
end
end
end
end