module-nginx/spec/classes/nginx_spec.rb

37 lines
894 B
Ruby
Raw Normal View History

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