summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/models/cluster_application_version_shared_examples.rb
blob: ed2e4fee2dedbda6a089584e0408b3e45e15d00f (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
# frozen_string_literal: true

RSpec.shared_examples 'cluster application version specs' do |application_name|
  describe 'update_available?' do
    let_it_be(:cluster) { create(:cluster, :provided_by_gcp) }

    let(:version) { '0.0.0' }

    subject { build(application_name, :installed, version: version, cluster: cluster).update_available? }

    context 'version is not the same as VERSION' do
      it { is_expected.to be_truthy }
    end

    context 'version is the same as VERSION' do
      let(:application) { build(application_name, cluster: cluster) }
      let(:version) { application.class.const_get(:VERSION, false) }

      it { is_expected.to be_falsey }
    end
  end

  describe '#make_installed' do
    subject { create(application_name, :installing) }

    it 'sets the correct version of the application' do
      subject.update!(version: '0.0.0')

      subject.make_installed!

      subject.reload

      expect(subject.version).to eq(subject.class.const_get(:VERSION, false))
    end

    context 'application is updating' do
      subject { create(application_name, :updating) }

      it 'updates the version of the application' do
        subject.update!(version: '0.0.0')

        subject.make_installed!

        subject.reload

        expect(subject.version).to eq(subject.class.const_get(:VERSION, false))
      end
    end
  end
end