Fix tests for initial status

This commit is contained in:
Kamil Trzcinski 2017-11-07 14:52:11 +01:00
parent 55d098c94b
commit 760a154a03
3 changed files with 20 additions and 2 deletions

View File

@ -18,6 +18,8 @@ module Clusters
end
def set_initial_status
return unless not_installable?
self.status = 'installable' if cluster&.platform_kubernetes_active?
end

View File

@ -2,6 +2,10 @@ FactoryGirl.define do
factory :cluster_applications_helm, class: Clusters::Applications::Helm do
cluster factory: %i(cluster provided_by_gcp)
trait :not_installable do
status -2
end
trait :installable do
status 0
end

View File

@ -21,8 +21,20 @@ describe Clusters::Applications::Helm do
end
describe '#status' do
it 'defaults to :installable' do
expect(subject.status_name).to be(:installable)
let(:cluster) { create(:cluster) }
subject { described_class.new(cluster: cluster) }
it 'defaults to :not_installable' do
expect(subject.status_name).to be(:not_installable)
end
context 'when platform kubernetes is defined' do
let(:cluster) { create(:cluster, :provided_by_gcp) }
it 'defaults to :installable' do
expect(subject.status_name).to be(:installable)
end
end
end