mirror of
https://github.com/saltstack-formulas/postgres-formula.git
synced 2025-04-16 09:40:26 +00:00
21 lines
515 B
Ruby
21 lines
515 B
Ruby
require 'serverspec'
|
|
|
|
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('su - postgres -c "psql -qtc \"\l+ db2\""') do
|
|
its(:stdout) { should match(/db2.*localUser.*UTF8.*C.UTF-8.*C.UTF-8.*my_space/) }
|
|
end
|