Welcome to mirror list, hosted at ThFree Co, Russian Federation.

blame_spec.rb « blobs « projects « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3b2b74b469ee08e8faf2b57d0c00123de858c6a9 (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
# 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

  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