990078c687
Depends-on: https://review.opendev.org/#/c/745246/ Change-Id: I9126eaf62de7aa43fe3b2d6622dc484ec1ccc88e
32 lines
753 B
Ruby
Executable File
32 lines
753 B
Ruby
Executable File
require 'spec_helper_acceptance'
|
|
|
|
describe 'basic magnum' do
|
|
|
|
context 'default parameters' do
|
|
|
|
it 'should work with no errors' do
|
|
pp= <<-EOS
|
|
include openstack_integration
|
|
include openstack_integration::repos
|
|
include openstack_integration::apache
|
|
include openstack_integration::rabbitmq
|
|
include openstack_integration::mysql
|
|
include openstack_integration::keystone
|
|
|
|
class { 'openstack_integration::magnum':
|
|
cert_manager_type => 'local'
|
|
}
|
|
|
|
EOS
|
|
# Run it twice to test for idempotency
|
|
apply_manifest(pp, :catch_failures => true)
|
|
apply_manifest(pp, :catch_changes => true)
|
|
end
|
|
|
|
describe port(9511) do
|
|
it { is_expected.to be_listening }
|
|
end
|
|
|
|
end
|
|
end
|