Commit c79c1d22 authored by Matija Čupić's avatar Matija Čupić

Move EE specific cluster spec parts to ee directory

parent 3311bfdb
require 'spec_helper'
describe Clusters::Cluster do
it { is_expected.to include_module(HasEnvironmentScope) }
describe 'validation' do
subject { cluster.valid? }
context 'when validates unique_environment_scope' do
let(:project) { create(:project) }
before do
create(:cluster, projects: [project], environment_scope: 'product/*')
end
context 'when identical environment scope exists in project' do
let(:cluster) { build(:cluster, projects: [project], environment_scope: 'product/*') }
it { is_expected.to be_falsey }
end
context 'when identical environment scope does not exist in project' do
let(:cluster) { build(:cluster, projects: [project], environment_scope: '*') }
it { is_expected.to be_truthy }
end
context 'when identical environment scope exists in different project' do
let(:project2) { create(:project) }
let(:cluster) { build(:cluster, projects: [project2], environment_scope: 'product/*') }
it { is_expected.to be_truthy }
end
end
end
end
...@@ -14,7 +14,6 @@ describe Clusters::Cluster do ...@@ -14,7 +14,6 @@ describe Clusters::Cluster do
it { is_expected.to delegate_method(:status_name).to(:provider) } it { is_expected.to delegate_method(:status_name).to(:provider) }
it { is_expected.to delegate_method(:on_creation?).to(:provider) } it { is_expected.to delegate_method(:on_creation?).to(:provider) }
it { is_expected.to respond_to :project } it { is_expected.to respond_to :project }
it { is_expected.to include_module(HasEnvironmentScope) }
describe '.enabled' do describe '.enabled' do
subject { described_class.enabled } subject { described_class.enabled }
...@@ -168,33 +167,6 @@ describe Clusters::Cluster do ...@@ -168,33 +167,6 @@ describe Clusters::Cluster do
it { expect(cluster.update(enabled: false)).to be_truthy } it { expect(cluster.update(enabled: false)).to be_truthy }
end end
end end
context 'when validates unique_environment_scope' do
let(:project) { create(:project) }
before do
create(:cluster, projects: [project], environment_scope: 'product/*')
end
context 'when identical environment scope exists in project' do
let(:cluster) { build(:cluster, projects: [project], environment_scope: 'product/*') }
it { is_expected.to be_falsey }
end
context 'when identical environment scope does not exist in project' do
let(:cluster) { build(:cluster, projects: [project], environment_scope: '*') }
it { is_expected.to be_truthy }
end
context 'when identical environment scope exists in different project' do
let(:project2) { create(:project) }
let(:cluster) { build(:cluster, projects: [project2], environment_scope: 'product/*') }
it { is_expected.to be_truthy }
end
end
end end
describe '#provider' do describe '#provider' do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment