-
Notifications
You must be signed in to change notification settings - Fork 30
/
e2e_postgres_test.go
522 lines (456 loc) · 14.8 KB
/
e2e_postgres_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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
// Copyright 2020 Google LLC
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// https://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//go:build !skip_postgres
// +build !skip_postgres
package cloudsqlconn_test
import (
"context"
"database/sql"
"fmt"
"net"
"os"
"strings"
"testing"
"time"
"cloud.google.com/go/cloudsqlconn"
"cloud.google.com/go/cloudsqlconn/instance"
"github.com/jackc/pgx/v5/pgxpool"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
"cloud.google.com/go/cloudsqlconn/postgres/pgxv4"
"cloud.google.com/go/cloudsqlconn/postgres/pgxv5"
)
var (
postgresConnName = os.Getenv("POSTGRES_CONNECTION_NAME") // "Cloud SQL Postgres instance connection name, in the form of 'project:region:instance'.
postgresCASConnName = os.Getenv("POSTGRES_CAS_CONNECTION_NAME") // "Cloud SQL Postgres CAS instance connection name, in the form of 'project:region:instance'.
postgresUser = os.Getenv("POSTGRES_USER") // Name of database user.
postgresPass = os.Getenv("POSTGRES_PASS") // Password for the database user; be careful when entering a password on the command line (it may go into your terminal's history).
postgresCASPass = os.Getenv("POSTGRES_CAS_PASS") // Password for the database user for CAS instances; be careful when entering a password on the command line (it may go into your terminal's history).
postgresDB = os.Getenv("POSTGRES_DB") // Name of the database to connect to.
postgresUserIAM = os.Getenv("POSTGRES_USER_IAM") // Name of database IAM user.
)
func requirePostgresVars(t *testing.T) {
switch "" {
case postgresConnName:
t.Fatal("'POSTGRES_CONNECTION_NAME' env var not set")
case postgresCASConnName:
t.Fatal("'POSTGRES_CAS_CONNECTION_NAME' env var not set")
case postgresUser:
t.Fatal("'POSTGRES_USER' env var not set")
case postgresPass:
t.Fatal("'POSTGRES_PASS' env var not set")
case postgresCASPass:
t.Fatal("'POSTGRES_CAS_PASS' env var not set")
case postgresDB:
t.Fatal("'POSTGRES_DB' env var not set")
case postgresUserIAM:
t.Fatal("'POSTGRES_USER_IAM' env var not set")
}
}
func TestPostgresPgxPoolConnect(t *testing.T) {
if testing.Short() {
t.Skip("skipping Postgres integration tests")
}
requirePostgresVars(t)
ctx := context.Background()
// Configure the driver to connect to the database
dsn := fmt.Sprintf("user=%s password=%s dbname=%s sslmode=disable", postgresUser, postgresPass, postgresDB)
config, err := pgxpool.ParseConfig(dsn)
if err != nil {
t.Fatalf("failed to parse pgx config: %v", err)
}
// Create a new dialer with any options
d, err := cloudsqlconn.NewDialer(ctx)
if err != nil {
t.Fatalf("failed to init Dialer: %v", err)
}
// call cleanup when you're done with the database connection to close dialer
cleanup := func() error { return d.Close() }
// Tell the driver to use the Cloud SQL Go Connector to create connections
// postgresConnName takes the form of 'project:region:instance'.
config.ConnConfig.DialFunc = func(ctx context.Context, _ string, _ string) (net.Conn, error) {
return d.Dial(ctx, postgresConnName)
}
// Interact with the driver directly as you normally would
pool, err := pgxpool.NewWithConfig(ctx, config)
if err != nil {
t.Fatalf("failed to create pool: %s", err)
}
// ... etc
defer cleanup()
defer pool.Close()
var now time.Time
err = pool.QueryRow(context.Background(), "SELECT NOW()").Scan(&now)
if err != nil {
t.Fatalf("QueryRow failed: %s", err)
}
t.Log(now)
}
func TestPostgresCASConnect(t *testing.T) {
if testing.Short() {
t.Skip("skipping Postgres integration tests")
}
requirePostgresVars(t)
ctx := context.Background()
// Configure the driver to connect to the database
dsn := fmt.Sprintf("user=%s password=%s dbname=%s sslmode=disable", postgresUser, postgresCASPass, postgresDB)
config, err := pgxpool.ParseConfig(dsn)
if err != nil {
t.Fatalf("failed to parse pgx config: %v", err)
}
// Create a new dialer with any options
d, err := cloudsqlconn.NewDialer(ctx)
if err != nil {
t.Fatalf("failed to init Dialer: %v", err)
}
// call cleanup when you're done with the database connection to close dialer
cleanup := func() error { return d.Close() }
// Tell the driver to use the Cloud SQL Go Connector to create connections
// postgresConnName takes the form of 'project:region:instance'.
config.ConnConfig.DialFunc = func(ctx context.Context, _ string, _ string) (net.Conn, error) {
return d.Dial(ctx, postgresCASConnName)
}
// Interact with the driver directly as you normally would
pool, err := pgxpool.NewWithConfig(ctx, config)
if err != nil {
t.Fatalf("failed to create pool: %s", err)
}
// ... etc
defer cleanup()
defer pool.Close()
var now time.Time
err = pool.QueryRow(context.Background(), "SELECT NOW()").Scan(&now)
if err != nil {
t.Fatalf("QueryRow failed: %s", err)
}
t.Log(now)
}
type pgMockResolver struct {
}
func (r *pgMockResolver) Resolve(_ context.Context, name string) (instanceName instance.ConnName, err error) {
if name == "pg.example.com" {
return instance.ParseConnNameWithDomainName(postgresConnName, "pg.example.com")
}
return instance.ConnName{}, fmt.Errorf("no resolution for %v", name)
}
func TestPostgresPgxPoolConnectDomainName(t *testing.T) {
if testing.Short() {
t.Skip("skipping Postgres integration tests")
}
requirePostgresVars(t)
pgxv5.RegisterDriver("pgxpool-connect")
ctx := context.Background()
// Configure the driver to connect to the database
dsn := fmt.Sprintf("user=%s password=%s dbname=%s sslmode=disable", postgresUser, postgresPass, postgresDB)
config, err := pgxpool.ParseConfig(dsn)
if err != nil {
t.Fatalf("failed to parse pgx config: %v", err)
}
// Create a new dialer with any options
d, err := cloudsqlconn.NewDialer(ctx, cloudsqlconn.WithResolver(&pgMockResolver{}))
if err != nil {
t.Fatalf("failed to init Dialer: %v", err)
}
// call cleanup when you're done with the database connection to close dialer
cleanup := func() { d.Close() }
t.Cleanup(cleanup)
// Tell the driver to use the Cloud SQL Go Connector to create connections
// postgresConnName takes the form of 'project:region:instance'.
config.ConnConfig.DialFunc = func(ctx context.Context, _ string, _ string) (net.Conn, error) {
return d.Dial(ctx, "pg.example.com")
}
pool, err := pgxpool.NewWithConfig(ctx, config)
if err != nil {
t.Fatalf("failed to create pool: %s", err)
}
defer pool.Close()
var now time.Time
err = pool.QueryRow(context.Background(), "SELECT NOW()").Scan(&now)
if err != nil {
t.Fatalf("QueryRow failed: %s", err)
}
t.Log(now)
}
func TestPostgresConnectWithIAMUser(t *testing.T) {
if testing.Short() {
t.Skip("skipping Postgres integration tests")
}
requirePostgresVars(t)
ctx := context.Background()
// password is intentionally blank
dsn := fmt.Sprintf("user=%s password=\"\" dbname=%s sslmode=disable", postgresUserIAM, postgresDB)
config, err := pgxpool.ParseConfig(dsn)
if err != nil {
t.Fatalf("failed to parse pgx config: %v", err)
}
d, err := cloudsqlconn.NewDialer(ctx, cloudsqlconn.WithIAMAuthN())
if err != nil {
t.Fatalf("failed to initiate Dialer: %v", err)
}
defer d.Close()
config.ConnConfig.DialFunc = func(ctx context.Context, _ string, _ string) (net.Conn, error) {
return d.Dial(ctx, postgresConnName)
}
pool, err := pgxpool.NewWithConfig(ctx, config)
if err != nil {
t.Fatalf("failed to create pool: %s", err)
}
defer pool.Close()
var now time.Time
err = pool.QueryRow(context.Background(), "SELECT NOW()").Scan(&now)
if err != nil {
t.Fatalf("QueryRow failed: %s", err)
}
t.Log(now)
}
func TestPostgresConnectWithLazyRefresh(t *testing.T) {
if testing.Short() {
t.Skip("skipping Postgres integration tests")
}
requirePostgresVars(t)
ctx := context.Background()
// password is intentionally blank
dsn := fmt.Sprintf("user=%s password=\"\" dbname=%s sslmode=disable", postgresUserIAM, postgresDB)
config, err := pgxpool.ParseConfig(dsn)
if err != nil {
t.Fatalf("failed to parse pgx config: %v", err)
}
d, err := cloudsqlconn.NewDialer(
ctx,
cloudsqlconn.WithLazyRefresh(),
cloudsqlconn.WithIAMAuthN(), // use IAM AuthN to exercise all paths
)
if err != nil {
t.Fatalf("failed to initiate Dialer: %v", err)
}
defer d.Close()
config.ConnConfig.DialFunc = func(ctx context.Context, _ string, _ string) (net.Conn, error) {
return d.Dial(ctx, postgresConnName)
}
pool, err := pgxpool.NewWithConfig(ctx, config)
if err != nil {
t.Fatalf("failed to create pool: %s", err)
}
defer pool.Close()
var now time.Time
err = pool.QueryRow(context.Background(), "SELECT NOW()").Scan(&now)
if err != nil {
t.Fatalf("QueryRow failed: %s", err)
}
t.Log(now)
}
func TestPostgresEngineVersion(t *testing.T) {
if testing.Short() {
t.Skip("skipping Postgres integration tests")
}
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
d, err := cloudsqlconn.NewDialer(context.Background())
if err != nil {
t.Fatalf("failed to init Dialer: %v", err)
}
gotEV, err := d.EngineVersion(ctx, postgresConnName)
if err != nil {
t.Fatalf("failed to retrieve engine version: %v", err)
}
if !strings.Contains(gotEV, "POSTGRES") {
t.Errorf("InstanceEngineVersion(%s) failed: want 'POSTGRES', got %v", gotEV, err)
}
}
func TestPostgresV5Hook(t *testing.T) {
tests := []struct {
driver string
source string
IAMAuthN bool
resolver bool
}{
{
driver: "cloudsql-postgres-v5",
source: fmt.Sprintf("host=%s user=%s password=%s dbname=%s sslmode=disable",
postgresConnName, postgresUser, postgresPass, postgresDB),
IAMAuthN: false,
},
{
driver: "cloudsql-postgres-iam-v5",
source: fmt.Sprintf("host=%s user=%s dbname=%s sslmode=disable",
postgresConnName, postgresUserIAM, postgresDB),
IAMAuthN: true,
},
{
driver: "cloudsql-postgres-v5-dns",
source: fmt.Sprintf("host=%s user=%s password=%s dbname=%s sslmode=disable",
"pg.example.com", postgresUser, postgresPass, postgresDB),
IAMAuthN: false,
resolver: true,
},
}
if testing.Short() {
t.Skip("skipping Postgres integration tests")
}
testConn := func(db *sql.DB) {
var now time.Time
if err := db.QueryRow("SELECT NOW()").Scan(&now); err != nil {
t.Fatalf("QueryRow failed: %v", err)
}
t.Log(now)
}
for _, tc := range tests {
if tc.IAMAuthN {
pgxv5.RegisterDriver(tc.driver, cloudsqlconn.WithIAMAuthN())
} else if tc.resolver {
pgxv5.RegisterDriver(tc.driver, cloudsqlconn.WithResolver(&pgMockResolver{}))
} else {
pgxv5.RegisterDriver(tc.driver)
}
db, err := sql.Open(tc.driver, tc.source)
if err != nil {
t.Fatalf("sql.Open want err = nil, got = %v", err)
}
defer db.Close()
testConn(db)
}
}
func TestPostgresV4Hook(t *testing.T) {
tests := []struct {
driver string
source string
IAMAuthN bool
}{
{
driver: "cloudsql-postgres-v4",
source: fmt.Sprintf("host=%s user=%s password=%s dbname=%s sslmode=disable",
postgresConnName, postgresUser, postgresPass, postgresDB),
IAMAuthN: false,
},
{
driver: "cloudsql-postgres-iam-v4",
source: fmt.Sprintf("host=%s user=%s dbname=%s sslmode=disable",
postgresConnName, postgresUserIAM, postgresDB),
IAMAuthN: true,
},
}
if testing.Short() {
t.Skip("skipping Postgres integration tests")
}
testConn := func(db *sql.DB) {
var now time.Time
if err := db.QueryRow("SELECT NOW()").Scan(&now); err != nil {
t.Fatalf("QueryRow failed: %v", err)
}
t.Log(now)
}
for _, tc := range tests {
if tc.IAMAuthN {
pgxv4.RegisterDriver(tc.driver, cloudsqlconn.WithIAMAuthN())
} else {
pgxv4.RegisterDriver(tc.driver)
}
db, err := sql.Open(tc.driver, tc.source)
if err != nil {
t.Fatalf("sql.Open want err = nil, got = %v", err)
}
defer db.Close()
testConn(db)
}
}
// removeAuthEnvVar retrieves an OAuth2 token and a path to a service account key
// and then unsets GOOGLE_APPLICATION_CREDENTIALS. It returns a cleanup function
// that restores the original setup.
func removeAuthEnvVar(t *testing.T) (*oauth2.Token, string, func()) {
ts, err := google.DefaultTokenSource(context.Background(),
"https://www.googleapis.com/auth/cloud-platform",
)
if err != nil {
t.Errorf("failed to resolve token source: %v", err)
}
tok, err := ts.Token()
if err != nil {
t.Errorf("failed to get token: %v", err)
}
path, ok := os.LookupEnv("GOOGLE_APPLICATION_CREDENTIALS")
if !ok {
t.Fatalf("GOOGLE_APPLICATION_CREDENTIALS was not set in the environment")
}
if err := os.Unsetenv("GOOGLE_APPLICATION_CREDENTIALS"); err != nil {
t.Fatalf("failed to unset GOOGLE_APPLICATION_CREDENTIALS")
}
return tok, path, func() {
os.Setenv("GOOGLE_APPLICATION_CREDENTIALS", path)
}
}
func keyfile(t *testing.T) string {
path := os.Getenv("GOOGLE_APPLICATION_CREDENTIALS")
if path == "" {
t.Fatal("GOOGLE_APPLICATION_CREDENTIALS not set")
}
creds, err := os.ReadFile(path)
if err != nil {
t.Fatalf("io.ReadAll(): %v", err)
}
return string(creds)
}
func TestPostgresAuthentication(t *testing.T) {
if testing.Short() {
t.Skip("skipping Postgres integration tests")
}
requirePostgresVars(t)
creds := keyfile(t)
tok, path, cleanup := removeAuthEnvVar(t)
defer cleanup()
tcs := []struct {
desc string
opts []cloudsqlconn.Option
}{
{
desc: "with token",
opts: []cloudsqlconn.Option{cloudsqlconn.WithTokenSource(
oauth2.StaticTokenSource(tok),
)},
},
{
desc: "with credentials file",
opts: []cloudsqlconn.Option{cloudsqlconn.WithCredentialsFile(path)},
},
{
desc: "with credentials JSON",
opts: []cloudsqlconn.Option{cloudsqlconn.WithCredentialsJSON([]byte(creds))},
},
}
for _, tc := range tcs {
t.Run(tc.desc, func(t *testing.T) {
ctx := context.Background()
d, err := cloudsqlconn.NewDialer(ctx, tc.opts...)
if err != nil {
t.Fatalf("failed to init Dialer: %v", err)
}
defer d.Close()
dsn := fmt.Sprintf("user=%s password=%s dbname=%s sslmode=disable", postgresUser, postgresPass, postgresDB)
config, err := pgxpool.ParseConfig(dsn)
if err != nil {
t.Fatalf("failed to parse pgx config: %v", err)
}
config.ConnConfig.DialFunc = func(ctx context.Context, _ string, _ string) (net.Conn, error) {
return d.Dial(ctx, postgresConnName)
}
pool, err := pgxpool.NewWithConfig(ctx, config)
if err != nil {
t.Fatalf("failed to create pool: %s", err)
}
defer pool.Close()
var now time.Time
err = pool.QueryRow(context.Background(), "SELECT NOW()").Scan(&now)
if err != nil {
t.Fatalf("QueryRow failed: %s", err)
}
t.Log(now)
})
}
}