summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/data_builder/push_spec.rb
blob: 7eb81a880bf2f10de37257daac8cb82e29afbb3f (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
125
126
127
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::DataBuilder::Push do
  include RepoHelpers

  let(:project) { create(:project, :repository) }
  let(:user) { build(:user, public_email: 'public-email@example.com') }

  describe '.build' do
    let(:sample) { RepoHelpers.sample_compare }
    let(:commits) { project.repository.commits_between(sample.commits.first, sample.commits.last) }
    let(:subject) do
      described_class.build(project: project,
                            user: user,
                            ref: sample.target_branch,
                            commits: commits,
                            commits_count: commits.length,
                            message: 'test message',
                            with_changed_files: with_changed_files)
    end

    context 'with changed files' do
      let(:with_changed_files) { true }

      it 'returns commit hook data' do
        expect(subject[:project]).to eq(project.hook_attrs)
        expect(subject[:commits].first.keys).to include(*%i(added removed modified))
      end
    end

    context 'without changed files' do
      let(:with_changed_files) { false }

      it 'returns commit hook data without include deltas' do
        expect(subject[:project]).to eq(project.hook_attrs)
        expect(subject[:commits].first.keys).not_to include(*%i(added removed modified))
      end
    end
  end

  describe '.build_sample' do
    let(:data) { described_class.build_sample(project, user) }

    it { expect(data).to be_a(Hash) }
    it { expect(data[:before]).to eq('1b12f15a11fc6e62177bef08f47bc7b5ce50b141') }
    it { expect(data[:after]).to eq('b83d6e391c22777fca1ed3012fce84f633d7fed0') }
    it { expect(data[:ref]).to eq('refs/heads/master') }
    it { expect(data[:commits].size).to eq(3) }
    it { expect(data[:total_commits_count]).to eq(3) }
    it { expect(data[:commits].first[:added]).to eq(['bar/branch-test.txt']) }
    it { expect(data[:commits].first[:modified]).to eq([]) }
    it { expect(data[:commits].first[:removed]).to eq([]) }

    include_examples 'project hook data with deprecateds'
    include_examples 'deprecated repository hook data'
  end

  describe '.sample_data' do
    let(:data) { described_class.sample_data }

    it { expect(data).to be_a(Hash) }
    it { expect(data[:before]).to eq('95790bf891e76fee5e1747ab589903a6a1f80f22') }
    it { expect(data[:after]).to eq('da1560886d4f094c3e6c9ef40349f7d38b5d27d7') }
    it { expect(data[:ref]).to eq('refs/heads/master') }
    it { expect(data[:project_id]).to eq(15) }
    it { expect(data[:commits].size).to eq(1) }
    it { expect(data[:total_commits_count]).to eq(1) }
    it 'contains project data' do
      expect(data[:project]).to be_a(Hash)
      expect(data[:project][:id]).to eq(15)
      expect(data[:project][:name]).to eq('gitlab')
      expect(data[:project][:description]).to eq('')
      expect(data[:project][:web_url]).to eq('http://test.example.com/gitlab/gitlab')
      expect(data[:project][:avatar_url]).to eq('https://s.gravatar.com/avatar/d4c74594d841139328695756648b6bd6?s=8://s.gravatar.com/avatar/d4c74594d841139328695756648b6bd6?s=80')
      expect(data[:project][:git_http_url]).to eq('http://test.example.com/gitlab/gitlab.git')
      expect(data[:project][:git_ssh_url]).to eq('git@test.example.com:gitlab/gitlab.git')
      expect(data[:project][:namespace]).to eq('gitlab')
      expect(data[:project][:visibility_level]).to eq(0)
      expect(data[:project][:path_with_namespace]).to eq('gitlab/gitlab')
      expect(data[:project][:default_branch]).to eq('master')
    end
  end

  describe '.build' do
    let(:data) do
      described_class.build(
        project: project,
        user: user,
        oldrev: Gitlab::Git::BLANK_SHA,
        newrev: '8a2a6eb295bb170b34c24c76c49ed0e9b2eaf34b',
        ref: 'refs/tags/v1.1.0')
    end

    it { expect(data).to be_a(Hash) }
    it { expect(data[:before]).to eq(Gitlab::Git::BLANK_SHA) }
    it { expect(data[:checkout_sha]).to eq('5937ac0a7beb003549fc5fd26fc247adbce4a52e') }
    it { expect(data[:after]).to eq('8a2a6eb295bb170b34c24c76c49ed0e9b2eaf34b') }
    it { expect(data[:ref]).to eq('refs/tags/v1.1.0') }
    it { expect(data[:user_id]).to eq(user.id) }
    it { expect(data[:user_name]).to eq(user.name) }
    it { expect(data[:user_username]).to eq(user.username) }
    it { expect(data[:user_email]).to eq(user.public_email) }
    it { expect(data[:user_avatar]).to eq(user.avatar_url) }
    it { expect(data[:project_id]).to eq(project.id) }
    it { expect(data[:project]).to be_a(Hash) }
    it { expect(data[:commits]).to be_empty }
    it { expect(data[:total_commits_count]).to be_zero }

    include_examples 'project hook data with deprecateds'
    include_examples 'deprecated repository hook data'

    it 'does not raise an error when given nil commits' do
      expect { described_class.build(project: spy, user: spy, ref: 'refs/tags/v1.1.0', commits: nil) }
        .not_to raise_error
    end
  end

  describe '.build_bulk' do
    subject do
      described_class.build_bulk(action: :created, ref_type: :branch, changes: [double, double])
    end

    it { is_expected.to eq(action: :created, ref_count: 2, ref_type: :branch) }
  end
end