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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
1.1 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2016-09-29 09:46:39 +05:30
require 'spec_helper'
2020-06-23 00:09:42 +05:30
RSpec.describe 'Download buttons in tags page' do
2018-11-08 19:23:39 +05:30
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
2019-12-04 20:38:33 +05:30
it_behaves_like 'archive download buttons' do
let(:path_to_visit) { project_tags_path(project) }
let(:ref) { tag }
end
2016-09-29 09:46:39 +05:30
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