1
0
mirror of https://github.com/krislamo/puppet-fluentd synced 2024-09-20 04:30:36 +00:00
puppet-fluentd/spec/acceptance/fluentd_spec.rb
Max Wilhelm 567a07ebb2 fixed serverspec test for Debian 8
there seems to be a bug while checking for service enabled
2016-01-25 12:42:03 +01:00

38 lines
1.1 KiB
Ruby

require 'spec_helper_acceptance'
RSpec.describe 'fluentd' do
it 'runs successfully' do
manifest = File.read(File.expand_path('../../examples/init.pp', File.dirname(__FILE__)))
# Run it twice and test for idempotency
apply_manifest(manifest, catch_failures: true)
expect(apply_manifest(manifest, catch_failures: true).exit_code).to be_zero
end
describe package('td-agent') do
it { is_expected.to be_installed }
end
describe service('td-agent') do
it { is_expected.to be_running }
# @todo
# there seems to be a bug serverspec while checking if the service is enabled
# on Debian 8:
# server spec checks:
# /bin/sh -c systemctl\ --quiet\ is-enabled\ td-agent
# Failed to get unit file state for td-agent.service: No such file or directory
#
# but all update-rc.d files are present:
# /etc/rc0.d/K01td-agent
# /etc/rc1.d/K01td-agent
# /etc/rc2.d/S01td-agent
# /etc/rc3.d/S01td-agent
# /etc/rc4.d/S01td-agent
# /etc/rc5.d/S01td-agent
# /etc/rc6.d/K01td-agent
if ! ( os[:family] == 'debian' and os[:release].to_f >= 8.0 )
it { is_expected.to be_enabled }
end
end
end