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

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

require 'spec_helper'

RSpec.describe Gitlab::Git::Changes do
  let(:changes) { described_class.new }

  describe '#includes_branches?' do
    subject { changes.includes_branches? }

    context 'has changes for branches' do
      before do
        changes.add_branch_change(oldrev: 'abc123', newrev: 'def456', ref: 'branch')
      end

      it { is_expected.to be_truthy }
    end

    context 'has no changes for branches' do
      before do
        changes.add_tag_change(oldrev: 'abc123', newrev: 'def456', ref: 'tag')
      end

      it { is_expected.to be_falsey }
    end
  end

  describe '#includes_tags?' do
    subject { changes.includes_tags? }

    context 'has changes for tags' do
      before do
        changes.add_tag_change(oldrev: 'abc123', newrev: 'def456', ref: 'tag')
      end

      it { is_expected.to be_truthy }
    end

    context 'has no changes for tags' do
      before do
        changes.add_branch_change(oldrev: 'abc123', newrev: 'def456', ref: 'branch')
      end

      it { is_expected.to be_falsey }
    end
  end

  describe '#add_branch_change' do
    let(:change) { { oldrev: 'abc123', newrev: 'def456', ref: 'branch' } }

    subject { changes.add_branch_change(change) }

    it 'adds the branch change to the collection' do
      expect(subject).to include(change)
      expect(subject.refs).to include(change[:ref])
      expect(subject.repository_data).to include(before: change[:oldrev], after: change[:newrev], ref: change[:ref])
      expect(subject.branch_changes).to include(change)
    end

    it 'does not add the change as a tag change' do
      expect(subject.tag_changes).not_to include(change)
    end
  end

  describe '#add_tag_change' do
    let(:change) { { oldrev: 'abc123', newrev: 'def456', ref: 'tag' } }

    subject { changes.add_tag_change(change) }

    it 'adds the tag change to the collection' do
      expect(subject).to include(change)
      expect(subject.refs).to include(change[:ref])
      expect(subject.repository_data).to include(before: change[:oldrev], after: change[:newrev], ref: change[:ref])
      expect(subject.tag_changes).to include(change)
    end

    it 'does not add the change as a branch change' do
      expect(subject.branch_changes).not_to include(change)
    end
  end
end