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

37 lines
913 B
Ruby
Raw Normal View History

2016-09-29 09:46:39 +05:30
require 'spec_helper'
2018-10-15 14:42:47 +05:30
describe 'Projects > Files > Download buttons in files tree' do
let(:project) { create(:project, :repository) }
let(:user) { project.creator }
2016-09-29 09:46:39 +05:30
2018-10-15 14:42:47 +05:30
let(:pipeline) do
2016-09-29 09:46:39 +05:30
create(:ci_pipeline,
project: project,
sha: project.commit.sha,
ref: project.default_branch,
2018-10-15 14:42:47 +05:30
status: 'success')
2016-09-29 09:46:39 +05:30
end
2018-10-15 14:42:47 +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-10-15 14:42:47 +05:30
before do
2017-09-10 17:25:29 +05:30
sign_in(user)
2018-10-15 14:42:47 +05:30
project.add_developer(user)
2016-09-29 09:46:39 +05:30
2018-10-15 14:42:47 +05:30
visit project_tree_path(project, project.default_branch)
end
2016-09-29 09:46:39 +05:30
2018-10-15 14:42:47 +05:30
context 'with artifacts' do
it 'shows download artifacts button' do
href = latest_succeeded_project_artifacts_path(project, "#{project.default_branch}/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