2016-07-25 08:52:18 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2018-07-05 02:32:05 -04:00
|
|
|
describe 'Download buttons in branches page' do
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:role) { :developer }
|
|
|
|
let(:status) { 'success' }
|
|
|
|
let(:project) { create(:project, :repository) }
|
2016-08-10 06:57:51 -04:00
|
|
|
|
2018-07-05 02:32:05 -04:00
|
|
|
let(:pipeline) do
|
2016-08-10 06:57:51 -04:00
|
|
|
create(:ci_pipeline,
|
|
|
|
project: project,
|
2016-08-19 06:46:15 -04:00
|
|
|
sha: project.commit('binary-encoding').sha,
|
|
|
|
ref: 'binary-encoding', # make sure the branch is in the 1st page!
|
2016-08-10 06:57:51 -04:00
|
|
|
status: status)
|
2016-07-25 08:52:18 -04:00
|
|
|
end
|
2016-08-10 06:57:51 -04:00
|
|
|
|
2018-07-05 02:32:05 -04:00
|
|
|
let!(:build) do
|
2016-07-25 08:52:18 -04:00
|
|
|
create(:ci_build, :success, :artifacts,
|
|
|
|
pipeline: pipeline,
|
|
|
|
status: pipeline.status,
|
|
|
|
name: 'build')
|
|
|
|
end
|
|
|
|
|
2018-07-05 02:32:05 -04:00
|
|
|
before do
|
2017-06-21 19:44:10 -04:00
|
|
|
sign_in(user)
|
2017-12-22 03:18:28 -05:00
|
|
|
project.add_role(user, role)
|
2016-07-25 08:52:18 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'when checking branches' do
|
|
|
|
context 'with artifacts' do
|
|
|
|
before do
|
2017-11-15 09:56:36 -05:00
|
|
|
visit project_branches_filtered_path(project, state: 'all', search: 'binary-encoding')
|
2016-07-25 08:52:18 -04:00
|
|
|
end
|
|
|
|
|
2018-07-05 02:32:05 -04:00
|
|
|
it 'shows download artifacts button' do
|
2017-07-06 12:20:50 -04:00
|
|
|
href = latest_succeeded_project_artifacts_path(project, 'binary-encoding/download', job: 'build')
|
2016-09-19 01:12:45 -04:00
|
|
|
|
|
|
|
expect(page).to have_link "Download '#{build.name}'", href: href
|
2016-07-25 08:52:18 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|