2017-11-06 11:02:28 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe ClusterApplicationEntity do
|
|
|
|
describe '#as_json' do
|
2019-01-30 04:26:52 -05:00
|
|
|
let(:application) { build(:clusters_applications_helm, version: '0.1.1') }
|
2017-11-06 11:02:28 -05:00
|
|
|
subject { described_class.new(application).as_json }
|
|
|
|
|
|
|
|
it 'has name' do
|
|
|
|
expect(subject[:name]).to eq(application.name)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has status' do
|
2017-11-07 11:32:12 -05:00
|
|
|
expect(subject[:status]).to eq(:not_installable)
|
2017-11-06 11:02:28 -05:00
|
|
|
end
|
|
|
|
|
2019-01-30 04:26:52 -05:00
|
|
|
it 'has version' do
|
|
|
|
expect(subject[:version]).to eq('0.1.1')
|
|
|
|
end
|
|
|
|
|
2017-11-06 11:02:28 -05:00
|
|
|
it 'has no status_reason' do
|
|
|
|
expect(subject[:status_reason]).to be_nil
|
|
|
|
end
|
|
|
|
|
2019-04-12 01:42:48 -04:00
|
|
|
it 'has can_uninstall' do
|
2019-08-02 15:02:57 -04:00
|
|
|
expect(subject[:can_uninstall]).to be_truthy
|
2019-04-12 01:42:48 -04:00
|
|
|
end
|
|
|
|
|
2019-02-07 16:40:55 -05:00
|
|
|
context 'non-helm application' do
|
|
|
|
let(:application) { build(:clusters_applications_runner, version: '0.0.0') }
|
|
|
|
|
|
|
|
it 'has update_available' do
|
|
|
|
expect(subject[:update_available]).to be_truthy
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-11-06 11:02:28 -05:00
|
|
|
context 'when application is errored' do
|
2017-12-22 12:23:43 -05:00
|
|
|
let(:application) { build(:clusters_applications_helm, :errored) }
|
2017-11-06 11:02:28 -05:00
|
|
|
|
|
|
|
it 'has corresponded data' do
|
|
|
|
expect(subject[:status]).to eq(:errored)
|
|
|
|
expect(subject[:status_reason]).not_to be_nil
|
|
|
|
expect(subject[:status_reason]).to eq(application.status_reason)
|
|
|
|
end
|
|
|
|
end
|
2018-02-11 22:22:15 -05:00
|
|
|
|
|
|
|
context 'for ingress application' do
|
|
|
|
let(:application) do
|
|
|
|
build(
|
|
|
|
:clusters_applications_ingress,
|
|
|
|
:installed,
|
2018-02-15 19:47:42 -05:00
|
|
|
external_ip: '111.222.111.222'
|
2018-02-11 22:22:15 -05:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes external_ip' do
|
|
|
|
expect(subject[:external_ip]).to eq('111.222.111.222')
|
|
|
|
end
|
|
|
|
end
|
2017-11-06 11:02:28 -05:00
|
|
|
end
|
|
|
|
end
|