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