mirror of
https://github.com/krislamo/puppet-fluentd
synced 2024-11-09 20:50:34 +00:00
use rspec-puppet-facts for fluentd_user_spec
This commit is contained in:
parent
257880811c
commit
c2f95f4bc9
@ -1,37 +1,21 @@
|
|||||||
require 'spec_helper'
|
require 'spec_helper'
|
||||||
|
|
||||||
describe 'fluentd::user', :type => :class do
|
describe 'fluentd::user', :type => :class do
|
||||||
shared_examples 'when called with no parameters' do
|
on_supported_os.each do |os, facts|
|
||||||
it {
|
context "on #{os}" do
|
||||||
should contain_user('fluentd').with({
|
let :facts do
|
||||||
'name' => 'td-agent',
|
facts
|
||||||
'gid' => 'td-agent',
|
end
|
||||||
'groups' => ['adm']
|
|
||||||
})
|
|
||||||
}
|
|
||||||
end
|
|
||||||
|
|
||||||
context 'when osfamily is Debian' do
|
describe 'when called with no parameters' do
|
||||||
let(:facts) {
|
it {
|
||||||
{
|
should contain_user('fluentd').with({
|
||||||
:osfamily => 'Debian',
|
'name' => 'td-agent',
|
||||||
:lsbdistid => 'Ubuntu',
|
'gid' => 'td-agent',
|
||||||
:operatingsystem => 'Ubuntu',
|
'groups' => ['adm']
|
||||||
:lsbdistcodename => 'precise',
|
})
|
||||||
:architecture => 'amd64',
|
}
|
||||||
}
|
end
|
||||||
}
|
end
|
||||||
|
|
||||||
include_examples 'when called with no parameters'
|
|
||||||
end
|
|
||||||
|
|
||||||
context 'when osfamily is RedHat' do
|
|
||||||
let(:facts) {
|
|
||||||
{
|
|
||||||
:osfamily => 'RedHat',
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
include_examples 'when called with no parameters'
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user