4761d637b0
... because it is required as cache backend. Change-Id: I1da59bacb6dfba7fe439d0c94e12f9968c5f501e
36 lines
891 B
Ruby
36 lines
891 B
Ruby
require 'spec_helper_acceptance'
|
|
|
|
describe 'basic ironic' 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::memcached
|
|
include openstack_integration::keystone
|
|
include openstack_integration::ironic
|
|
EOS
|
|
|
|
|
|
# Run it twice and test for idempotency
|
|
apply_manifest(pp, :catch_failures => true)
|
|
apply_manifest(pp, :catch_changes => true)
|
|
end
|
|
|
|
# Ironic API port
|
|
describe port(6385) do
|
|
it { is_expected.to be_listening }
|
|
end
|
|
# Inspector API port
|
|
describe port(5050) do
|
|
it { is_expected.to be_listening.with('tcp') }
|
|
end
|
|
|
|
end
|
|
end
|