2013-08-27 22:43:47 +02:00
|
|
|
require 'spec_helper_system'
|
|
|
|
|
|
|
|
describe 'postgresql::server::table_grant:' do
|
|
|
|
after :all do
|
|
|
|
# Cleanup after tests have ran
|
|
|
|
puppet_apply("class { 'postgresql::server': ensure => absent }") do |r|
|
|
|
|
r.exit_code.should_not == 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should grant access so a user can insert in a table' do
|
|
|
|
begin
|
2013-09-18 23:25:51 +02:00
|
|
|
pp = <<-EOS.unindent
|
2013-08-27 22:43:47 +02:00
|
|
|
$db = 'table_grant'
|
|
|
|
$user = 'psql_table_tester'
|
|
|
|
$password = 'psql_table_pw'
|
|
|
|
|
|
|
|
class { 'postgresql::server': }
|
|
|
|
|
|
|
|
# Since we are not testing pg_hba or any of that, make a local user for ident auth
|
|
|
|
user { $user:
|
|
|
|
ensure => present,
|
|
|
|
}
|
|
|
|
|
|
|
|
postgresql::server::role { $user:
|
|
|
|
password_hash => postgresql_password($user, $password),
|
|
|
|
}
|
|
|
|
|
|
|
|
postgresql::server::database { $db: }
|
|
|
|
|
|
|
|
postgresql_psql { 'Create testing table':
|
|
|
|
command => 'CREATE TABLE "test_table" (field integer NOT NULL)',
|
|
|
|
db => $db,
|
|
|
|
unless => "SELECT * FROM pg_tables WHERE tablename = 'test_table'",
|
|
|
|
require => Postgresql::Server::Database[$db],
|
|
|
|
}
|
|
|
|
|
|
|
|
postgresql::server::table_grant { 'grant insert test':
|
|
|
|
privilege => 'INSERT',
|
|
|
|
table => 'test_table',
|
|
|
|
db => $db,
|
|
|
|
role => $user,
|
|
|
|
require => Postgresql_psql['Create testing table'],
|
|
|
|
}
|
|
|
|
EOS
|
|
|
|
|
|
|
|
puppet_apply(pp) do |r|
|
|
|
|
r.exit_code.should_not == 1
|
|
|
|
r.refresh
|
|
|
|
r.exit_code.should == 0
|
|
|
|
end
|
|
|
|
|
|
|
|
## Check that the user can create a table in the database
|
2013-09-18 23:25:51 +02:00
|
|
|
psql('--command="create table foo (foo int)" postgres', 'psql_grant_tester') do |r|
|
|
|
|
r.stdout.should =~ /CREATE TABLE/
|
|
|
|
r.stderr.should be_empty
|
|
|
|
r.exit_code.should == 0
|
|
|
|
end
|
2013-08-27 22:43:47 +02:00
|
|
|
ensure
|
2013-09-18 23:25:51 +02:00
|
|
|
psql('--command="drop table foo" postgres', 'psql_grant_tester')
|
2013-08-27 22:43:47 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|