blob: 3377fcdee48f32ecbc8ce782aa4a3a3ab6e439ed (
plain)
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
# 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)
expect(page).to have_css('.blame-commit')
expect(page).not_to have_css('.gl-pagination')
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)
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('#L3')
expect(find('.page-link.active')).to have_text('1')
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
expect(page).not_to have_css('#L1')
expect(page).to have_css('#L3')
expect(find('.page-link.active')).to have_text('2')
end
it 'correctly redirects to the prior blame page' do
find('.version-link').click
expect(find('.page-link.active')).to have_text('2')
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)
expect(page).to have_css('.blame-commit')
expect(page).not_to have_css('.gl-pagination')
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)
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
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 hundred lines of the file with pagination' do
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
|