postgres-formula/test/integration/default/serverspec/postgres_spec.rb
Javier Bértoli 9719e2354e Allow to specify a tablespace for a database
* Tablespaces have to be created before the databases
* Add pillar examples
* Add tests
2016-06-08 07:36:28 -03:00

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