summaryrefslogtreecommitdiff
path: root/spec/serializers/diff_file_base_entity_spec.rb
blob: 94c39e117903fc463f3dfb1fe90d04bde6691dcc (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe DiffFileBaseEntity do
  let(:project) { create(:project, :repository) }
  let(:repository) { project.repository }
  let(:entity) { described_class.new(diff_file, options).as_json }

  context 'submodule information for a' do
    let(:commit_sha) { "" }
    let(:commit) { project.commit(commit_sha) }
    let(:options) { { request: {}, submodule_links: Gitlab::SubmoduleLinks.new(repository) } }
    let(:diff_file) { commit.diffs.diff_files.to_a.last }

    context 'newly added submodule' do
      let(:commit_sha) { "cfe32cf61b73a0d5e9f13e774abde7ff789b1660" }

      it 'says it is a submodule and contains links' do
        expect(entity[:submodule]).to eq(true)
        expect(entity[:submodule_link]).to eq("https://github.com/randx/six")
        expect(entity[:submodule_tree_url]).to eq(
          "https://github.com/randx/six/tree/409f37c4f05865e4fb208c771485f211a22c4c2d"
        )
      end

      it 'has no compare url because the submodule was newly added' do
        expect(entity[:submodule_compare]).to eq(nil)
      end
    end

    context 'changed submodule' do
      # Test repo does not contain a commit that changes a submodule, so we have create such a commit here
      let(:commit_sha) { repository.update_submodule(project.members[0].user, "six", "c6bc3aa2ee76cadaf0cbd325067c55450997632e", message: "Go one commit back", branch: "master") }

      it 'contains a link to compare the changes' do
        expect(entity[:submodule_compare]).to eq(
          {
            url: "https://github.com/randx/six/compare/409f37c4f05865e4fb208c771485f211a22c4c2d...c6bc3aa2ee76cadaf0cbd325067c55450997632e",
            old_sha: "409f37c4f05865e4fb208c771485f211a22c4c2d",
            new_sha: "c6bc3aa2ee76cadaf0cbd325067c55450997632e"
          }
        )
      end
    end

    context 'normal file (no submodule)' do
      let(:commit_sha) { '570e7b2abdd848b95f2f578043fc23bd6f6fd24d' }

      it 'sets submodule to false' do
        expect(entity[:submodule]).to eq(false)
        expect(entity[:submodule_compare]).to eq(nil)
      end
    end
  end

  context 'contains raw sizes for the blob' do
    let(:commit) { project.commit('png-lfs') }
    let(:options) { { request: {} } }
    let(:diff_file) { commit.diffs.diff_files.to_a.second }

    it do
      expect(entity[:old_size]).to eq(1219696)
      expect(entity[:new_size]).to eq(132)
    end
  end

  context 'edit_path' do
    let(:diff_file) { merge_request.diffs.diff_files.to_a.last }
    let(:options) { { request: EntityRequest.new(current_user: create(:user)), merge_request: merge_request } }
    let(:params) { {} }

    shared_examples 'a diff file edit path to the source branch' do
      it do
        expect(entity[:edit_path]).to eq(Gitlab::Routing.url_helpers.project_edit_blob_path(project, File.join(merge_request.source_branch, diff_file.new_path), params))
      end
    end

    context 'open' do
      let(:merge_request) { create(:merge_request, source_project: project, target_branch: 'master', source_branch: 'feature') }
      let(:params) { { from_merge_request_iid: merge_request.iid } }

      it_behaves_like 'a diff file edit path to the source branch'

      context 'removed source branch' do
        before do
          allow(merge_request).to receive(:source_branch_exists?).and_return(false)
        end

        it do
          expect(entity[:edit_path]).to eq(nil)
        end
      end
    end

    context 'closed' do
      let(:merge_request) { create(:merge_request, source_project: project, state: :closed, target_branch: 'master', source_branch: 'feature') }
      let(:params) { { from_merge_request_iid: merge_request.iid } }

      it_behaves_like 'a diff file edit path to the source branch'

      context 'removed source branch' do
        before do
          allow(merge_request).to receive(:source_branch_exists?).and_return(false)
        end

        it do
          expect(entity[:edit_path]).to eq(nil)
        end
      end
    end

    context 'merged' do
      let(:merge_request) { create(:merge_request, source_project: project, state: :merged) }

      it do
        expect(entity[:edit_path]).to eq(Gitlab::Routing.url_helpers.project_edit_blob_path(project, File.join(merge_request.target_branch, diff_file.new_path), {}))
      end
    end
  end
end