forked from puppetlabs/puppetlabs-apache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod_pagespeed_spec.rb
60 lines (55 loc) · 2.3 KB
/
mod_pagespeed_spec.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
require 'spec_helper_acceptance'
require_relative './version.rb'
# Only run the test on centos 7, this is to cut down on the different types of setup
# required. Installing the dependancies are highly prone to failure.
describe 'apache::mod::pagespeed class', if: ((fact('operatingsystem') == 'CentOS') &&
(fact('operatingsystemmajrelease') == '7')) do
context 'default pagespeed config' do
pp = <<-MANIFEST
yumrepo { 'mod-pagespeed':
baseurl => "http://dl.google.com/linux/mod-pagespeed/rpm/stable/$::architecture",
enabled => 1,
gpgcheck => 1,
gpgkey => 'https://dl-ssl.google.com/linux/linux_signing_key.pub',
before => Class['apache'],
}
class { 'apache':
mpm_module => 'prefork',
}
class { 'apache::mod::pagespeed':
enable_filters => ['remove_comments'],
disable_filters => ['extend_cache'],
forbid_filters => ['rewrite_javascript'],
}
apache::vhost { 'pagespeed.example.com':
port => '80',
docroot => '#{$doc_root}/pagespeed',
}
host { 'pagespeed.example.com': ip => '127.0.0.1', }
file { '#{$doc_root}/pagespeed/index.html':
ensure => file,
content => "<html>\n<!-- comment -->\n<body>\n<p>Hello World!</p>\n</body>\n</html>",
}
MANIFEST
it 'succeeds in puppeting pagespeed' do
apply_manifest(pp, catch_failures: true)
end
describe service($service_name) do
it { is_expected.to be_enabled }
it { is_expected.to be_running }
end
describe file("#{$mod_dir}/pagespeed.conf") do
it { is_expected.to contain 'AddOutputFilterByType MOD_PAGESPEED_OUTPUT_FILTER text/html' }
it { is_expected.to contain 'ModPagespeedEnableFilters remove_comments' }
it { is_expected.to contain 'ModPagespeedDisableFilters extend_cache' }
it { is_expected.to contain 'ModPagespeedForbidFilters rewrite_javascript' }
end
it 'answers to pagespeed.example.com and include <head/> and be stripped of comments by mod_pagespeed' do
shell('/usr/bin/curl pagespeed.example.com:80') do |r|
expect(r.stdout).to match(%r{head\/})
expect(r.stdout).not_to match(%r{<!-- comment -->})
expect(r.exit_code).to eq(0)
end
end
end
end