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

205 lines
6.2 KiB
Ruby
Raw Normal View History

2015-10-24 18:46:33 +05:30
require 'spec_helper'
2015-12-23 02:04:40 +05:30
describe 'Commits' do
2015-10-24 18:46:33 +05:30
include CiStatusHelper
2017-08-17 22:00:37 +05:30
let(:project) { create(:project, :repository) }
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
login_as :user
stub_ci_pipeline_to_return_yaml_file
2015-10-24 18:46:33 +05:30
end
2017-08-17 22:00:37 +05:30
let(:creator) { create(:user) }
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
project.team << [@user, :reporter]
end
2016-02-05 20:25:01 +05:30
describe 'Commit builds' do
before do
visit ci_status_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) }
2016-04-02 18:10:28 +05:30
let(:artifacts_file) { fixture_file_upload(Rails.root + '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
2016-04-02 18:10:28 +05:30
project.team << [@user, :developer]
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
visit namespace_project_commits_path(project.namespace, 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
2016-04-02 18:10:28 +05:30
describe 'Commit builds' do
before do
visit ci_status_path(pipeline)
2016-04-02 18:10:28 +05:30
end
2015-10-24 18:46:33 +05:30
2017-08-17 22:00:37 +05:30
it 'shows pipeline`s data' do
expect(page).to have_content pipeline.sha[0..7]
expect(page).to have_content pipeline.git_commit_message
expect(page).to have_content pipeline.user.name
expect(page).to have_content pipeline.created_at.strftime('%b %d, %Y')
end
2015-12-23 02:04:40 +05:30
end
2016-04-02 18:10:28 +05:30
context 'Download artifacts' do
before do
build.update_attributes(artifacts_file: artifacts_file)
end
2015-10-24 18:46:33 +05:30
2016-04-02 18:10:28 +05:30
it do
visit ci_status_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
it 'cancels commit' do
visit ci_status_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
it 'cancels build' do
visit ci_status_path(pipeline)
2017-08-17 22:00:37 +05:30
find('a.btn[title="Cancel"]').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
2016-04-02 18:10:28 +05:30
describe '.gitlab-ci.yml not found warning' do
context 'ci builds enabled' do
it "does not show warning" do
visit ci_status_path(pipeline)
2016-04-02 18:10:28 +05:30
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 ci_status_path(pipeline)
2016-04-02 18:10:28 +05:30
expect(page).to have_content '.gitlab-ci.yml not found in this commit'
end
2016-02-05 20:25:01 +05:30
end
2015-12-23 02:04:40 +05:30
2016-04-02 18:10:28 +05:30
context 'ci builds disabled' do
before do
stub_ci_builds_disabled
stub_ci_pipeline_yaml_file(nil)
visit ci_status_path(pipeline)
2016-04-02 18:10:28 +05:30
end
it 'does not show warning' do
expect(page).not_to have_content '.gitlab-ci.yml not found in this commit'
end
2016-02-05 20:25:01 +05:30
end
2015-12-23 02:04:40 +05:30
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
project.team << [@user, :reporter]
build.update_attributes(artifacts_file: artifacts_file)
visit ci_status_path(pipeline)
2016-04-02 18:10:28 +05:30
end
it do
expect(page).to have_content pipeline.sha[0..7]
expect(page).to have_content pipeline.git_commit_message
2017-08-17 22:00:37 +05:30
expect(page).to have_content pipeline.user.name
2016-04-02 18:10:28 +05:30
expect(page).to have_link('Download artifacts')
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
context 'when accessing internal project with disallowed access' do
before do
project.update(
visibility_level: Gitlab::VisibilityLevel::INTERNAL,
public_builds: false)
build.update_attributes(artifacts_file: artifacts_file)
visit ci_status_path(pipeline)
2016-04-02 18:10:28 +05:30
end
it do
expect(page).to have_content pipeline.sha[0..7]
expect(page).to have_content pipeline.git_commit_message
2017-08-17 22:00:37 +05:30
expect(page).to have_content pipeline.user.name
expect(page).not_to have_link('Download artifacts')
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' }
let(:user) { create(:user) }
before do
project.team << [user, :master]
login_with(user)
visit namespace_project_commits_path(project.namespace, project, branch_name)
end
it 'includes the committed_date for each commit' do
commits = project.repository.commits(branch_name)
commits.each do |commit|
expect(page).to have_content("committed #{commit.committed_date.strftime("%b %d, %Y")}")
end
end
end
2015-10-24 18:46:33 +05:30
end