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

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

require 'spec_helper'

RSpec.describe Gitlab::Database::Migrations::Version, feature_category: :database do
  let(:test_versions) do
    [
      4,
      5,
      described_class.new(6, Gitlab::VersionInfo.parse_from_milestone('10.3'), :regular),
      7,
      described_class.new(8, Gitlab::VersionInfo.parse_from_milestone('10.3'), :regular),
      described_class.new(9, Gitlab::VersionInfo.parse_from_milestone('10.4'), :regular),
      described_class.new(10, Gitlab::VersionInfo.parse_from_milestone('10.3'), :post),
      described_class.new(11, Gitlab::VersionInfo.parse_from_milestone('10.3'), :regular)
    ]
  end

  describe "#<=>" do
    it 'sorts by existence of milestone, then by milestone, then by type, then by timestamp when sorted by version' do
      expect(test_versions.sort.map(&:to_i)).to eq [4, 5, 7, 6, 8, 11, 10, 9]
    end
  end

  describe 'initialize' do
    context 'when the type is :post or :regular' do
      it 'does not raise an error' do
        expect { described_class.new(4, 4, :regular) }.not_to raise_error
        expect { described_class.new(4, 4, :post) }.not_to raise_error
      end
    end

    context 'when the type is anything else' do
      it 'does not raise an error' do
        expect { described_class.new(4, 4, 'foo') }.to raise_error("#{described_class}::InvalidTypeError".constantize)
      end
    end
  end

  describe 'eql?' do
    where(:version1, :version2, :expected_equality) do
      [
        [
          described_class.new(4, Gitlab::VersionInfo.parse_from_milestone('10.3'), :regular),
          described_class.new(4, Gitlab::VersionInfo.parse_from_milestone('10.3'), :regular),
          true
        ],
        [
          described_class.new(4, Gitlab::VersionInfo.parse_from_milestone('10.3'), :regular),
          described_class.new(4, Gitlab::VersionInfo.parse_from_milestone('10.4'), :regular),
          false
        ],
        [
          described_class.new(4, Gitlab::VersionInfo.parse_from_milestone('10.3'), :regular),
          described_class.new(4, Gitlab::VersionInfo.parse_from_milestone('10.3'), :post),
          false
        ],
        [
          described_class.new(4, Gitlab::VersionInfo.parse_from_milestone('10.3'), :regular),
          described_class.new(5, Gitlab::VersionInfo.parse_from_milestone('10.3'), :regular),
          false
        ]
      ]
    end

    with_them do
      it 'correctly evaluates deep equality' do
        expect(version1.eql?(version2)).to eq(expected_equality)
      end

      it 'correctly evaluates deep equality using ==' do
        expect(version1 == version2).to eq(expected_equality)
      end
    end
  end

  describe 'type' do
    subject { described_class.new(4, Gitlab::VersionInfo.parse_from_milestone('10.3'), migration_type) }

    context 'when the migration is regular' do
      let(:migration_type) { :regular }

      it 'correctly identifies the migration type' do
        expect(subject.type).to eq(:regular)
        expect(subject.regular?).to eq(true)
        expect(subject.post_deployment?).to eq(false)
      end
    end

    context 'when the migration is post_deployment' do
      let(:migration_type) { :post }

      it 'correctly identifies the migration type' do
        expect(subject.type).to eq(:post)
        expect(subject.regular?).to eq(false)
        expect(subject.post_deployment?).to eq(true)
      end
    end
  end

  describe 'to_s' do
    subject { described_class.new(4, Gitlab::VersionInfo.parse_from_milestone('10.3'), :regular) }

    it 'returns the given timestamp value as a string' do
      expect(subject.to_s).to eql('4')
    end
  end

  describe 'hash' do
    subject { described_class.new(4, Gitlab::VersionInfo.parse_from_milestone('10.3'), :regular) }

    let(:expected_hash) { subject.hash }

    it 'deterministically returns a hash of the timestamp, milestone, and type value' do
      3.times do
        expect(subject.hash).to eq(expected_hash)
      end
    end
  end
end