2015-04-06 04:53:52 +02:00
|
|
|
require 'spec_helper_acceptance'
|
2013-09-04 21:11:36 +02:00
|
|
|
|
|
|
|
describe "nginx::resource::vhost define:" do
|
2013-12-01 01:08:28 +01:00
|
|
|
context 'new vhost on port 80' do
|
|
|
|
it 'should configure a nginx vhost' do
|
2013-09-04 21:11:36 +02:00
|
|
|
|
2013-12-01 01:08:28 +01:00
|
|
|
pp = "
|
|
|
|
class { 'nginx': }
|
|
|
|
nginx::resource::vhost { 'www.puppetlabs.com':
|
|
|
|
ensure => present,
|
|
|
|
www_root => '/var/www/www.puppetlabs.com',
|
|
|
|
}
|
2013-12-01 01:07:37 +01:00
|
|
|
host { 'www.puppetlabs.com': ip => '127.0.0.1', }
|
|
|
|
file { ['/var/www','/var/www/www.puppetlabs.com']: ensure => directory }
|
|
|
|
file { '/var/www/www.puppetlabs.com/index.html': ensure => file, content => 'Hello from www\n', }
|
2013-12-01 01:08:28 +01:00
|
|
|
"
|
2013-09-04 21:11:36 +02:00
|
|
|
|
2015-04-06 04:53:52 +02:00
|
|
|
apply_manifest(pp, :catch_failures => true)
|
2013-09-04 21:11:36 +02:00
|
|
|
end
|
2013-12-01 01:07:37 +01:00
|
|
|
|
2013-12-01 01:51:31 +01:00
|
|
|
describe file('/etc/nginx/sites-available/www.puppetlabs.com.conf') do
|
|
|
|
it { should be_file }
|
|
|
|
it { should contain "www.puppetlabs.com" }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe file('/etc/nginx/sites-enabled/www.puppetlabs.com.conf') do
|
|
|
|
it { should be_linked_to '/etc/nginx/sites-available/www.puppetlabs.com.conf' }
|
|
|
|
end
|
|
|
|
|
2013-12-01 01:07:37 +01:00
|
|
|
describe service('nginx') do
|
|
|
|
it { should be_running }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should answer to www.puppetlabs.com' do
|
|
|
|
shell("/usr/bin/curl http://www.puppetlabs.com:80") do |r|
|
|
|
|
r.stdout.should == "Hello from www\n"
|
|
|
|
r.exit_code.should be_zero
|
|
|
|
end
|
|
|
|
end
|
2013-09-04 21:11:36 +02:00
|
|
|
end
|
|
|
|
|
2013-12-01 01:07:37 +01:00
|
|
|
context 'should run successfully with ssl' do
|
|
|
|
it 'should configure a nginx SSL vhost' do
|
|
|
|
|
|
|
|
pp = "
|
|
|
|
class { 'nginx': }
|
|
|
|
nginx::resource::vhost { 'www.puppetlabs.com':
|
|
|
|
ensure => present,
|
|
|
|
ssl => true,
|
|
|
|
ssl_cert => '/tmp/blah.cert',
|
|
|
|
ssl_key => '/tmp/blah.key',
|
|
|
|
www_root => '/var/www/www.puppetlabs.com',
|
|
|
|
}
|
|
|
|
host { 'www.puppetlabs.com': ip => '127.0.0.1', }
|
|
|
|
file { ['/var/www','/var/www/www.puppetlabs.com']: ensure => directory }
|
|
|
|
file { '/var/www/www.puppetlabs.com/index.html': ensure => file, content => 'Hello from www\n', }
|
|
|
|
"
|
|
|
|
|
2015-04-06 04:53:52 +02:00
|
|
|
apply_manifest(pp, :catch_failures => true)
|
2013-12-01 01:07:37 +01:00
|
|
|
end
|
|
|
|
|
2013-12-01 01:51:31 +01:00
|
|
|
describe file('/etc/nginx/sites-available/www.puppetlabs.com.conf') do
|
|
|
|
it { should be_file }
|
|
|
|
it { should contain "ssl on;" }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe file('/etc/nginx/sites-enabled/www.puppetlabs.com.conf') do
|
|
|
|
it { should be_linked_to '/etc/nginx/sites-available/www.puppetlabs.com.conf' }
|
|
|
|
end
|
|
|
|
|
2013-12-01 01:07:37 +01:00
|
|
|
describe service('nginx') do
|
|
|
|
it { should be_running }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should answer to http://www.puppetlabs.com' do
|
|
|
|
shell("/usr/bin/curl http://www.puppetlabs.com:80") do |r|
|
|
|
|
r.stdout.should == "Hello from www\n"
|
|
|
|
r.exit_code.should == 0
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should answer to https://www.puppetlabs.com' do
|
|
|
|
# use --insecure because it's a self-signed cert
|
|
|
|
shell("/usr/bin/curl --insecure https://www.puppetlabs.com:443") do |r|
|
|
|
|
r.stdout.should == "Hello from www\n"
|
|
|
|
r.exit_code.should == 0
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2013-09-04 21:11:36 +02:00
|
|
|
end
|