require 'spec_helper' feature 'Download buttons in tags page' do given(:user) { create(:user) } given(:role) { :developer } given(:status) { 'success' } given(:tag) { 'v1.0.0' } given(:project) { create(:project, :repository) } 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 sign_in(user) project.add_role(user, role) end describe 'when checking tags' do context 'with artifacts' do before do visit project_tags_path(project) end scenario 'shows download artifacts button' do href = latest_succeeded_project_artifacts_path(project, "#{tag}/download", job: 'build') expect(page).to have_link "Download '#{build.name}'", href: href end end end end