debian-mirror-gitlab/spec/features/commits_spec.rb

187 lines
5.6 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2015-10-24 18:46:33 +05:30
require 'spec_helper'
2015-12-23 02:04:40 +05:30
describe 'Commits' do
2017-08-17 22:00:37 +05:30
let(:project) { create(:project, :repository) }
2017-09-10 17:25:29 +05:30
let(:user) { create(:user) }
2015-10-24 18:46:33 +05:30
2015-12-23 02:04:40 +05:30
describe 'CI' do
2015-10-24 18:46:33 +05:30
before do
2017-09-10 17:25:29 +05:30
sign_in(user)
stub_ci_pipeline_to_return_yaml_file
2015-10-24 18:46:33 +05:30
end
2019-09-04 21:01:54 +05:30
let(:creator) { create(:user, developer_projects: [project]) }
let!(:pipeline) do
2016-11-24 13:41:30 +05:30
create(:ci_pipeline,
project: project,
2017-08-17 22:00:37 +05:30
user: creator,
2016-11-24 13:41:30 +05:30
ref: project.default_branch,
sha: project.commit.sha,
2017-08-17 22:00:37 +05:30
status: :success,
created_at: 5.months.ago)
2015-12-23 02:04:40 +05:30
end
2016-02-05 20:25:01 +05:30
context 'commit status is Generic Commit Status' do
2016-11-24 13:41:30 +05:30
let!(:status) { create(:generic_commit_status, pipeline: pipeline) }
2015-12-23 02:04:40 +05:30
2016-04-02 18:10:28 +05:30
before do
2018-03-17 18:26:18 +05:30
project.add_reporter(user)
2016-04-02 18:10:28 +05:30
end
2016-02-05 20:25:01 +05:30
describe 'Commit builds' do
before do
2018-03-17 18:26:18 +05:30
visit pipeline_path(pipeline)
2016-02-05 20:25:01 +05:30
end
2015-12-23 02:04:40 +05:30
it { expect(page).to have_content pipeline.sha[0..7] }
2016-02-05 20:25:01 +05:30
it 'contains generic commit status build' do
page.within('.table-holder') do
expect(page).to have_content "##{status.id}" # build id
expect(page).to have_content 'generic' # build name
end
2015-12-23 02:04:40 +05:30
end
end
2015-10-24 18:46:33 +05:30
end
2016-02-05 20:25:01 +05:30
context 'commit status is Ci Build' do
2016-11-24 13:41:30 +05:30
let!(:build) { create(:ci_build, pipeline: pipeline) }
2018-11-08 19:23:39 +05:30
let(:artifacts_file) { fixture_file_upload('spec/fixtures/banana_sample.gif', 'image/gif') }
2015-10-24 18:46:33 +05:30
2016-04-02 18:10:28 +05:30
context 'when logged as developer' do
2016-02-05 20:25:01 +05:30
before do
2018-03-17 18:26:18 +05:30
project.add_developer(user)
2016-02-05 20:25:01 +05:30
end
2015-11-26 14:37:03 +05:30
2016-04-02 18:10:28 +05:30
describe 'Project commits' do
2016-11-24 13:41:30 +05:30
let!(:pipeline_from_other_branch) do
create(:ci_pipeline,
project: project,
ref: 'fix',
sha: project.commit.sha,
status: :failed)
end
2016-04-02 18:10:28 +05:30
before do
2017-09-10 17:25:29 +05:30
visit project_commits_path(project, :master)
2016-02-05 20:25:01 +05:30
end
2015-11-26 14:37:03 +05:30
2016-11-24 13:41:30 +05:30
it 'shows correct build status from default branch' do
page.within("//li[@id='commit-#{pipeline.short_sha}']") do
2016-11-24 13:41:30 +05:30
expect(page).to have_css('.ci-status-link')
expect(page).to have_css('.ci-status-icon-success')
2016-04-02 18:10:28 +05:30
end
end
2016-02-05 20:25:01 +05:30
end
2015-11-26 14:37:03 +05:30
2017-09-10 17:25:29 +05:30
describe 'Commit builds', :js do
2016-04-02 18:10:28 +05:30
before do
2019-09-04 21:01:54 +05:30
project.add_developer(user)
2018-03-17 18:26:18 +05:30
visit pipeline_path(pipeline)
2016-04-02 18:10:28 +05:30
end
2015-10-24 18:46:33 +05:30
2019-09-04 21:01:54 +05:30
it 'shows pipeline data' do
2017-08-17 22:00:37 +05:30
expect(page).to have_content pipeline.sha[0..7]
2019-09-04 21:01:54 +05:30
expect(page).to have_content pipeline.git_commit_message.gsub!(/\s+/, ' ')
2017-08-17 22:00:37 +05:30
expect(page).to have_content pipeline.user.name
end
2015-12-23 02:04:40 +05:30
end
2016-04-02 18:10:28 +05:30
context 'Download artifacts' do
before do
2019-09-04 21:01:54 +05:30
create(:ci_job_artifact, :archive, file: artifacts_file, job: build)
2016-04-02 18:10:28 +05:30
end
2015-10-24 18:46:33 +05:30
2016-04-02 18:10:28 +05:30
it do
2018-03-17 18:26:18 +05:30
visit pipeline_path(pipeline)
2016-04-02 18:10:28 +05:30
click_on 'Download artifacts'
expect(page.response_headers['Content-Type']).to eq(artifacts_file.content_type)
end
2015-12-23 02:04:40 +05:30
end
2016-02-05 20:25:01 +05:30
2016-04-02 18:10:28 +05:30
describe 'Cancel all builds' do
2019-12-26 22:10:19 +05:30
it 'cancels commit', :js, :sidekiq_might_not_need_inline do
2018-03-17 18:26:18 +05:30
visit pipeline_path(pipeline)
2016-04-02 18:10:28 +05:30
click_on 'Cancel running'
expect(page).to have_content 'canceled'
2016-02-05 20:25:01 +05:30
end
2016-04-02 18:10:28 +05:30
end
2016-02-05 20:25:01 +05:30
2016-04-02 18:10:28 +05:30
describe 'Cancel build' do
2019-12-26 22:10:19 +05:30
it 'cancels build', :js, :sidekiq_might_not_need_inline do
2018-03-17 18:26:18 +05:30
visit pipeline_path(pipeline)
2017-09-10 17:25:29 +05:30
find('.js-btn-cancel-pipeline').click
2016-04-02 18:10:28 +05:30
expect(page).to have_content 'canceled'
2016-02-05 20:25:01 +05:30
end
end
2015-10-24 18:46:33 +05:30
end
2016-04-02 18:10:28 +05:30
context "when logged as reporter" do
before do
2018-03-17 18:26:18 +05:30
project.add_reporter(user)
2019-09-04 21:01:54 +05:30
create(:ci_job_artifact, :archive, file: artifacts_file, job: build)
2018-03-17 18:26:18 +05:30
visit pipeline_path(pipeline)
2016-04-02 18:10:28 +05:30
end
2017-09-10 17:25:29 +05:30
it 'Renders header', :js do
expect(page).to have_content pipeline.sha[0..7]
2019-09-04 21:01:54 +05:30
expect(page).to have_content pipeline.git_commit_message.gsub!(/\s+/, ' ')
2017-08-17 22:00:37 +05:30
expect(page).to have_content pipeline.user.name
expect(page).not_to have_link('Cancel running')
2017-08-17 22:00:37 +05:30
expect(page).not_to have_link('Retry')
2016-04-02 18:10:28 +05:30
end
2017-09-10 17:25:29 +05:30
it do
expect(page).to have_link('Download artifacts')
end
2016-04-02 18:10:28 +05:30
end
2017-09-10 17:25:29 +05:30
context 'when accessing internal project with disallowed access', :js do
2016-04-02 18:10:28 +05:30
before do
project.update(
visibility_level: Gitlab::VisibilityLevel::INTERNAL,
public_builds: false)
2019-09-04 21:01:54 +05:30
create(:ci_job_artifact, :archive, file: artifacts_file, job: build)
2018-03-17 18:26:18 +05:30
visit pipeline_path(pipeline)
2016-04-02 18:10:28 +05:30
end
it do
expect(page).to have_content pipeline.sha[0..7]
2019-09-04 21:01:54 +05:30
expect(page).to have_content pipeline.git_commit_message.gsub!(/\s+/, ' ')
2017-08-17 22:00:37 +05:30
expect(page).to have_content pipeline.user.name
2017-09-10 17:25:29 +05:30
expect(page).not_to have_link('Cancel running')
2017-08-17 22:00:37 +05:30
expect(page).not_to have_link('Retry')
2016-04-02 18:10:28 +05:30
end
end
2015-10-24 18:46:33 +05:30
end
end
2017-08-17 22:00:37 +05:30
context 'viewing commits for a branch' do
let(:branch_name) { 'master' }
before do
2018-11-18 11:00:15 +05:30
project.add_maintainer(user)
2017-09-10 17:25:29 +05:30
sign_in(user)
visit project_commits_path(project, branch_name)
2017-08-17 22:00:37 +05:30
end
it 'includes the committed_date for each commit' do
2018-03-17 18:26:18 +05:30
commits = project.repository.commits(branch_name, limit: 40)
2017-08-17 22:00:37 +05:30
commits.each do |commit|
2018-03-17 18:26:18 +05:30
expect(page).to have_content("authored #{commit.authored_date.strftime("%b %d, %Y")}")
2017-09-10 17:25:29 +05:30
end
end
2018-03-17 18:26:18 +05:30
it 'shows the ref switcher with the multi-file editor enabled', :js do
set_cookie('new_repo', 'true')
visit project_commits_path(project, branch_name)
2017-09-10 17:25:29 +05:30
2018-03-17 18:26:18 +05:30
expect(find('.js-project-refs-dropdown')).to have_content branch_name
2017-09-10 17:25:29 +05:30
end
end
2015-10-24 18:46:33 +05:30
end