gitlab-org--gitlab-foss/spec/serializers/cluster_entity_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

60 lines
1.7 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-10-04 20:32:03 +00:00
require 'spec_helper'
RSpec.describe ClusterEntity do
include Gitlab::Routing.url_helpers
2017-10-30 16:03:58 +00:00
describe '#as_json' do
let(:user) { nil }
let(:request) { EntityRequest.new({ current_user: user }) }
subject { described_class.new(cluster, request: request).as_json }
2017-10-04 20:32:03 +00:00
2017-10-30 16:03:58 +00:00
context 'when provider type is gcp' do
let(:cluster) { create(:cluster, :instance, provider_type: :gcp, provider_gcp: provider) }
2017-10-04 20:32:03 +00:00
2017-10-30 16:03:58 +00:00
context 'when status is creating' do
let(:provider) { create(:cluster_provider_gcp, :creating) }
2017-10-04 20:32:03 +00:00
2017-10-30 16:03:58 +00:00
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) }
2017-10-30 16:03:58 +00:00
it 'has corresponded data' do
expect(subject[:status]).to eq(:errored)
expect(subject[:status_reason]).to eq(provider.status_reason)
end
end
2017-10-04 20:32:03 +00:00
end
2017-10-30 16:03:58 +00:00
context 'when provider type is user' do
let(:cluster) { create(:cluster, :instance, provider_type: :user) }
2017-10-30 16:03:58 +00:00
it 'has corresponded data' do
expect(subject[:status]).to eq(:created)
2017-10-30 16:03:58 +00:00
expect(subject[:status_reason]).to be_nil
end
2017-10-04 20:32:03 +00:00
end
2017-10-31 10:29:56 +00:00
2017-11-06 16:02:28 +00:00
context 'when no application has been installed' do
let(:cluster) { create(:cluster, :instance) }
subject { described_class.new(cluster, request: request).as_json[:applications] }
2017-11-06 16:02:28 +00:00
it 'contains helm as not_installable' do
2017-11-06 16:02:28 +00:00
expect(subject).not_to be_empty
helm = subject[0]
expect(helm[:name]).to eq('helm')
expect(helm[:status]).to eq(:not_installable)
2017-11-06 16:02:28 +00:00
end
2017-10-31 10:29:56 +00:00
end
2017-10-04 20:32:03 +00:00
end
end