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

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

require 'spec_helper'

describe ClusterSerializer do
  describe '#represent_status' do
    subject { described_class.new.represent_status(cluster) }

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

      it 'serializes only status' do
        expect(subject.keys).to contain_exactly(:status, :status_reason, :applications)
      end
    end

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

      it 'serializes only status' do
        expect(subject.keys).to contain_exactly(:status, :status_reason, :applications)
      end
    end
  end
end