puppet-ceilometer/spec/acceptance/10_basic_ceilometer_config_spec.rb
Takashi Kajinami 3cee14c87f Enable memcached and redis in acceptance tests
... because these are required as cache/coordination backend.

Change-Id: I833d06ace65f97c68c3024ef7f283c8b09181939
2022-08-31 00:51:48 +09:00

30 lines
782 B
Ruby

require 'spec_helper_acceptance'
describe 'ceilometer with mysql' 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
class { 'openstack_integration::ceilometer':
integration_enable => false,
}
EOS
# Run it twice and test for idempotency
apply_manifest(pp, :catch_failures => true)
apply_manifest(pp, :catch_changes => true)
end
end
end