summaryrefslogtreecommitdiff
path: root/spec/serializers/cluster_entity_spec.rb
blob: 10c6bc0e42afa1a2fdaa115377f0e50364618aa7 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe ClusterEntity do
  include Gitlab::Routing.url_helpers

  describe '#as_json' do
    let(:user) { nil }
    let(:request) { EntityRequest.new({ current_user: user }) }

    subject { described_class.new(cluster, request: request).as_json }

    context 'when provider type is gcp' do
      let(:cluster) { create(:cluster, :instance, provider_type: :gcp, provider_gcp: provider) }

      context 'when status is creating' do
        let(:provider) { create(:cluster_provider_gcp, :creating) }

        it 'has corresponded data' do
          expect(subject[:status]).to eq(:creating)
          expect(subject[:status_reason]).to be_nil
        end
      end

      context 'when status is errored' do
        let(:provider) { create(:cluster_provider_gcp, :errored) }

        it 'has corresponded data' do
          expect(subject[:status]).to eq(:errored)
          expect(subject[:status_reason]).to eq(provider.status_reason)
        end
      end
    end

    context 'when provider type is user' do
      let(:cluster) { create(:cluster, :instance, provider_type: :user) }

      it 'has corresponded data' do
        expect(subject[:status]).to eq(:created)
        expect(subject[:status_reason]).to be_nil
      end
    end

    context 'when no application has been installed' do
      let(:cluster) { create(:cluster, :instance) }

      subject { described_class.new(cluster, request: request).as_json[:applications]}

      it 'contains helm as not_installable' do
        expect(subject).not_to be_empty

        helm = subject[0]
        expect(helm[:name]).to eq('helm')
        expect(helm[:status]).to eq(:not_installable)
      end
    end

    context 'gitlab_managed_apps_logs_path' do
      let(:cluster) { create(:cluster, :project) }
      let(:user) { create(:user) }

      subject { described_class.new(cluster, request: request).as_json }

      before do
        allow_next_instance_of(Clusters::ClusterPresenter) do |presenter|
          allow(presenter).to receive(:show_path).and_return(nil)
        end
      end

      it 'return projects log explorer path' do
        log_explorer_path = project_logs_path(cluster.project, cluster_id: cluster.id)

        expect_next_instance_of(Clusters::ClusterPresenter, cluster, current_user: user) do |presenter|
          expect(presenter).to receive(:gitlab_managed_apps_logs_path).and_return(log_explorer_path)
        end

        expect(subject[:gitlab_managed_apps_logs_path]).to eq(log_explorer_path)
      end
    end

    context 'enable_advanced_logs_querying' do
      let(:cluster) { create(:cluster, :project) }
      let(:user) { create(:user) }

      subject { described_class.new(cluster, request: request).as_json }

      context 'elastic stack is not installed on cluster' do
        it 'returns false' do
          expect(subject[:enable_advanced_logs_querying]).to be false
        end
      end

      context 'elastic stack is installed on cluster' do
        it 'returns true' do
          create(:clusters_applications_elastic_stack, :installed, cluster: cluster)

          expect(subject[:enable_advanced_logs_querying]).to be true
        end
      end
    end
  end
end