ec43e36444
This prevents creating merge requests targeting archived projects. This could happen when a project was already forked, but then the source was archived.
116 lines
3.4 KiB
Ruby
116 lines
3.4 KiB
Ruby
require 'spec_helper'
|
|
|
|
feature 'Merge Request button' do
|
|
shared_examples 'Merge request button only shown when allowed' do
|
|
let(:user) { create(:user) }
|
|
let(:project) { create(:project, :public, :repository) }
|
|
let(:forked_project) { create(:project, :public, :repository, forked_from_project: project) }
|
|
|
|
context 'not logged in' do
|
|
it 'does not show Create merge request button' do
|
|
visit url
|
|
|
|
expect(page).not_to have_link(label)
|
|
end
|
|
end
|
|
|
|
context 'logged in as developer' do
|
|
before do
|
|
sign_in(user)
|
|
project.add_developer(user)
|
|
end
|
|
|
|
it 'shows Create merge request button' do
|
|
href = project_new_merge_request_path(project,
|
|
merge_request: { source_branch: 'feature',
|
|
target_branch: 'master' })
|
|
|
|
visit url
|
|
|
|
within('#content-body') do
|
|
expect(page).to have_link(label, href: href)
|
|
end
|
|
end
|
|
|
|
context 'merge requests are disabled' do
|
|
before do
|
|
project.project_feature.update!(merge_requests_access_level: ProjectFeature::DISABLED)
|
|
end
|
|
|
|
it 'does not show Create merge request button' do
|
|
visit url
|
|
|
|
within('#content-body') do
|
|
expect(page).not_to have_link(label)
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'when the project is archived' do
|
|
it 'hides the link' do
|
|
project.update!(archived: true)
|
|
|
|
visit url
|
|
|
|
within("#content-body") do
|
|
expect(page).not_to have_link(label)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'logged in as non-member' do
|
|
before do
|
|
sign_in(user)
|
|
end
|
|
|
|
it 'does not show Create merge request button' do
|
|
visit url
|
|
|
|
within('#content-body') do
|
|
expect(page).not_to have_link(label)
|
|
end
|
|
end
|
|
|
|
context 'on own fork of project' do
|
|
let(:user) { forked_project.owner }
|
|
|
|
it 'shows Create merge request button' do
|
|
href = project_new_merge_request_path(forked_project,
|
|
merge_request: { source_branch: 'feature',
|
|
target_branch: 'master' })
|
|
|
|
visit fork_url
|
|
|
|
within("#content-body") do
|
|
expect(page).to have_link(label, href: href)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'on branches page' do
|
|
it_behaves_like 'Merge request button only shown when allowed' do
|
|
let(:label) { 'Merge request' }
|
|
let(:url) { project_branches_filtered_path(project, state: 'all', search: 'feature') }
|
|
let(:fork_url) { project_branches_filtered_path(forked_project, state: 'all', search: 'feature') }
|
|
end
|
|
end
|
|
|
|
context 'on compare page' do
|
|
it_behaves_like 'Merge request button only shown when allowed' do
|
|
let(:label) { 'Create merge request' }
|
|
let(:url) { project_compare_path(project, from: 'master', to: 'feature') }
|
|
let(:fork_url) { project_compare_path(forked_project, from: 'master', to: 'feature') }
|
|
end
|
|
end
|
|
|
|
context 'on commits page' do
|
|
it_behaves_like 'Merge request button only shown when allowed' do
|
|
let(:label) { 'Create merge request' }
|
|
let(:url) { project_commits_path(project, 'feature') }
|
|
let(:fork_url) { project_commits_path(forked_project, 'feature') }
|
|
end
|
|
end
|
|
end
|