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

44 lines
1 KiB
Ruby
Raw Normal View History

2016-09-29 09:46:39 +05:30
require 'spec_helper'
2017-09-10 17:25:29 +05:30
feature 'Download buttons in tags page' do
2016-09-29 09:46:39 +05:30
given(:user) { create(:user) }
given(:role) { :developer }
given(:status) { 'success' }
given(:tag) { 'v1.0.0' }
2017-09-10 17:25:29 +05:30
given(:project) { create(:project, :repository) }
2016-09-29 09:46:39 +05:30
given(:pipeline) do
create(:ci_pipeline,
project: project,
sha: project.commit(tag).sha,
ref: tag,
status: status)
end
given!(:build) do
create(:ci_build, :success, :artifacts,
pipeline: pipeline,
status: pipeline.status,
name: 'build')
end
background do
2017-09-10 17:25:29 +05:30
sign_in(user)
2016-09-29 09:46:39 +05:30
project.team << [user, role]
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
scenario '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
expect(page).to have_link "Download '#{build.name}'", href: href
end
end
end
end