Sha256: 12858021a3927e70a09a7f6682aff8bf58b3cf6c122802f58c82a0d68abebf1a

Contents?: true

Size: 1.95 KB

Versions: 7

Compression:

Stored size: 1.95 KB

Contents

require 'spec_helper'

describe 'postgresql::server', :type => :class do
  let :facts do
    {
      :osfamily => 'Debian',
      :operatingsystem => 'Debian',
      :operatingsystemrelease => '6.0',
      :concat_basedir => tmpfilename('server'),
      :kernel => 'Linux',
    }
  end

  describe 'with no parameters' do
    it { should include_class("postgresql::params") }
    it { should include_class("postgresql::server") }
    it 'should validate connection' do
      should contain_postgresql__validate_db_connection('validate_service_is_running')
    end
  end

  describe 'manage_firewall => true' do
    let(:params) do
      {
        :manage_firewall => true,
        :ensure => true,
      }
    end

    it 'should create firewall rule' do
      should contain_firewall("5432 accept - postgres")
    end
  end

  describe 'ensure => absent' do
    let(:params) do
      {
        :ensure => 'absent',
        :datadir => '/my/path',
      }
    end

    it 'should make package purged' do
      should contain_package('postgresql-server').with({
        :ensure => 'purged',
      })
    end

    it 'stop the service' do
      should contain_service('postgresqld').with({
        :ensure => false,
      })
    end

    it 'should remove datadir' do
      should contain_file('/my/path').with({
        :ensure => 'absent',
      })
    end
  end

  describe 'package_ensure => absent' do
    let(:params) do
      {
        :package_ensure => 'absent',
      }
    end

    it 'should remove the package' do
      should contain_package('postgresql-server').with({
        :ensure => 'purged',
      })
    end

    it 'should still enable the service' do
      should contain_service('postgresqld').with({
        :ensure => true,
      })
    end
  end

  describe 'needs_initdb => true' do
    let(:params) do
      {
        :needs_initdb => true,
      }
    end

    it 'should contain proper initdb exec' do
      should contain_exec('postgresql_initdb')
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
freighthop-0.3.3 modules/postgresql/spec/unit/classes/server_spec.rb
freighthop-0.3.2 modules/postgresql/spec/unit/classes/server_spec.rb
freighthop-0.3.1 modules/postgresql/spec/unit/classes/server_spec.rb
freighthop-0.3.0 modules/postgresql/spec/unit/classes/server_spec.rb
freighthop-0.2.1 modules/postgresql/spec/unit/classes/server_spec.rb
freighthop-0.2.0 modules/postgresql/spec/unit/classes/server_spec.rb
freighthop-0.1.0 modules/postgresql/spec/unit/classes/server_spec.rb