File: mod_passenger_spec.rb

package info (click to toggle)
puppet-module-puppetlabs-apache 1.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,344 kB
  • ctags: 30
  • sloc: ruby: 6,274; sh: 44; makefile: 2
file content (239 lines) | stat: -rw-r--r-- 9,712 bytes parent folder | download
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
require 'spec_helper_acceptance'

describe 'apache::mod::passenger class', :unless => UNSUPPORTED_PLATFORMS.include?(fact('osfamily')) do
  case fact('osfamily')
  when 'Debian'
    service_name = 'apache2'
    mod_dir = '/etc/apache2/mods-available/'
    conf_file = "#{mod_dir}passenger_extra.conf"
    load_file = "#{mod_dir}passenger.load"
    passenger_root = '/usr'
    passenger_ruby = '/usr/bin/ruby'
    passenger_module_path = '/usr/lib/apache2/modules/mod_passenger.so'
    rackapp_user = 'www-data'
    rackapp_group = 'www-data'
  when 'RedHat'
    service_name = 'httpd'
    mod_dir = '/etc/httpd/conf.d/'
    conf_file = "#{mod_dir}passenger.conf"
    load_file = "#{mod_dir}passenger.load"
    # sometimes installs as 3.0.12, sometimes as 3.0.19 - so just check for the stable part
    passenger_root = '/usr/lib/ruby/gems/1.8/gems/passenger-3.0.1'
    passenger_ruby = '/usr/bin/ruby'
    passenger_tempdir = '/var/run/rubygem-passenger'
    passenger_module_path = 'modules/mod_passenger.so'
    rackapp_user = 'apache'
    rackapp_group = 'apache'
  end

  pp_rackapp = <<-EOS
          /* a simple ruby rack 'hellow world' app */
          file { '/var/www/passenger':
            ensure  => directory,
            owner   => '#{rackapp_user}',
            group   => '#{rackapp_group}',
            require => Class['apache::mod::passenger'],
          }
          file { '/var/www/passenger/config.ru':
            ensure  => file,
            owner   => '#{rackapp_user}',
            group   => '#{rackapp_group}',
            content => "app = proc { |env| [200, { \\"Content-Type\\" => \\"text/html\\" }, [\\"hello <b>world</b>\\"]] }\\nrun app",
            require => File['/var/www/passenger'] ,
          }
          apache::vhost { 'passenger.example.com':
            port    => '80',
            docroot => '/var/www/passenger/public',
            docroot_group => '#{rackapp_group}' ,
            docroot_owner => '#{rackapp_user}' ,
            custom_fragment => "PassengerRuby  #{passenger_ruby}\\nRailsEnv  development" ,
            require => File['/var/www/passenger/config.ru'] ,
          }
          host { 'passenger.example.com': ip => '127.0.0.1', }
  EOS

  case fact('osfamily')
  when 'Debian'
    context "default passenger config" do
      it 'succeeds in puppeting passenger' do
        pp = <<-EOS
          /* stock apache and mod_passenger */
          class { 'apache': }
          class { 'apache::mod::passenger': }
          #{pp_rackapp}
        EOS
        apply_manifest(pp, :catch_failures => true)
      end

      describe service(service_name) do
        it { should be_enabled }
        it { should be_running }
      end

      describe file(conf_file) do
        # passenger_extra.conf only contains directives if overridden from the class params
        it { should_not contain "PassengerRoot \"#{passenger_root}\"" }
        it { should_not contain "PassengerRuby \"#{passenger_ruby}\"" }
      end

      describe file(load_file) do
        it { should contain "LoadModule passenger_module #{passenger_module_path}" }
      end

      it 'should output status via passenger-memory-stats' do
        shell("/usr/sbin/passenger-memory-stats") do |r|
          r.stdout.should =~ /Apache processes/
          r.stdout.should =~ /Nginx processes/
          r.stdout.should =~ /Passenger processes/
          r.stdout.should =~ /### Processes: [0-9]+/
          r.stdout.should =~ /### Total private dirty RSS: [0-9\.]+ MB/

          r.exit_code.should == 0
        end
      end

      # passenger-status fails under stock ubuntu-server-12042-x64 + mod_passenger,
      # even when the passenger process is successfully installed and running
      unless fact('operatingsystem') == 'Ubuntu' && fact('operatingsystemrelease') == '12.04'
        it 'should output status via passenger-status' do
          # xml output not available on ubunutu <= 10.04, so sticking with default pool output
          shell("/usr/sbin/passenger-status") do |r|
            # spacing may vary
            r.stdout.should =~ /[\-]+ General information [\-]+/
            if fact('operatingsystem') == 'Ubuntu' && fact('operatingsystemrelease') == '14.04'
              r.stdout.should =~ /Max pool size[ ]+: [0-9]+/
              r.stdout.should =~ /Processes[ ]+: [0-9]+/
              r.stdout.should =~ /Requests in top-level queue[ ]+: [0-9]+/
            else
              r.stdout.should =~ /max[ ]+= [0-9]+/
              r.stdout.should =~ /count[ ]+= [0-9]+/
              r.stdout.should =~ /active[ ]+= [0-9]+/
              r.stdout.should =~ /inactive[ ]+= [0-9]+/
              r.stdout.should =~ /Waiting on global queue: [0-9]+/
            end

            r.exit_code.should == 0
          end
        end
      end

      it 'should answer to passenger.example.com' do
        shell("/usr/bin/curl passenger.example.com:80") do |r|
          r.stdout.should =~ /^hello <b>world<\/b>$/
          r.exit_code.should == 0
        end
      end

    end

  when 'RedHat'
    # no fedora 18 passenger package yet, and rhel5 packages only exist for ruby 1.8.5
    unless (fact('operatingsystem') == 'Fedora' and fact('operatingsystemrelease').to_f >= 18) or (fact('osfamily') == 'RedHat' and fact('operatingsystemmajrelease') == '5' and fact('rubyversion') != '1.8.5')

      if fact('operatingsystem') == 'RedHat' and fact('operatingsystemmajrelease') == '7'
        pending('test passenger - RHEL7 packages don\'t exist')
      else
        context "default passenger config" do
          it 'succeeds in puppeting passenger' do
            pp = <<-EOS
              /* EPEL and passenger repositories */
              class { 'epel': }
              exec { 'passenger.repo GPG key':
                command => '/usr/bin/curl -o /etc/yum.repos.d/RPM-GPG-KEY-stealthymonkeys.asc http://passenger.stealthymonkeys.com/RPM-GPG-KEY-stealthymonkeys.asc',
                creates => '/etc/yum.repos.d/RPM-GPG-KEY-stealthymonkeys.asc',
              }
              file { 'passenger.repo GPG key':
                ensure  => file,
                path    => '/etc/yum.repos.d/RPM-GPG-KEY-stealthymonkeys.asc',
                require => Exec['passenger.repo GPG key'],
              }
              epel::rpm_gpg_key { 'passenger.stealthymonkeys.com':
                path    => '/etc/yum.repos.d/RPM-GPG-KEY-stealthymonkeys.asc',
                require => [
                  Class['epel'],
                  File['passenger.repo GPG key'],
                ]
              }
              $releasever_string = $operatingsystem ? {
                'Scientific' => '6',
                default      => '$releasever',
              }
              yumrepo { 'passenger':
                baseurl         => "http://passenger.stealthymonkeys.com/rhel/${releasever_string}/\\$basearch" ,
                descr           => "Red Hat Enterprise ${releasever_string} - Phusion Passenger",
                enabled         => 1,
                gpgcheck        => 1,
                gpgkey          => 'http://passenger.stealthymonkeys.com/RPM-GPG-KEY-stealthymonkeys.asc',
                mirrorlist      => 'http://passenger.stealthymonkeys.com/rhel/mirrors',
                require => [
                  Epel::Rpm_gpg_key['passenger.stealthymonkeys.com'],
                ],
              }
              /* apache and mod_passenger */
              class { 'apache':
                  require => [
                    Class['epel'],
                ],
              }
              class { 'apache::mod::passenger':
                require => [
                  Yumrepo['passenger']
                ],
              }
              #{pp_rackapp}
            EOS
            apply_manifest(pp, :catch_failures => true)
          end

          describe service(service_name) do
            it { should be_enabled }
            it { should be_running }
          end

          describe file(conf_file) do
            it { should contain "PassengerRoot #{passenger_root}" }
            it { should contain "PassengerRuby #{passenger_ruby}" }
            it { should contain "PassengerTempDir #{passenger_tempdir}" }
          end

          describe file(load_file) do
            it { should contain "LoadModule passenger_module #{passenger_module_path}" }
          end

          it 'should output status via passenger-memory-stats' do
            shell("/usr/bin/passenger-memory-stats") do |r|
              r.stdout.should =~ /Apache processes/
              r.stdout.should =~ /Nginx processes/
              r.stdout.should =~ /Passenger processes/
              r.stdout.should =~ /### Processes: [0-9]+/
              r.stdout.should =~ /### Total private dirty RSS: [0-9\.]+ MB/

              r.exit_code.should == 0
            end
          end

          it 'should output status via passenger-status' do
            shell("PASSENGER_TMPDIR=/var/run/rubygem-passenger /usr/bin/passenger-status") do |r|
              # spacing may vary
              r.stdout.should =~ /[\-]+ General information [\-]+/
              r.stdout.should =~ /max[ ]+= [0-9]+/
              r.stdout.should =~ /count[ ]+= [0-9]+/
              r.stdout.should =~ /active[ ]+= [0-9]+/
              r.stdout.should =~ /inactive[ ]+= [0-9]+/
              r.stdout.should =~ /Waiting on global queue: [0-9]+/

              r.exit_code.should == 0
            end
          end

          it 'should answer to passenger.example.com' do
            shell("/usr/bin/curl passenger.example.com:80") do |r|
              r.stdout.should =~ /^hello <b>world<\/b>$/
              r.exit_code.should == 0
            end
          end
        end
      end
    end
  end
end