-
Notifications
You must be signed in to change notification settings - Fork 235
/
Copy pathresource_postgresql_role_test.go
419 lines (373 loc) · 13.7 KB
/
resource_postgresql_role_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
package postgresql
import (
"database/sql"
"fmt"
"os"
"reflect"
"sort"
"strings"
"testing"
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
"github.com/hashicorp/terraform-plugin-sdk/terraform"
)
func TestAccPostgresqlRole_Basic(t *testing.T) {
resource.Test(t, resource.TestCase{
PreCheck: func() {
testAccPreCheck(t)
testCheckCompatibleVersion(t, featurePrivileges)
},
Providers: testAccProviders,
CheckDestroy: testAccCheckPostgresqlRoleDestroy,
Steps: []resource.TestStep{
{
Config: testAccPostgresqlRoleConfig,
Check: resource.ComposeTestCheckFunc(
testAccCheckPostgresqlRoleExists("myrole2", nil, nil),
resource.TestCheckResourceAttr("postgresql_role.myrole2", "name", "myrole2"),
resource.TestCheckResourceAttr("postgresql_role.myrole2", "login", "true"),
resource.TestCheckResourceAttr("postgresql_role.myrole2", "roles.#", "0"),
testAccCheckPostgresqlRoleExists("role_default", nil, nil),
resource.TestCheckResourceAttr("postgresql_role.role_with_defaults", "name", "role_default"),
resource.TestCheckResourceAttr("postgresql_role.role_with_defaults", "superuser", "false"),
resource.TestCheckResourceAttr("postgresql_role.role_with_defaults", "create_database", "false"),
resource.TestCheckResourceAttr("postgresql_role.role_with_defaults", "create_role", "false"),
resource.TestCheckResourceAttr("postgresql_role.role_with_defaults", "inherit", "false"),
resource.TestCheckResourceAttr("postgresql_role.role_with_defaults", "replication", "false"),
resource.TestCheckResourceAttr("postgresql_role.role_with_defaults", "bypass_row_level_security", "false"),
resource.TestCheckResourceAttr("postgresql_role.role_with_defaults", "connection_limit", "-1"),
resource.TestCheckResourceAttr("postgresql_role.role_with_defaults", "encrypted_password", "true"),
resource.TestCheckResourceAttr("postgresql_role.role_with_defaults", "password", ""),
resource.TestCheckResourceAttr("postgresql_role.role_with_defaults", "valid_until", "infinity"),
resource.TestCheckResourceAttr("postgresql_role.role_with_defaults", "skip_drop_role", "false"),
resource.TestCheckResourceAttr("postgresql_role.role_with_defaults", "skip_reassign_owned", "false"),
resource.TestCheckResourceAttr("postgresql_role.role_with_defaults", "statement_timeout", "0"),
resource.TestCheckResourceAttr("postgresql_role.role_with_create_database", "name", "role_with_create_database"),
resource.TestCheckResourceAttr("postgresql_role.role_with_create_database", "create_database", "true"),
testAccCheckPostgresqlRoleExists("sub_role", []string{"myrole2", "role_simple"}, nil),
resource.TestCheckResourceAttr("postgresql_role.sub_role", "name", "sub_role"),
resource.TestCheckResourceAttr("postgresql_role.sub_role", "roles.#", "2"),
testAccCheckPostgresqlRoleExists("role_with_search_path", nil, []string{"bar", "foo-with-hyphen"}),
// The int part in the attr name is the schema.HashString of the value.
resource.TestCheckResourceAttr("postgresql_role.sub_role", "roles.719783566", "myrole2"),
resource.TestCheckResourceAttr("postgresql_role.sub_role", "roles.1784536243", "role_simple"),
),
},
},
})
}
// Test creating a superuser role.
func TestAccPostgresqlRole_Superuser(t *testing.T) {
roleConfig := `
resource "postgresql_role" "role_with_superuser" {
name = "role_with_superuser"
superuser = true
login = true
password = "mypass"
}`
resource.Test(t, resource.TestCase{
PreCheck: func() {
testAccPreCheck(t)
testCheckCompatibleVersion(t, featurePrivileges)
// Need to a be a superuser to create a superuser
testSuperuserPreCheck(t)
},
Providers: testAccProviders,
CheckDestroy: testAccCheckPostgresqlRoleDestroy,
Steps: []resource.TestStep{
{
Config: roleConfig,
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttr("postgresql_role.role_with_superuser", "name", "role_with_superuser"),
resource.TestCheckResourceAttr("postgresql_role.role_with_superuser", "superuser", "true"),
),
},
},
})
}
func TestAccPostgresqlRole_Update(t *testing.T) {
var configCreate = `
resource "postgresql_role" "update_role" {
name = "update_role"
login = true
password = "toto"
valid_until = "2099-05-04 12:00:00+00"
}
`
var configUpdate = `
resource "postgresql_role" "group_role" {
name = "group_role"
}
resource "postgresql_role" "update_role" {
name = "update_role2"
login = true
connection_limit = 5
password = "titi"
roles = ["${postgresql_role.group_role.name}"]
search_path = ["mysearchpath"]
statement_timeout = 30000
}
`
resource.Test(t, resource.TestCase{
PreCheck: func() {
testAccPreCheck(t)
testCheckCompatibleVersion(t, featurePrivileges)
},
Providers: testAccProviders,
CheckDestroy: testAccCheckPostgresqlRoleDestroy,
Steps: []resource.TestStep{
{
Config: configCreate,
Check: resource.ComposeTestCheckFunc(
testAccCheckPostgresqlRoleExists("update_role", []string{}, nil),
resource.TestCheckResourceAttr("postgresql_role.update_role", "name", "update_role"),
resource.TestCheckResourceAttr("postgresql_role.update_role", "login", "true"),
resource.TestCheckResourceAttr("postgresql_role.update_role", "connection_limit", "-1"),
resource.TestCheckResourceAttr("postgresql_role.update_role", "password", "toto"),
resource.TestCheckResourceAttr("postgresql_role.update_role", "valid_until", "2099-05-04 12:00:00+00"),
resource.TestCheckResourceAttr("postgresql_role.update_role", "roles.#", "0"),
resource.TestCheckResourceAttr("postgresql_role.update_role", "search_path.#", "0"),
resource.TestCheckResourceAttr("postgresql_role.update_role", "statement_timeout", "0"),
testAccCheckRoleCanLogin(t, "update_role", "toto"),
),
},
{
Config: configUpdate,
Check: resource.ComposeTestCheckFunc(
testAccCheckPostgresqlRoleExists("update_role2", []string{"group_role"}, nil),
resource.TestCheckResourceAttr(
"postgresql_role.update_role", "name", "update_role2",
),
resource.TestCheckResourceAttr("postgresql_role.update_role", "connection_limit", "5"),
resource.TestCheckResourceAttr("postgresql_role.update_role", "login", "true"),
resource.TestCheckResourceAttr("postgresql_role.update_role", "password", "titi"),
resource.TestCheckResourceAttr("postgresql_role.update_role", "valid_until", "infinity"),
resource.TestCheckResourceAttr("postgresql_role.update_role", "roles.#", "1"),
// The int part in the attr name is the schema.HashString of the value.
resource.TestCheckResourceAttr(
"postgresql_role.update_role", "roles.2117325082", "group_role",
),
resource.TestCheckResourceAttr("postgresql_role.update_role", "search_path.#", "1"),
resource.TestCheckResourceAttr("postgresql_role.update_role", "search_path.0", "mysearchpath"),
resource.TestCheckResourceAttr("postgresql_role.update_role", "statement_timeout", "30000"),
testAccCheckRoleCanLogin(t, "update_role2", "titi"),
),
},
// apply the first one again to test that the granted role is correctly
// revoked and the search path has been reset to default.
{
Config: configCreate,
Check: resource.ComposeTestCheckFunc(
testAccCheckPostgresqlRoleExists("update_role", []string{}, nil),
resource.TestCheckResourceAttr("postgresql_role.update_role", "name", "update_role"),
resource.TestCheckResourceAttr("postgresql_role.update_role", "login", "true"),
resource.TestCheckResourceAttr("postgresql_role.update_role", "connection_limit", "-1"),
resource.TestCheckResourceAttr("postgresql_role.update_role", "password", "toto"),
resource.TestCheckResourceAttr("postgresql_role.update_role", "roles.#", "0"),
resource.TestCheckResourceAttr("postgresql_role.update_role", "search_path.#", "0"),
resource.TestCheckResourceAttr("postgresql_role.update_role", "statement_timeout", "0"),
testAccCheckRoleCanLogin(t, "update_role", "toto"),
),
},
},
})
}
// Test to create a role with admin user (usually postgres) granted to it
// There were a bug on RDS like setup (with a non-superuser postgres role)
// where it couldn't delete the role in this case.
func TestAccPostgresqlRole_AdminGranted(t *testing.T) {
admin := os.Getenv("PGUSER")
if admin == "" {
admin = "postgres"
}
roleConfig := fmt.Sprintf(`
resource "postgresql_role" "test_role" {
name = "test_role"
roles = [
"%s"
]
}`, admin)
resource.Test(t, resource.TestCase{
PreCheck: func() {
testAccPreCheck(t)
testCheckCompatibleVersion(t, featurePrivileges)
},
Providers: testAccProviders,
CheckDestroy: testAccCheckPostgresqlRoleDestroy,
Steps: []resource.TestStep{
{
Config: roleConfig,
Check: resource.ComposeTestCheckFunc(
testAccCheckPostgresqlRoleExists("test_role", []string{admin}, nil),
resource.TestCheckResourceAttr("postgresql_role.test_role", "name", "test_role"),
),
},
},
})
}
func testAccCheckPostgresqlRoleDestroy(s *terraform.State) error {
client := testAccProvider.Meta().(*Client)
for _, rs := range s.RootModule().Resources {
if rs.Type != "postgresql_role" {
continue
}
exists, err := checkRoleExists(client, rs.Primary.ID)
if err != nil {
return fmt.Errorf("Error checking role %s", err)
}
if exists {
return fmt.Errorf("Role still exists after destroy")
}
}
return nil
}
func testAccCheckPostgresqlRoleExists(roleName string, grantedRoles []string, searchPath []string) resource.TestCheckFunc {
return func(s *terraform.State) error {
client := testAccProvider.Meta().(*Client)
exists, err := checkRoleExists(client, roleName)
if err != nil {
return fmt.Errorf("Error checking role %s", err)
}
if !exists {
return fmt.Errorf("Role not found")
}
if grantedRoles != nil {
if err := checkGrantedRoles(client, roleName, grantedRoles); err != nil {
return err
}
}
if searchPath != nil {
if err := checkSearchPath(client, roleName, searchPath); err != nil {
return err
}
}
return nil
}
}
func checkRoleExists(client *Client, roleName string) (bool, error) {
var _rez int
err := client.DB().QueryRow("SELECT 1 from pg_roles d WHERE rolname=$1", roleName).Scan(&_rez)
switch {
case err == sql.ErrNoRows:
return false, nil
case err != nil:
return false, fmt.Errorf("Error reading info about role: %s", err)
}
return true, nil
}
func testAccCheckRoleCanLogin(t *testing.T, role, password string) resource.TestCheckFunc {
return func(s *terraform.State) error {
config := getTestConfig(t)
config.Username = role
config.Password = password
db, err := sql.Open("postgres", config.connStr("postgres"))
if err != nil {
return fmt.Errorf("could not open SQL connection: %v", err)
}
if err := db.Ping(); err != nil {
return fmt.Errorf("could not connect as role %s: %v", role, err)
}
return nil
}
}
func checkGrantedRoles(client *Client, roleName string, expectedRoles []string) error {
rows, err := client.DB().Query(
"SELECT pg_get_userbyid(roleid) as rolname from pg_auth_members WHERE pg_get_userbyid(member) = $1 ORDER BY rolname",
roleName,
)
if err != nil {
return fmt.Errorf("Error reading granted roles: %v", err)
}
defer rows.Close()
grantedRoles := []string{}
for rows.Next() {
var grantedRole string
if err := rows.Scan(&grantedRole); err != nil {
return fmt.Errorf("Error scanning granted role: %v", err)
}
grantedRoles = append(grantedRoles, grantedRole)
}
sort.Strings(expectedRoles)
if !reflect.DeepEqual(grantedRoles, expectedRoles) {
return fmt.Errorf(
"Role %s is not a member of the expected list of roles. expected %v - got %v",
roleName, expectedRoles, grantedRoles,
)
}
return nil
}
func checkSearchPath(client *Client, roleName string, expectedSearchPath []string) error {
var searchPathStr string
err := client.DB().QueryRow(
"SELECT (pg_options_to_table(rolconfig)).option_value FROM pg_roles WHERE rolname=$1;",
roleName,
).Scan(&searchPathStr)
// The query returns ErrNoRows if the search path hasn't been altered.
if err != nil && err == sql.ErrNoRows {
searchPathStr = "\"$user\", public"
} else if err != nil {
return fmt.Errorf("Error reading search_path: %v", err)
}
searchPath := strings.Split(searchPathStr, ", ")
for i := range searchPath {
searchPath[i] = strings.Trim(searchPath[i], `"`)
}
sort.Strings(expectedSearchPath)
if !reflect.DeepEqual(searchPath, expectedSearchPath) {
return fmt.Errorf(
"search_path is not equal to expected value. expected %v - got %v",
expectedSearchPath, searchPath,
)
}
return nil
}
var testAccPostgresqlRoleConfig = `
resource "postgresql_role" "myrole2" {
name = "myrole2"
login = true
}
resource "postgresql_role" "role_with_pwd" {
name = "role_with_pwd"
login = true
password = "mypass"
}
resource "postgresql_role" "role_with_pwd_encr" {
name = "role_with_pwd_encr"
login = true
password = "mypass"
encrypted_password = true
}
resource "postgresql_role" "role_simple" {
name = "role_simple"
}
resource "postgresql_role" "role_with_defaults" {
name = "role_default"
superuser = false
create_database = false
create_role = false
inherit = false
login = false
replication = false
bypass_row_level_security = false
connection_limit = -1
encrypted_password = true
password = ""
skip_drop_role = false
valid_until = "infinity"
statement_timeout = 0
}
resource "postgresql_role" "role_with_create_database" {
name = "role_with_create_database"
create_database = true
}
resource "postgresql_role" "sub_role" {
name = "sub_role"
roles = [
"${postgresql_role.myrole2.id}",
"${postgresql_role.role_simple.id}",
]
}
resource "postgresql_role" "role_with_search_path" {
name = "role_with_search_path"
search_path = ["bar", "foo-with-hyphen"]
}
`