-
Notifications
You must be signed in to change notification settings - Fork 897
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Specs around the RBAC'd allowed_ methods
- Loading branch information
Showing
1 changed file
with
181 additions
and
0 deletions.
There are no files selected for viewing
181 changes: 181 additions & 0 deletions
181
spec/models/manageiq/providers/cloud_manager/provision_workflow_spec.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,181 @@ | ||
describe ManageIQ::Providers::CloudManager::ProvisionWorkflow do | ||
include Spec::Support::WorkflowHelper | ||
|
||
let(:admin) { FactoryGirl.create(:user_with_group) } | ||
let(:ems) { FactoryGirl.create(:ems_amazon) } | ||
let(:template) { FactoryGirl.create(:template_amazon, :name => "template", :ext_management_system => ems) } | ||
let(:workflow) do | ||
stub_dialog | ||
allow_any_instance_of(User).to receive(:get_timezone).and_return(Time.zone) | ||
allow_any_instance_of(ManageIQ::Providers::CloudManager::ProvisionWorkflow).to receive(:update_field_visibility) | ||
wf = described_class.new({:src_vm_id => template.id}, admin.userid) | ||
wf | ||
end | ||
|
||
context "with empty relationships" do | ||
it "#allowed_availability_zones" do | ||
expect(workflow.allowed_availability_zones).to eq({}) | ||
end | ||
|
||
it "#allowed_guest_access_key_pairs" do | ||
expect(workflow.allowed_guest_access_key_pairs).to eq({}) | ||
end | ||
|
||
it "#allowed_security_groups" do | ||
expect(workflow.allowed_security_groups).to eq({}) | ||
end | ||
end | ||
|
||
context "with valid relationships" do | ||
it "#allowed_availability_zones" do | ||
az = FactoryGirl.create(:availability_zone_amazon) | ||
ems.availability_zones << az | ||
expect(workflow.allowed_availability_zones).to eq(az.id => az.name) | ||
end | ||
|
||
it "#allowed_guest_access_key_pairs" do | ||
kp = AuthPrivateKey.create(:name => "auth_1") | ||
ems.key_pairs << kp | ||
expect(workflow.allowed_guest_access_key_pairs).to eq(kp.id => kp.name) | ||
end | ||
|
||
it "#allowed_security_groups" do | ||
sg = FactoryGirl.create(:security_group_amazon, :name => "sq_1") | ||
ems.network_manager.security_groups << sg | ||
expect(workflow.allowed_security_groups).to eq(sg.id => sg.name) | ||
end | ||
end | ||
|
||
context "without applied tags" do | ||
context "availability_zones" do | ||
it "#get_targets_for_ems" do | ||
az = FactoryGirl.create(:availability_zone_amazon) | ||
ems.availability_zones << az | ||
filtered = workflow.send(:get_targets_for_ems, ems, :cloud_filter, AvailabilityZone, | ||
'availability_zones.available') | ||
expect(filtered.size).to eq(1) | ||
expect(filtered.first.name).to eq(az.name) | ||
end | ||
|
||
it "returns an empty array when no targets are found" do | ||
filtered = workflow.send(:get_targets_for_ems, ems, :cloud_filter, AvailabilityZone, | ||
'availability_zones.available') | ||
expect(filtered).to eq([]) | ||
end | ||
end | ||
|
||
context "security_groups" do | ||
it "#get_targets_for_source" do | ||
sg = FactoryGirl.create(:security_group, | ||
:name => "sg_1", | ||
:ext_management_system => ems.network_manager) | ||
filtered = workflow.send(:get_targets_for_source, ems.network_manager, :cloud_filter, SecurityGroup, | ||
'security_groups') | ||
expect(filtered.size).to eq(1) | ||
expect(filtered.first.name).to eq(sg.name) | ||
end | ||
end | ||
end | ||
|
||
context "with applied tags" do | ||
before do | ||
FactoryGirl.create(:classification_cost_center_with_tags) | ||
admin.current_group.entitlement = Entitlement.create!(:filters => {'managed' => [['/managed/cc/001']], | ||
'belongsto' => []}) | ||
|
||
2.times { FactoryGirl.create(:availability_zone_amazon, :ems_id => ems.id) } | ||
2.times do | ||
FactoryGirl.create(:security_group_amazon, :name => "sgb_1", | ||
:ext_management_system => ems.network_manager) | ||
end | ||
ems.flavors << FactoryGirl.create(:flavor, :name => "t1.micro", :supports_32_bit => true, | ||
:supports_64_bit => true) | ||
ems.flavors << FactoryGirl.create(:flavor, :name => "m1.large", :supports_32_bit => false, | ||
:supports_64_bit => true) | ||
|
||
tagged_zone = ems.availability_zones.first | ||
tagged_sec = ems.security_groups.first | ||
tagged_flavor = ems.flavors.first | ||
Classification.classify(tagged_zone, 'cc', '001') | ||
Classification.classify(tagged_sec, 'cc', '001') | ||
Classification.classify(tagged_flavor, 'cc', '001') | ||
end | ||
|
||
context "availability_zones" do | ||
it "#get_targets_for_ems" do | ||
expect(ems.availability_zones.size).to eq(2) | ||
expect(ems.availability_zones.first.tags.size).to eq(1) | ||
expect(ems.availability_zones.last.tags.size).to eq(0) | ||
filtered = workflow.send(:get_targets_for_ems, ems, :cloud_filter, AvailabilityZone, | ||
'availability_zones.available') | ||
expect(filtered.size).to eq(1) | ||
end | ||
end | ||
|
||
context "security groups" do | ||
it "#get_targets_for_ems" do | ||
expect(ems.security_groups.size).to eq(2) | ||
expect(ems.security_groups.first.tags.size).to eq(1) | ||
expect(ems.security_groups.last.tags.size).to eq(0) | ||
|
||
filtered = workflow.send(:get_targets_for_ems, ems, :cloud_filter, SecurityGroup, 'security_groups') | ||
expect(filtered.size).to eq(1) | ||
end | ||
end | ||
end | ||
|
||
context "with VPC relationships" do | ||
before do | ||
@az1 = FactoryGirl.create(:availability_zone_amazon, :ext_management_system => ems) | ||
@az2 = FactoryGirl.create(:availability_zone_amazon, :ext_management_system => ems) | ||
@az3 = FactoryGirl.create(:availability_zone_amazon, :ext_management_system => ems) | ||
|
||
@cn1 = FactoryGirl.create(:cloud_network, :ext_management_system => ems.network_manager) | ||
|
||
@cs1 = FactoryGirl.create(:cloud_subnet, :cloud_network => @cn1, | ||
:availability_zone => @az1, | ||
:ext_management_system => ems.network_manager) | ||
@cs2 = FactoryGirl.create(:cloud_subnet, :cloud_network => @cn1, | ||
:availability_zone => @az2, | ||
:ext_management_system => ems.network_manager) | ||
|
||
@ip1 = FactoryGirl.create(:floating_ip, :cloud_network_only => true, | ||
:ext_management_system => ems.network_manager) | ||
@ip2 = FactoryGirl.create(:floating_ip, :cloud_network_only => false, | ||
:ext_management_system => ems.network_manager) | ||
|
||
@sg1 = FactoryGirl.create(:security_group_amazon, :name => "sgn_1", | ||
:ext_management_system => ems.network_manager, | ||
:cloud_network => @cn1) | ||
@sg2 = FactoryGirl.create(:security_group_amazon, :name => "sgn_2", :ext_management_system => ems.network_manager) | ||
end | ||
|
||
it "#allowed_cloud_networks" do | ||
expect(workflow.allowed_cloud_networks.length).to eq(1) | ||
end | ||
|
||
context "#allowed_cloud_subnets" do | ||
it "without a cloud_network" do | ||
expect(workflow.allowed_cloud_subnets.length).to be_zero | ||
end | ||
|
||
it "with a cloud_network" do | ||
workflow.values[:cloud_network] = [@cn1.id, @cn1.name] | ||
expect(workflow.allowed_cloud_subnets.length).to eq(2) | ||
end | ||
|
||
it "with an cloud_network and Availability Zone" do | ||
workflow.values[:cloud_network] = [@cn1.id, @cn1.name] | ||
workflow.values[:placement_availability_zone] = [@az1.id, @az1.name] | ||
|
||
expect(workflow.allowed_cloud_subnets.length).to eq(1) | ||
end | ||
end | ||
|
||
context "#allowed_floating_ip_addresses" do | ||
it "returns floating_ip_addresses" do | ||
expect(workflow.allowed_floating_ip_addresses).to eq(@ip1.id => @ip1.address, @ip2.id => @ip2.address) | ||
end | ||
end | ||
end | ||
end |