4ec16912b8
- rewords examples starting with 'should' - rewords examples starting with 'it' Note: I had to manually fixup "onlies" to "only"
73 lines
1.8 KiB
Ruby
73 lines
1.8 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe EnvironmentEntity do
|
|
let(:request) { double('request') }
|
|
let(:entity) do
|
|
described_class.new(environment, request: spy('request'))
|
|
end
|
|
|
|
let(:environment) { create(:environment) }
|
|
subject { entity.as_json }
|
|
|
|
it 'exposes latest deployment' do
|
|
expect(subject).to include(:last_deployment)
|
|
end
|
|
|
|
it 'exposes core elements of environment' do
|
|
expect(subject).to include(:id, :name, :state, :environment_path)
|
|
end
|
|
|
|
it 'exposes folder path' do
|
|
expect(subject).to include(:folder_path)
|
|
end
|
|
|
|
context 'metrics disabled' do
|
|
before do
|
|
allow(environment).to receive(:has_metrics?).and_return(false)
|
|
end
|
|
|
|
it "doesn't expose metrics path" do
|
|
expect(subject).not_to include(:metrics_path)
|
|
end
|
|
end
|
|
|
|
context 'metrics enabled' do
|
|
before do
|
|
allow(environment).to receive(:has_metrics?).and_return(true)
|
|
end
|
|
|
|
it 'exposes metrics path' do
|
|
expect(subject).to include(:metrics_path)
|
|
end
|
|
end
|
|
|
|
context 'with deployment platform' do
|
|
let(:project) { create(:project, :repository) }
|
|
let(:environment) { create(:environment, project: project) }
|
|
|
|
context 'when deployment platform is a cluster' do
|
|
before do
|
|
create(:cluster,
|
|
:provided_by_gcp,
|
|
:project,
|
|
environment_scope: '*',
|
|
projects: [project])
|
|
end
|
|
|
|
it 'includes cluster_type' do
|
|
expect(subject).to include(:cluster_type)
|
|
expect(subject[:cluster_type]).to eq('project_type')
|
|
end
|
|
end
|
|
|
|
context 'when deployment platform is a Kubernetes Service' do
|
|
before do
|
|
create(:kubernetes_service, project: project)
|
|
end
|
|
|
|
it 'does not include cluster_type' do
|
|
expect(subject).not_to include(:cluster_type)
|
|
end
|
|
end
|
|
end
|
|
end
|