puppet-heat/spec/acceptance/10_basic_heat_spec.rb
Takashi Kajinami 4cd42b17d8 Enable memcached in acceptance tests
... because it is required as cache backend.

Change-Id: Ie972d8dccf43a3fe063c321c383cc749dfb1722d
2022-08-31 00:57:21 +09:00

38 lines
1007 B
Ruby

require 'spec_helper_acceptance'
describe 'basic heat' 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::heat
EOS
# Run it twice and test for idempotency
apply_manifest(pp, :catch_failures => true)
apply_manifest(pp, :catch_changes => true)
end
describe port(8000) do
it { is_expected.to be_listening }
end
describe port(8004) do
it { is_expected.to be_listening }
end
describe cron do
it { is_expected.to have_entry('1 0 * * * heat-manage purge_deleted -g days 1 >>/var/log/heat/heat-purge_deleted.log 2>&1').with_user('heat') }
end
end
end