2016-07-25 08:52:18 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
feature 'Download buttons in files tree', feature: true do
|
|
|
|
given(:user) { create(:user) }
|
|
|
|
given(:role) { :developer }
|
|
|
|
given(:status) { 'success' }
|
|
|
|
given(:project) { create(:project) }
|
2016-08-10 06:57:51 -04:00
|
|
|
|
2016-07-25 08:52:18 -04:00
|
|
|
given(:pipeline) do
|
2016-08-10 06:57:51 -04:00
|
|
|
create(:ci_pipeline,
|
|
|
|
project: project,
|
|
|
|
sha: project.commit.sha,
|
|
|
|
ref: project.default_branch,
|
|
|
|
status: status)
|
2016-07-25 08:52:18 -04:00
|
|
|
end
|
2016-08-10 06:57:51 -04:00
|
|
|
|
2016-07-25 08:52:18 -04:00
|
|
|
given!(:build) do
|
|
|
|
create(:ci_build, :success, :artifacts,
|
|
|
|
pipeline: pipeline,
|
|
|
|
status: pipeline.status,
|
|
|
|
name: 'build')
|
|
|
|
end
|
|
|
|
|
|
|
|
background do
|
|
|
|
login_as(user)
|
|
|
|
project.team << [user, role]
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'when files tree' do
|
|
|
|
context 'with artifacts' do
|
|
|
|
before do
|
|
|
|
visit namespace_project_tree_path(
|
|
|
|
project.namespace, project, project.default_branch)
|
|
|
|
end
|
|
|
|
|
|
|
|
scenario 'shows download artifacts button' do
|
|
|
|
expect(page).to have_link "Download '#{build.name}'"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|