puppet-watcher/spec/acceptance/10_basic_watcher_spec.rb
Takashi Kajinami 4c56946003 Assert cron job definition
Depends-on: https://review.opendev.org/877876
Change-Id: I08b9c4927cbe104ec7dade52e3d46f91c8769e98
2023-03-22 23:59:07 +09:00

34 lines
935 B
Ruby

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