view modules/apache/spec/acceptance/prefork_worker_spec.rb @ 257:675c1cc61eaf

Update Apache module to get CentOS 8 support Unfortunately it only fixes some bits. mod_wsgi still needs other approaches This also overrides the vhost modification to make them come last in the import order (after module loading)
author IBBoard <dev@ibboard.co.uk>
date Sun, 22 Dec 2019 14:43:29 -0500
parents 37675581a273
children d9352a684e62
line wrap: on
line source

require 'spec_helper_acceptance'
require_relative './version.rb'

case fact('osfamily')
when 'FreeBSD'
  describe 'apache::mod::event class' do
    describe 'running puppet code' do
      # Using puppet_apply as a helper
      it 'should work with no errors' do
        pp = <<-EOS
          class { 'apache':
            mpm_module => 'event',
          }
        EOS

        # Run it twice and test for idempotency
        apply_manifest(pp, :catch_failures => true)
        expect(apply_manifest(pp, :catch_failures => true).exit_code).to be_zero
      end
    end

    describe service($service_name) do
      it { is_expected.to be_running }
      if (fact('operatingsystem') == 'Debian' && fact('operatingsystemmajrelease') == '8')
        pending 'Should be enabled - Bug 760616 on Debian 8'
      else
        it { should be_enabled }
      end
    end
  end
end

describe 'apache::mod::worker class' do
  describe 'running puppet code' do
    # Using puppet_apply as a helper
    let(:pp) do
      <<-EOS
        class { 'apache':
          mpm_module => 'worker',
        }
      EOS
    end

    # Run it twice and test for idempotency
    it_behaves_like "a idempotent resource"
  end

  describe service($service_name) do
    it { is_expected.to be_running }
    if (fact('operatingsystem') == 'Debian' && fact('operatingsystemmajrelease') == '8')
      pending 'Should be enabled - Bug 760616 on Debian 8'
    else
      it { should be_enabled }
    end
  end
end

describe 'apache::mod::prefork class' do
  describe 'running puppet code' do
    # Using puppet_apply as a helper
    let(:pp) do
      <<-EOS
        class { 'apache':
          mpm_module => 'prefork',
        }
      EOS
    end
    # Run it twice and test for idempotency
    it_behaves_like "a idempotent resource"
  end

  describe service($service_name) do
    it { is_expected.to be_running }
    if (fact('operatingsystem') == 'Debian' && fact('operatingsystemmajrelease') == '8')
      pending 'Should be enabled - Bug 760616 on Debian 8'
    else
      it { should be_enabled }
    end
  end
end