315e6392cd
If user does not have the correct permissions, the merge request button is hidden Closes #21805
46 lines
1.3 KiB
Ruby
46 lines
1.3 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'Branches', feature: true do
|
|
let(:project) { create(:project, :public) }
|
|
let(:repository) { project.repository }
|
|
|
|
context 'logged in' do
|
|
before do
|
|
login_as :user
|
|
project.team << [@user, :developer]
|
|
end
|
|
|
|
describe 'Initial branches page' do
|
|
it 'shows all the branches' do
|
|
visit namespace_project_branches_path(project.namespace, project)
|
|
|
|
repository.branches { |branch| expect(page).to have_content("#{branch.name}") }
|
|
expect(page).to have_content("Protected branches can be managed in project settings")
|
|
end
|
|
end
|
|
|
|
describe 'Find branches' do
|
|
it 'shows filtered branches', js: true do
|
|
visit namespace_project_branches_path(project.namespace, project)
|
|
|
|
fill_in 'branch-search', with: 'fix'
|
|
find('#branch-search').native.send_keys(:enter)
|
|
|
|
expect(page).to have_content('fix')
|
|
expect(find('.all-branches')).to have_selector('li', count: 1)
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'logged out' do
|
|
before do
|
|
visit namespace_project_branches_path(project.namespace, project)
|
|
end
|
|
|
|
it 'does not show merge request button' do
|
|
page.within first('.all-branches li') do
|
|
expect(page).not_to have_content 'Merge Request'
|
|
end
|
|
end
|
|
end
|
|
end
|