gitlab-org--gitlab-foss/spec/features/projects/blobs/blame_spec.rb

158 lines
4.3 KiB
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe 'File blame', :js do
include TreeHelper
let_it_be(:project) { create(:project, :public, :repository) }
let(:path) { 'CHANGELOG' }
def visit_blob_blame(path)
visit project_blame_path(project, tree_join('master', path))
wait_for_all_requests
end
context 'as a developer' do
let(:user) { create(:user) }
let(:role) { :developer }
before do
project.add_role(user, role)
sign_in(user)
end
it 'does not display lock, replace and delete buttons' do
visit_blob_blame(path)
expect(page).not_to have_button("Lock")
expect(page).not_to have_button("Replace")
expect(page).not_to have_button("Delete")
end
end
it 'displays the blame page without pagination' do
visit_blob_blame(path)
within '[data-testid="blob-content-holder"]' do
expect(page).to have_css('.blame-commit')
expect(page).not_to have_css('.gl-pagination')
expect(page).not_to have_link _('View entire blame')
end
end
context 'when blob length is over the blame range limit' do
before do
stub_const('Projects::BlameService::PER_PAGE', 2)
end
it 'displays two first lines of the file with pagination' do
visit_blob_blame(path)
within '[data-testid="blob-content-holder"]' do
expect(page).to have_css('.blame-commit')
expect(page).to have_css('.gl-pagination')
expect(page).to have_link _('View entire blame')
expect(page).to have_css('#L1')
expect(page).not_to have_css('#L3')
expect(find('.page-link.active')).to have_text('1')
end
end
context 'when user clicks on the next button' do
before do
visit_blob_blame(path)
find('.js-next-button').click
end
it 'displays next two lines of the file with pagination' do
within '[data-testid="blob-content-holder"]' do
expect(page).not_to have_css('#L1')
expect(page).to have_css('#L3')
expect(find('.page-link.active')).to have_text('2')
end
end
it 'correctly redirects to the prior blame page' do
within '[data-testid="blob-content-holder"]' do
find('.version-link').click
expect(find('.page-link.active')).to have_text('2')
end
end
end
context 'when user clicks on View entire blame button' do
before do
visit_blob_blame(path)
end
it 'displays the blame page without pagination' do
within '[data-testid="blob-content-holder"]' do
click_link _('View entire blame')
expect(page).to have_css('#L1')
expect(page).to have_css('#L3')
expect(page).not_to have_css('.gl-pagination')
end
end
end
context 'when feature flag disabled' do
before do
stub_feature_flags(blame_page_pagination: false)
end
it 'displays the blame page without pagination' do
visit_blob_blame(path)
within '[data-testid="blob-content-holder"]' do
expect(page).to have_css('.blame-commit')
expect(page).not_to have_css('.gl-pagination')
expect(page).not_to have_link _('View entire blame')
end
end
end
end
context 'when blob length is over global max page limit' do
before do
stub_const('Projects::BlameService::PER_PAGE', 200)
end
let(:path) { 'files/markdown/ruby-style-guide.md' }
it 'displays two hundred lines of the file with pagination' do
visit_blob_blame(path)
within '[data-testid="blob-content-holder"]' do
expect(page).to have_css('.blame-commit')
expect(page).to have_css('.gl-pagination')
expect(page).to have_css('#L1')
expect(page).not_to have_css('#L201')
expect(find('.page-link.active')).to have_text('1')
end
end
context 'when user clicks on the next button' do
before do
visit_blob_blame(path)
end
it 'displays next two hundred lines of the file with pagination' do
within '[data-testid="blob-content-holder"]' do
find('.js-next-button').click
expect(page).not_to have_css('#L1')
expect(page).to have_css('#L201')
expect(find('.page-link.active')).to have_text('2')
end
end
end
end
end