summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/checks/single_change_access_spec.rb
blob: 8d9f96dd2b4dc4d3d94c221c027517ff947ebb84 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Checks::SingleChangeAccess do
  describe '#validate!' do
    include_context 'change access checks context'

    subject { change_access }

    context 'without failed checks' do
      it "doesn't raise an error" do
        expect { subject.validate! }.not_to raise_error
      end

      it 'calls pushes checks' do
        expect_next_instance_of(Gitlab::Checks::PushCheck) do |instance|
          expect(instance).to receive(:validate!)
        end

        subject.validate!
      end

      it 'calls branches checks' do
        expect_next_instance_of(Gitlab::Checks::BranchCheck) do |instance|
          expect(instance).to receive(:validate!)
        end

        subject.validate!
      end

      it 'calls tags checks' do
        expect_next_instance_of(Gitlab::Checks::TagCheck) do |instance|
          expect(instance).to receive(:validate!)
        end

        subject.validate!
      end

      it 'calls diff checks' do
        expect_next_instance_of(Gitlab::Checks::DiffCheck) do |instance|
          expect(instance).to receive(:validate!)
        end

        subject.validate!
      end
    end

    context 'when time limit was reached' do
      it 'raises a TimeoutError' do
        logger = Gitlab::Checks::TimedLogger.new(start_time: timeout.ago, timeout: timeout)
        access = described_class.new(changes,
                                     project: project,
                                     user_access: user_access,
                                     protocol: protocol,
                                     logger: logger)

        expect { access.validate! }.to raise_error(Gitlab::Checks::TimedLogger::TimeoutError)
      end
    end

    describe '#commits' do
      let(:expected_commits) { [Gitlab::Git::Commit.new(project.repository, { id: "1234" })] }

      let(:access) do
        described_class.new(changes,
                            project: project,
                            user_access: user_access,
                            protocol: protocol,
                            logger: logger,
                            commits: provided_commits)
      end

      shared_examples '#commits' do
        it 'returns expected commits' do
          expect(access.commits).to eq(expected_commits)
        end

        it 'returns expected commits on repeated calls' do
          expect(access.commits).to eq(expected_commits)
          expect(access.commits).to eq(expected_commits)
        end
      end

      context 'with provided commits' do
        let(:provided_commits) { expected_commits }

        before do
          expect(project.repository).not_to receive(:new_commits)
        end

        it_behaves_like '#commits'
      end

      context 'without provided commits' do
        let(:provided_commits) { nil }

        before do
          expect(project.repository)
            .to receive(:new_commits)
            .with(newrev)
            .once
            .and_return(expected_commits)
        end

        it_behaves_like '#commits'
      end
    end
  end
end