puppet-heat/spec/acceptance/basic_heat_spec.rb
Takashi Kajinami 312998a6e1 Use common class to manage apache service in beaker job
Depends-on: https://review.opendev.org/#/c/745246/
Change-Id: I5d82fb7cd41d2fec0c31107ac9b2f1a89c98fe19
2020-08-07 09:22:48 +09:00

37 lines
960 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::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