mirror of
https://github.com/krislamo/puppet-fluentd
synced 2024-11-09 20:50:34 +00:00
use rspec-puppet-facts for fluentd_repo_yum_spec
This commit is contained in:
parent
d7f6d91a11
commit
b34c7dc4e4
@ -1,27 +1,33 @@
|
|||||||
require 'spec_helper'
|
require 'spec_helper'
|
||||||
|
|
||||||
describe 'fluentd::repo::yum', :type => :class do
|
describe 'fluentd::repo::yum', :type => :class do
|
||||||
let(:facts) {
|
on_supported_os.each do |os, facts|
|
||||||
{
|
context "on #{os}" do
|
||||||
:osfamily => 'RedHat',
|
let :facts do
|
||||||
}
|
facts
|
||||||
}
|
end
|
||||||
|
|
||||||
describe 'when called with no parameters on RedHat' do
|
|
||||||
it {
|
|
||||||
should contain_yumrepo('treasure-data').with({
|
|
||||||
'ensure' => 'present',
|
|
||||||
'baseurl' => 'https://packages.treasuredata.com/2/redhat/$releasever/$basearch',
|
|
||||||
'descr' => 'TreasureData',
|
|
||||||
'enabled' => '1',
|
|
||||||
'gpgcheck' => '1'
|
|
||||||
}).that_notifies('Exec[add GPG key]')
|
|
||||||
|
|
||||||
should contain_exec('add GPG key').with({
|
describe 'when called with no parameters' do
|
||||||
'command' => 'rpm --import https://packages.treasuredata.com/GPG-KEY-td-agent',
|
case facts[:osfamily]
|
||||||
'path' => '/bin:/usr/bin/',
|
when 'RedHat'
|
||||||
'refreshonly' => 'true'
|
it {
|
||||||
})
|
should contain_yumrepo('treasure-data').with({
|
||||||
}
|
'ensure' => 'present',
|
||||||
|
'baseurl' => 'https://packages.treasuredata.com/2/redhat/$releasever/$basearch',
|
||||||
|
'descr' => 'TreasureData',
|
||||||
|
'enabled' => '1',
|
||||||
|
'gpgcheck' => '1'
|
||||||
|
}).that_notifies('Exec[add GPG key]')
|
||||||
|
|
||||||
|
should contain_exec('add GPG key').with({
|
||||||
|
'command' => 'rpm --import https://packages.treasuredata.com/GPG-KEY-td-agent',
|
||||||
|
'path' => '/bin:/usr/bin/',
|
||||||
|
'refreshonly' => 'true'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user