1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe 'Commit > User view commits', feature_category: :source_code_management do
let_it_be(:user) { create(:user) }
let_it_be(:group) { create(:group, :public) }
shared_examples 'can view commits' do
it 'lists the correct number of commits' do
expect(page).to have_selector('#commits-list > li:nth-child(2) > ul', count: 1)
end
end
describe 'Commits List' do
context 'when project is public' do
let_it_be(:project) { create_default(:project, :public, :repository, group: group) }
before do
visit project_commits_path(project)
end
it_behaves_like 'can view commits'
end
context 'when project is public with private repository' do
let_it_be(:project) { create_default(:project, :public, :repository, :repository_private, group: group) }
context 'and user is an inherited member from the group' do
context 'and user is a guest' do
before do
group.add_guest(user)
sign_in(user)
visit project_commits_path(project)
end
it_behaves_like 'can view commits'
end
end
end
context 'when project is private' do
let_it_be(:project) { create_default(:project, :private, :repository, group: group) }
context 'and user is an inherited member from the group' do
context 'and user is a guest' do
before do
group.add_guest(user)
sign_in(user)
visit project_commits_path(project)
end
it 'renders not found' do
expect(page).to have_title('Not Found')
expect(page).to have_content('Page not found')
end
end
end
end
end
describe 'Single commit', :js do
let_it_be(:project) { create_default(:project, :public, :repository, group: group) }
let_it_be(:branch_name) { 'feature' }
let_it_be(:sha) { project.commit(branch_name).sha }
it 'passes axe automated accessibility testing' do
visit project_commit_path(project, sha)
wait_for_requests # ensures page is fully loaded
expect(page).to be_axe_clean.within('#content-body').skipping :'color-contrast', :'link-in-text-block',
:'link-name', :'valid-lang'
end
context 'when displayed with rapid_diffs' do
it 'passes axe automated accessibility testing' do
visit project_commit_path(project, sha, rapid_diffs: true)
wait_for_requests # ensures page is fully loaded
# remove 'valid-lang' when 'lang' attribute is removed from the highlighted code
# https://gitlab.com/gitlab-org/gitlab/-/issues/466594
# remove 'color-contrast' when code highlight themes conform to a contrast of 4.5:1
expect(page).to be_axe_clean.within('#content-body').skipping :'valid-lang', :'color-contrast'
end
end
end
end
|