38de717b72
Change-Id: Ie597039d18b1e9f08fd27919324fbbf106a3425e
36 lines
907 B
Ruby
36 lines
907 B
Ruby
require 'spec_helper_acceptance'
|
|
|
|
describe 'basic aodh' 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::redis
|
|
include openstack_integration::keystone
|
|
include openstack_integration::aodh
|
|
EOS
|
|
|
|
|
|
# Run it twice and test for idempotency
|
|
apply_manifest(pp, :catch_failures => true)
|
|
apply_manifest(pp, :catch_changes => true)
|
|
end
|
|
|
|
describe port(8042) do
|
|
it { is_expected.to be_listening }
|
|
end
|
|
|
|
describe cron do
|
|
it { is_expected.to have_entry('1 0 * * * aodh-expirer').with_user('aodh') }
|
|
end
|
|
end
|
|
|
|
end
|