8ddc6f6ccf
trickle through to the package classes. I've avoided making them into paramaterized classes and we just refer directly back to the main nginx namespace to get the variable. Makes for a cleaner looking module!
36 lines
894 B
Ruby
36 lines
894 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'nginx' do
|
|
|
|
shared_examples 'linux' do |operatingsystem, user|
|
|
let(:facts) {{ :kernel => 'linux', :operatingsystem => operatingsystem, :osfamily => operatingsystem }}
|
|
|
|
it { should contain_service('nginx').with(
|
|
:ensure => 'running',
|
|
:enable => true
|
|
) }
|
|
|
|
it { should contain_file('/var/nginx/client_body_temp').with_owner(user) }
|
|
end
|
|
|
|
|
|
context 'redhat' do
|
|
it_behaves_like 'linux', 'redhat', 'nginx'
|
|
end
|
|
|
|
context 'debian' do
|
|
it_behaves_like 'linux', 'debian', 'www-data'
|
|
end
|
|
|
|
describe 'installs the requested package version' do
|
|
let(:facts) {{ :kernel => 'linux', :operatingsystem => 'redhat', :osfamily => 'redhat' }}
|
|
let(:params) {{ :package_ensure => '3.0.0' }}
|
|
|
|
it 'installs 3.0.0 exactly' do
|
|
should contain_package('nginx').with({
|
|
'ensure' => '3.0.0'
|
|
})
|
|
end
|
|
end
|
|
|
|
end
|