43a5e7d6ff
There is a slight chance the SSL 'concat::fragment' of the mailhost and virtualhost are get in the way, if the name is declared the same.
63 lines
2.1 KiB
Ruby
63 lines
2.1 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'nginx' do
|
|
let :params do
|
|
{
|
|
:nginx_upstreams => { 'upstream1' => { 'members' => ['localhost:3000']} },
|
|
:nginx_vhosts => { 'test2.local' => { 'www_root' => '/' } },
|
|
:nginx_locations => { 'test2.local' => { 'vhost' => 'test2.local', 'www_root' => '/'} },
|
|
:nginx_mailhosts => { 'smtp.test2.local' => { 'auth_http' => 'server2.example/cgi-bin/auth', 'protocol' => 'smtp', 'listen_port' => 587} }
|
|
}
|
|
end
|
|
|
|
shared_examples "a Linux OS" do
|
|
it { should compile.with_all_deps }
|
|
it { should contain_class('nginx') }
|
|
it { should contain_anchor('nginx::begin') }
|
|
it { should contain_nginx__package.that_requires('Anchor[nginx::begin]') }
|
|
it { should contain_nginx__config.that_requires('Class[nginx::package]') }
|
|
it { should contain_nginx__service.that_subscribes_to('Anchor[nginx::begin]') }
|
|
it { should contain_nginx__service.that_subscribes_to('Class[nginx::package]') }
|
|
it { should contain_nginx__service.that_subscribes_to('Class[nginx::config]') }
|
|
it { should contain_anchor('nginx::end').that_requires('Class[nginx::service]') }
|
|
it { should contain_class("nginx::params") }
|
|
it { should contain_nginx__resource__upstream("upstream1") }
|
|
it { should contain_nginx__resource__vhost("test2.local") }
|
|
it { should contain_nginx__resource__location("test2.local") }
|
|
it { should contain_nginx__resource__mailhost("smtp.test2.local") }
|
|
end
|
|
|
|
context "Debian OS" do
|
|
it_behaves_like "a Linux OS" do
|
|
let :facts do
|
|
{
|
|
:operatingsystem => 'Debian',
|
|
:osfamily => 'Debian',
|
|
:lsbdistcodename => 'precise',
|
|
}
|
|
end
|
|
end
|
|
end
|
|
|
|
context "RedHat OS" do
|
|
it_behaves_like "a Linux OS" do
|
|
let :facts do
|
|
{
|
|
:operatingsystem => 'RedHat',
|
|
:osfamily => 'RedHat',
|
|
}
|
|
end
|
|
end
|
|
end
|
|
|
|
context "Suse OS" do
|
|
it_behaves_like "a Linux OS" do
|
|
let :facts do
|
|
{
|
|
:operatingsystem => 'SuSE',
|
|
:osfamily => 'Suse',
|
|
}
|
|
end
|
|
end
|
|
end
|
|
end
|