mirror of
https://github.com/saltstack-formulas/postgres-formula.git
synced 2025-04-16 09:40:26 +00:00

The reworks in merge #110 broke this formulas kitchen based specs. This MR changes a few minor things, mostly pillar.example and other inconsistent documentations. Also, the use of db_user for `postgres_tablespace.present` and `postgres_database.present` now fits the states options, as db_password etc can be specified as well.
23 lines
546 B
Ruby
23 lines
546 B
Ruby
require 'serverspec'
|
|
|
|
set :backend, :exec
|
|
|
|
describe service('postgresql') do
|
|
it { should be_enabled }
|
|
it { should be_running }
|
|
end
|
|
|
|
describe port('5432') do
|
|
it { should be_listening }
|
|
end
|
|
|
|
describe file('/srv/my_tablespace') do
|
|
it { should be_directory }
|
|
it { should be_mode 700 }
|
|
it { should be_owned_by 'postgres' }
|
|
it { should be_grouped_into 'postgres' }
|
|
end
|
|
|
|
describe command(%q{su - postgres -c 'psql -qtc "\l+ db2"'}) do
|
|
its(:stdout) { should match(/db2.*localUser.*UTF8.*en_US\.UTF-8.*en_US\.UTF-8.*my_space/) }
|
|
end
|