-
Notifications
You must be signed in to change notification settings - Fork 898
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a validation for conversion hosts #18135
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
ServiceResource.new(:resource => vm, :status => status) | ||
end | ||
end | ||
|
||
let(:plan) { FactoryGirl.create(:service_template_transformation_plan, :service_resources => vm_requests) } | ||
let(:request) { FactoryGirl.create(:service_template_transformation_plan_request, :source => plan) } | ||
|
||
|
@@ -28,6 +29,116 @@ | |
end | ||
end | ||
|
||
describe '#validate_conversion_hosts' do | ||
context 'no conversion host exists in EMS' do | ||
let(:dst_ems) { FactoryGirl.create(:ext_management_system) } | ||
let(:src_cluster) { FactoryGirl.create(:ems_cluster) } | ||
let(:dst_cluster) { FactoryGirl.create(:ems_cluster, :ext_management_system => dst_ems) } | ||
|
||
let(:mapping) do | ||
FactoryGirl.create( | ||
:transformation_mapping, | ||
:transformation_mapping_items => [TransformationMappingItem.new(:source => src_cluster, :destination => dst_cluster)] | ||
) | ||
end | ||
|
||
let(:catalog_item_options) do | ||
{ | ||
:name => 'Transformation Plan', | ||
:description => 'a description', | ||
:config_info => { | ||
:transformation_mapping_id => mapping.id, | ||
:actions => [ | ||
{:vm_id => vms.first.id.to_s, :pre_service => false, :post_service => false}, | ||
{:vm_id => vms.last.id.to_s, :pre_service => false, :post_service => false}, | ||
], | ||
} | ||
} | ||
end | ||
|
||
let(:plan) { ServiceTemplateTransformationPlan.create_catalog_item(catalog_item_options) } | ||
let(:request) { FactoryGirl.create(:service_template_transformation_plan_request, :source => plan) } | ||
|
||
it 'returns false' do | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nitpick: how about |
||
host = FactoryGirl.create(:host, :ext_management_system => FactoryGirl.create(:ext_management_system, :zone => FactoryGirl.create(:zone))) | ||
conversion_host = FactoryGirl.create(:conversion_host, :resource => host) | ||
expect(request.validate_conversion_hosts).to be false | ||
end | ||
end | ||
|
||
context 'conversion host exists in EMS and resource is a Host' do | ||
let(:dst_ems) { FactoryGirl.create(:ems_redhat) } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can these lets be shared with the previous context? You can still keep the :dst_ems local |
||
let(:src_cluster) { FactoryGirl.create(:ems_cluster) } | ||
let(:dst_cluster) { FactoryGirl.create(:ems_cluster, :ext_management_system => dst_ems) } | ||
|
||
let(:mapping) do | ||
FactoryGirl.create( | ||
:transformation_mapping, | ||
:transformation_mapping_items => [TransformationMappingItem.new(:source => src_cluster, :destination => dst_cluster)] | ||
) | ||
end | ||
|
||
let(:catalog_item_options) do | ||
{ | ||
:name => 'Transformation Plan', | ||
:description => 'a description', | ||
:config_info => { | ||
:transformation_mapping_id => mapping.id, | ||
:actions => [ | ||
{:vm_id => vms.first.id.to_s, :pre_service => false, :post_service => false}, | ||
{:vm_id => vms.last.id.to_s, :pre_service => false, :post_service => false}, | ||
], | ||
} | ||
} | ||
end | ||
|
||
let(:plan) { ServiceTemplateTransformationPlan.create_catalog_item(catalog_item_options) } | ||
let(:request) { FactoryGirl.create(:service_template_transformation_plan_request, :source => plan) } | ||
|
||
it 'returns true' do | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nitpick: how about |
||
host = FactoryGirl.create(:host, :ext_management_system => dst_ems, :ems_cluster => dst_cluster) | ||
conversion_host = FactoryGirl.create(:conversion_host, :resource => host) | ||
expect(request.validate_conversion_hosts).to be true | ||
end | ||
end | ||
|
||
context 'conversion host exists in EMS and resource is a Vm' do | ||
let(:dst_ems) { FactoryGirl.create(:ems_openstack) } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Similarly with these lets, some of them can be shared with previous contexts |
||
let(:src_cluster) { FactoryGirl.create(:ems_cluster) } | ||
let(:dst_cloud_tenant) { FactoryGirl.create(:cloud_tenant, :ext_management_system => dst_ems) } | ||
|
||
let(:mapping) do | ||
FactoryGirl.create( | ||
:transformation_mapping, | ||
:transformation_mapping_items => [TransformationMappingItem.new(:source => src_cluster, :destination => dst_cloud_tenant)] | ||
) | ||
end | ||
|
||
let(:catalog_item_options) do | ||
{ | ||
:name => 'Transformation Plan', | ||
:description => 'a description', | ||
:config_info => { | ||
:transformation_mapping_id => mapping.id, | ||
:actions => [ | ||
{:vm_id => vms.first.id.to_s, :pre_service => false, :post_service => false}, | ||
{:vm_id => vms.last.id.to_s, :pre_service => false, :post_service => false}, | ||
], | ||
} | ||
} | ||
end | ||
|
||
let(:plan) { ServiceTemplateTransformationPlan.create_catalog_item(catalog_item_options) } | ||
let(:request) { FactoryGirl.create(:service_template_transformation_plan_request, :source => plan) } | ||
|
||
it 'returns true' do | ||
vm = FactoryGirl.create(:vm_openstack, :ext_management_system => dst_ems, :cloud_tenant => dst_cloud_tenant) | ||
conversion_host = FactoryGirl.create(:conversion_host, :resource => vm) | ||
expect(request.validate_conversion_hosts).to be true | ||
end | ||
end | ||
end | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you add a test for using There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done. |
||
|
||
describe '#validate_vm' do | ||
it { expect(request.validate_vm(vms[0].id)).to be_truthy } | ||
end | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will
valid_conversion_hosts?
be a more obvious method name?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Name already validated in ManageIQ/manageiq-automation_engine#263. It would mean changing it again.