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

commit_spec.rb « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 61792ea5a5889bfe3389d8035e238e4c5f57bf65 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Commit', feature_category: :source_code_management do
  let_it_be(:project) { create(:project, :repository) }
  let_it_be(:user) { create(:user) }

  shared_examples "single commit view" do
    let(:commit) do
      project.repository.commits(nil, limit: 100).find do |commit|
        commit.diffs.size > 1
      end
    end

    let(:files) { commit.diffs.diff_files.to_a }

    before do
      project.add_maintainer(user)
      sign_in(user)
    end

    describe "commit details" do
      subject { page }

      before do
        visit project_commit_path(project, commit)
      end

      it "shows the short commit message, number of total changes and stats", :js, :aggregate_failures do
        expect(page).to have_content(commit.title)
        expect(page).to have_content("Changes #{commit.diffs.size}")
        expect(page).to have_selector(".diff-stats")
      end

      it_behaves_like 'code highlight'
    end

    describe "pagination" do
      before do
        stub_const("Projects::CommitController::COMMIT_DIFFS_PER_PAGE", 1)

        visit project_commit_path(project, commit)
      end

      def diff_files_on_page
        page.all('.files .diff-file').pluck(:id)
      end

      it "shows paginated content and controls to navigate", :js, :aggregate_failures do
        expect(page).to have_content("Showing 1 changed file")

        wait_for_requests

        expect(diff_files_on_page).to eq([files[0].file_hash])

        within(".files .gl-pagination") do
          click_on("2")
        end

        wait_for_requests

        expect(diff_files_on_page).to eq([files[1].file_hash])
      end
    end
  end

  it_behaves_like "single commit view"

  context "when super sidebar is enabled" do
    before do
      user.update!(use_new_navigation: true)
    end

    it_behaves_like "single commit view"
  end
end