-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdb_test.go
More file actions
1291 lines (1105 loc) · 38.6 KB
/
db_test.go
File metadata and controls
1291 lines (1105 loc) · 38.6 KB
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
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package cmd
import (
"bytes"
"fmt"
"os"
"strings"
"testing"
"time"
"github.com/jackc/pgx/v5/pgconn"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"github.com/timescale/tiger-cli/internal/tiger/api"
"github.com/timescale/tiger-cli/internal/tiger/config"
"github.com/timescale/tiger-cli/internal/tiger/password"
"github.com/timescale/tiger-cli/internal/tiger/util"
)
func setupDBTest(t *testing.T) string {
t.Helper()
// Create temporary directory for test config
tmpDir, err := os.MkdirTemp("", "tiger-db-test-*")
if err != nil {
t.Fatalf("Failed to create temp dir: %v", err)
}
// Set temporary config directory
os.Setenv("TIGER_CONFIG_DIR", tmpDir)
// Reset global config and viper to ensure test isolation
config.ResetGlobalConfig()
t.Cleanup(func() {
// Reset global config and viper first
config.ResetGlobalConfig()
// Clean up environment variable BEFORE cleaning up file system
os.Unsetenv("TIGER_CONFIG_DIR")
// Then clean up file system
os.RemoveAll(tmpDir)
})
return tmpDir
}
func executeDBCommand(args ...string) (string, error) {
// Use buildRootCmd() to get a complete root command with all flags and subcommands
testRoot := buildRootCmd()
buf := new(bytes.Buffer)
testRoot.SetOut(buf)
testRoot.SetErr(buf)
testRoot.SetArgs(args)
err := testRoot.Execute()
return buf.String(), err
}
func TestDBConnectionString_NoServiceID(t *testing.T) {
tmpDir := setupDBTest(t)
// Set up config with project ID but no default service ID
_, err := config.UseTestConfig(tmpDir, map[string]any{
"api_url": "https://api.tigerdata.com/public/v1",
"project_id": "test-project-123",
})
if err != nil {
t.Fatalf("Failed to save test config: %v", err)
}
// Mock authentication
originalGetAPIKey := getAPIKeyForDB
getAPIKeyForDB = func() (string, error) {
return "test-api-key", nil
}
defer func() { getAPIKeyForDB = originalGetAPIKey }()
// Execute db connection-string command without service ID
_, err = executeDBCommand("db", "connection-string")
if err == nil {
t.Fatal("Expected error when no service ID is provided or configured")
}
if !strings.Contains(err.Error(), "service ID is required") {
t.Errorf("Expected error about missing service ID, got: %v", err)
}
}
func TestDBConnectionString_NoAuth(t *testing.T) {
tmpDir := setupDBTest(t)
// Set up config with project ID and service ID
_, err := config.UseTestConfig(tmpDir, map[string]any{
"api_url": "https://api.tigerdata.com/public/v1",
"project_id": "test-project-123",
"service_id": "svc-12345",
})
if err != nil {
t.Fatalf("Failed to save test config: %v", err)
}
// Mock authentication failure
originalGetAPIKey := getAPIKeyForDB
getAPIKeyForDB = func() (string, error) {
return "", fmt.Errorf("not logged in")
}
defer func() { getAPIKeyForDB = originalGetAPIKey }()
// Execute db connection-string command
_, err = executeDBCommand("db", "connection-string")
if err == nil {
t.Fatal("Expected error when not authenticated")
}
if !strings.Contains(err.Error(), "authentication required") {
t.Errorf("Expected authentication error, got: %v", err)
}
}
func TestDBConnectionString_PoolerWarning(t *testing.T) {
// This test demonstrates that the warning functionality works
// by directly testing the buildConnectionString function
// Service without connection pooler
service := api.Service{
Endpoint: &api.Endpoint{
Host: util.Ptr("test-host.tigerdata.com"),
Port: util.Ptr(5432),
},
ConnectionPooler: nil, // No pooler available
}
// Create a test command to capture stderr
cmd := &cobra.Command{}
errBuf := new(bytes.Buffer)
cmd.SetErr(errBuf)
// Request pooled connection when pooler is not available
connectionString, err := buildConnectionString(service, true, "tsdbadmin", false, cmd.ErrOrStderr())
if err != nil {
t.Fatalf("Unexpected error: %v", err)
}
// Should return direct connection string
expectedString := "postgresql://tsdbadmin@test-host.tigerdata.com:5432/tsdb?sslmode=require"
if connectionString != expectedString {
t.Errorf("Expected connection string %q, got %q", expectedString, connectionString)
}
// Should have warning message on stderr
stderrOutput := errBuf.String()
if !strings.Contains(stderrOutput, "Warning: Connection pooler not available") {
t.Errorf("Expected warning about pooler not available, but got: %q", stderrOutput)
}
// Verify the warning mentions using direct connection
if !strings.Contains(stderrOutput, "using direct connection") {
t.Errorf("Expected warning to mention direct connection fallback, but got: %q", stderrOutput)
}
}
func TestDBConnect_NoServiceID(t *testing.T) {
tmpDir := setupDBTest(t)
// Set up config with project ID but no default service ID
_, err := config.UseTestConfig(tmpDir, map[string]any{
"api_url": "https://api.tigerdata.com/public/v1",
"project_id": "test-project-123",
})
if err != nil {
t.Fatalf("Failed to save test config: %v", err)
}
// Mock authentication
originalGetAPIKey := getAPIKeyForDB
getAPIKeyForDB = func() (string, error) {
return "test-api-key", nil
}
defer func() { getAPIKeyForDB = originalGetAPIKey }()
// Execute db connect command without service ID
_, err = executeDBCommand("db", "connect")
if err == nil {
t.Fatal("Expected error when no service ID is provided or configured")
}
if !strings.Contains(err.Error(), "service ID is required") {
t.Errorf("Expected error about missing service ID, got: %v", err)
}
}
func TestDBConnect_NoAuth(t *testing.T) {
tmpDir := setupDBTest(t)
// Set up config with project ID and service ID
_, err := config.UseTestConfig(tmpDir, map[string]any{
"api_url": "https://api.tigerdata.com/public/v1",
"project_id": "test-project-123",
"service_id": "svc-12345",
})
if err != nil {
t.Fatalf("Failed to save test config: %v", err)
}
// Mock authentication failure
originalGetAPIKey := getAPIKeyForDB
getAPIKeyForDB = func() (string, error) {
return "", fmt.Errorf("not logged in")
}
defer func() { getAPIKeyForDB = originalGetAPIKey }()
// Execute db connect command
_, err = executeDBCommand("db", "connect")
if err == nil {
t.Fatal("Expected error when not authenticated")
}
if !strings.Contains(err.Error(), "authentication required") {
t.Errorf("Expected authentication error, got: %v", err)
}
}
func TestDBConnect_PsqlNotFound(t *testing.T) {
tmpDir := setupDBTest(t)
// Set up config
_, err := config.UseTestConfig(tmpDir, map[string]any{
"api_url": "http://localhost:9999",
"project_id": "test-project-123",
"service_id": "svc-12345",
})
if err != nil {
t.Fatalf("Failed to save test config: %v", err)
}
// Mock authentication
originalGetAPIKey := getAPIKeyForDB
getAPIKeyForDB = func() (string, error) {
return "test-api-key", nil
}
defer func() { getAPIKeyForDB = originalGetAPIKey }()
// Test that psql alias works the same as connect
_, err1 := executeDBCommand("db", "connect")
_, err2 := executeDBCommand("db", "psql")
// Both should behave identically (both will fail due to network/psql not found, but with same error pattern)
if err1 == nil || err2 == nil {
t.Fatal("Expected both connect and psql to fail in test environment")
}
// Both should have similar error patterns (either network error or psql not found)
connectErrStr := err1.Error()
psqlErrStr := err2.Error()
// They should both fail for the same fundamental reason
if strings.Contains(connectErrStr, "authentication") != strings.Contains(psqlErrStr, "authentication") ||
strings.Contains(connectErrStr, "psql client not found") != strings.Contains(psqlErrStr, "psql client not found") ||
strings.Contains(connectErrStr, "failed to fetch") != strings.Contains(psqlErrStr, "failed to fetch") {
t.Errorf("Connect and psql should behave identically. Connect error: %v, Psql error: %v", err1, err2)
}
}
func TestLaunchPsqlWithConnectionString(t *testing.T) {
// This test verifies the psql launching logic without actually running psql
// Create a test command to capture output
cmd := &cobra.Command{}
outBuf := new(bytes.Buffer)
cmd.SetOut(outBuf)
connectionString := "postgresql://testuser@testhost:5432/testdb?sslmode=require"
psqlPath := "/fake/path/to/psql" // This will fail, but we can test the setup
// Create a dummy service for the test
service := api.Service{}
// This will fail because psql path doesn't exist, but we can verify the error
err := launchPsqlWithConnectionString(connectionString, psqlPath, []string{}, service, cmd)
// Should fail with exec error since fake psql path doesn't exist
if err == nil {
t.Error("Expected error when using fake psql path")
}
// No output expected since we removed the connecting message
output := outBuf.String()
if output != "" {
t.Errorf("Expected no output, got: %q", output)
}
}
func TestLaunchPsqlWithAdditionalFlags(t *testing.T) {
// This test verifies that additional flags are passed correctly to psql
// Create a test command to capture output
cmd := &cobra.Command{}
outBuf := new(bytes.Buffer)
cmd.SetOut(outBuf)
connectionString := "postgresql://testuser@testhost:5432/testdb?sslmode=require"
psqlPath := "/fake/path/to/psql" // This will fail, but we can test the setup
additionalFlags := []string{"--single-transaction", "--quiet", "-c", "SELECT 1;"}
// Create a dummy service for the test
service := api.Service{}
// This will fail because psql path doesn't exist, but we can verify the error
err := launchPsqlWithConnectionString(connectionString, psqlPath, additionalFlags, service, cmd)
// Should fail with exec error since fake psql path doesn't exist
if err == nil {
t.Error("Expected error when using fake psql path")
}
// No output expected since we removed the connecting message
output := outBuf.String()
if output != "" {
t.Errorf("Expected no output, got: %q", output)
}
}
func TestBuildPsqlCommand_KeyringPasswordEnvVar(t *testing.T) {
// Set keyring as the password storage method for this test
originalStorage := viper.GetString("password_storage")
viper.Set("password_storage", "keyring")
defer viper.Set("password_storage", originalStorage)
// Create a test service
serviceID := "test-psql-service"
projectID := "test-psql-project"
service := api.Service{
ServiceId: &serviceID,
ProjectId: &projectID,
}
// Store a test password in keyring
testPassword := "test-password-12345"
storage := password.GetPasswordStorage()
err := storage.Save(service, testPassword)
if err != nil {
t.Fatalf("Failed to save test password: %v", err)
}
defer storage.Remove(service) // Clean up after test
connectionString := "postgresql://testuser@testhost:5432/testdb?sslmode=require"
psqlPath := "/usr/bin/psql"
additionalFlags := []string{"--quiet"}
// Create a mock command for testing
testCmd := &cobra.Command{}
// Call the actual production function that builds the command
psqlCmd := buildPsqlCommand(connectionString, psqlPath, additionalFlags, service, testCmd)
if psqlCmd == nil {
t.Fatal("buildPsqlCommand returned nil")
}
// Verify that PGPASSWORD is set in the environment with the correct value
found := false
expectedEnvVar := "PGPASSWORD=" + testPassword
for _, envVar := range psqlCmd.Env {
if envVar == expectedEnvVar {
found = true
break
}
}
if !found {
t.Errorf("Expected PGPASSWORD=%s to be set in environment, but it wasn't. Env vars: %v", testPassword, psqlCmd.Env)
}
}
func TestBuildPsqlCommand_PgpassStorage_NoEnvVar(t *testing.T) {
// Set pgpass as the password storage method for this test
originalStorage := viper.GetString("password_storage")
viper.Set("password_storage", "pgpass")
defer viper.Set("password_storage", originalStorage)
// Create a test service
serviceID := "test-service-id"
projectID := "test-project-id"
service := api.Service{
ServiceId: &serviceID,
ProjectId: &projectID,
}
connectionString := "postgresql://testuser@testhost:5432/testdb?sslmode=require"
psqlPath := "/usr/bin/psql"
// Create a mock command for testing
testCmd := &cobra.Command{}
// Call the actual production function that builds the command
psqlCmd := buildPsqlCommand(connectionString, psqlPath, []string{}, service, testCmd)
if psqlCmd == nil {
t.Fatal("buildPsqlCommand returned nil")
}
// Verify that PGPASSWORD is NOT set in the environment for pgpass storage
if psqlCmd.Env != nil {
for _, envVar := range psqlCmd.Env {
if strings.HasPrefix(envVar, "PGPASSWORD=") {
t.Errorf("PGPASSWORD should not be set when using pgpass storage, but found: %s", envVar)
}
}
}
}
func TestBuildConnectionConfig_KeyringPassword(t *testing.T) {
// This test verifies that buildConnectionConfig properly sets password from keyring
// Set keyring as the password storage method for this test
originalStorage := viper.GetString("password_storage")
viper.Set("password_storage", "keyring")
defer viper.Set("password_storage", originalStorage)
// Create a test service
serviceID := "test-connection-config-service"
projectID := "test-connection-config-project"
service := api.Service{
ServiceId: &serviceID,
ProjectId: &projectID,
}
// Store a test password in keyring
testPassword := "test-connection-config-password-789"
storage := password.GetPasswordStorage()
err := storage.Save(service, testPassword)
if err != nil {
t.Fatalf("Failed to save test password: %v", err)
}
defer storage.Remove(service) // Clean up after test
connectionString := "postgresql://testuser@testhost:5432/testdb?sslmode=require"
// Call the actual production function that builds the config
config, err := buildConnectionConfig(connectionString, service)
if err != nil {
t.Fatalf("buildConnectionConfig failed: %v", err)
}
if config == nil {
t.Fatal("buildConnectionConfig returned nil config")
}
// Verify that the password was set in the config
if config.Password != testPassword {
t.Errorf("Expected password '%s' to be set in config, but got '%s'", testPassword, config.Password)
}
}
func TestBuildConnectionConfig_PgpassStorage_NoPasswordSet(t *testing.T) {
// This test verifies that buildConnectionConfig doesn't set password for pgpass storage
// Set pgpass as the password storage method for this test
originalStorage := viper.GetString("password_storage")
viper.Set("password_storage", "pgpass")
defer viper.Set("password_storage", originalStorage)
// Create a test service
serviceID := "test-connection-config-pgpass"
projectID := "test-connection-config-project"
service := api.Service{
ServiceId: &serviceID,
ProjectId: &projectID,
}
connectionString := "postgresql://testuser@testhost:5432/testdb?sslmode=require"
// Call the actual production function that builds the config
config, err := buildConnectionConfig(connectionString, service)
if err != nil {
t.Fatalf("buildConnectionConfig failed: %v", err)
}
if config == nil {
t.Fatal("buildConnectionConfig returned nil config")
}
// Verify that no password was set in the config (pgx will check ~/.pgpass automatically)
if config.Password != "" {
t.Errorf("Expected no password to be set in config for pgpass storage, but got '%s'", config.Password)
}
}
func TestSeparateServiceAndPsqlArgs(t *testing.T) {
testCases := []struct {
name string
args []string
argsLenAtDash int // What ArgsLenAtDash should return
expectedServiceArgs []string
expectedPsqlFlags []string
}{
{
name: "No separator - service only",
args: []string{"svc-12345"},
argsLenAtDash: -1, // No -- found
expectedServiceArgs: []string{"svc-12345"},
expectedPsqlFlags: []string{},
},
{
name: "No arguments at all",
args: []string{},
argsLenAtDash: -1,
expectedServiceArgs: []string{},
expectedPsqlFlags: []string{},
},
{
name: "Service with psql flags after --",
args: []string{"svc-12345", "-c", "SELECT 1;"},
argsLenAtDash: 1, // -- was after first arg
expectedServiceArgs: []string{"svc-12345"},
expectedPsqlFlags: []string{"-c", "SELECT 1;"},
},
{
name: "No service, just psql flags after --",
args: []string{"--single-transaction", "--quiet"},
argsLenAtDash: 0, // -- was at the beginning
expectedServiceArgs: []string{},
expectedPsqlFlags: []string{"--single-transaction", "--quiet"},
},
{
name: "Service with multiple psql flags",
args: []string{"svc-test", "-c", "SELECT version();", "--no-psqlrc", "-v", "ON_ERROR_STOP=1"},
argsLenAtDash: 1,
expectedServiceArgs: []string{"svc-test"},
expectedPsqlFlags: []string{"-c", "SELECT version();", "--no-psqlrc", "-v", "ON_ERROR_STOP=1"},
},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
// Create a mock command that returns the expected ArgsLenAtDash
mockCmd := &mockCobraCommand{
args: tc.args,
argsLenAtDash: tc.argsLenAtDash,
}
serviceArgs, psqlFlags := separateServiceAndPsqlArgs(mockCmd, tc.args)
if !equalStringSlices(serviceArgs, tc.expectedServiceArgs) {
t.Errorf("Expected serviceArgs %v, got %v", tc.expectedServiceArgs, serviceArgs)
}
if !equalStringSlices(psqlFlags, tc.expectedPsqlFlags) {
t.Errorf("Expected psqlFlags %v, got %v", tc.expectedPsqlFlags, psqlFlags)
}
})
}
}
// mockCobraCommand implements the minimal interface needed for testing
type mockCobraCommand struct {
args []string
argsLenAtDash int
}
func (m *mockCobraCommand) ArgsLenAtDash() int {
return m.argsLenAtDash
}
// Helper function to compare string slices
func equalStringSlices(a, b []string) bool {
if len(a) != len(b) {
return false
}
for i := range a {
if a[i] != b[i] {
return false
}
}
return true
}
func TestDBTestConnection_NoServiceID(t *testing.T) {
tmpDir := setupDBTest(t)
// Set up config with project ID but no default service ID
_, err := config.UseTestConfig(tmpDir, map[string]any{
"api_url": "https://api.tigerdata.com/public/v1",
"project_id": "test-project-123",
})
if err != nil {
t.Fatalf("Failed to save test config: %v", err)
}
// Mock authentication
originalGetAPIKey := getAPIKeyForDB
getAPIKeyForDB = func() (string, error) {
return "test-api-key", nil
}
defer func() { getAPIKeyForDB = originalGetAPIKey }()
// Execute db test-connection command without service ID
_, err = executeDBCommand("db", "test-connection")
if err == nil {
t.Fatal("Expected error when no service ID is provided or configured")
}
if !strings.Contains(err.Error(), "service ID is required") {
t.Errorf("Expected error about missing service ID, got: %v", err)
}
}
func TestDBTestConnection_NoAuth(t *testing.T) {
tmpDir := setupDBTest(t)
// Set up config with project ID and service ID
_, err := config.UseTestConfig(tmpDir, map[string]any{
"api_url": "https://api.tigerdata.com/public/v1",
"project_id": "test-project-123",
"service_id": "svc-12345",
})
if err != nil {
t.Fatalf("Failed to save test config: %v", err)
}
// Mock authentication failure
originalGetAPIKey := getAPIKeyForDB
getAPIKeyForDB = func() (string, error) {
return "", fmt.Errorf("not logged in")
}
defer func() { getAPIKeyForDB = originalGetAPIKey }()
// Execute db test-connection command
_, err = executeDBCommand("db", "test-connection")
if err == nil {
t.Fatal("Expected error when not authenticated")
}
if !strings.Contains(err.Error(), "authentication required") {
t.Errorf("Expected authentication error, got: %v", err)
}
}
func TestTestDatabaseConnection_InvalidConnectionString(t *testing.T) {
// Test with truly invalid connection string that should fail at sql.Open
cmd := &cobra.Command{}
outBuf := new(bytes.Buffer)
errBuf := new(bytes.Buffer)
cmd.SetOut(outBuf)
cmd.SetErr(errBuf)
// Test with malformed connection string (should return ExitInvalidParameters)
invalidConnectionString := "this is not a valid connection string at all"
service := api.Service{} // Dummy service for test
err := testDatabaseConnection(invalidConnectionString, 1, service, cmd)
if err == nil {
t.Error("Expected error for invalid connection string")
}
// Should be an exitCodeError
if exitErr, ok := err.(exitCodeError); ok {
// The exact code depends on where it fails - could be ExitTimeout or ExitInvalidParameters
if exitErr.ExitCode() != ExitTimeout && exitErr.ExitCode() != ExitInvalidParameters {
t.Errorf("Expected exit code %d or %d for invalid connection string, got %d", ExitTimeout, ExitInvalidParameters, exitErr.ExitCode())
}
} else {
t.Error("Expected exitCodeError for invalid connection string")
}
}
func TestTestDatabaseConnection_Timeout(t *testing.T) {
// Test timeout functionality with a connection to a non-existent server
cmd := &cobra.Command{}
outBuf := new(bytes.Buffer)
errBuf := new(bytes.Buffer)
cmd.SetOut(outBuf)
cmd.SetErr(errBuf)
// Use a connection string to a non-routable IP to test timeout
timeoutConnectionString := "postgresql://user:pass@192.0.2.1:5432/db?sslmode=disable&connect_timeout=1"
service := api.Service{} // Dummy service for test
start := time.Now()
err := testDatabaseConnection(timeoutConnectionString, 1, service, cmd) // 1 second timeout
duration := time.Since(start)
if err == nil {
t.Error("Expected error for timeout connection")
}
// Should complete within reasonable time (not hang)
if duration > 3*time.Second {
t.Errorf("Connection test took too long: %v", duration)
}
// Check exit code (should be ExitTimeout for unreachable)
if exitErr, ok := err.(exitCodeError); ok {
if exitErr.ExitCode() != ExitTimeout {
t.Errorf("Expected exit code %d for timeout, got %d", ExitTimeout, exitErr.ExitCode())
}
} else {
t.Error("Expected exitCodeError for timeout")
}
}
func TestIsConnectionRejected(t *testing.T) {
testCases := []struct {
name string
err error
expected bool
}{
{
name: "PostgreSQL error code 57P03 (ERRCODE_CANNOT_CONNECT_NOW)",
err: &pgconn.PgError{
Code: "57P03",
Message: "the database system is starting up",
},
expected: true,
},
{
name: "PostgreSQL authentication error (28P01)",
err: &pgconn.PgError{
Code: "28P01",
Message: "password authentication failed for user \"test\"",
},
expected: false,
},
{
name: "PostgreSQL invalid authorization error (28000)",
err: &pgconn.PgError{
Code: "28000",
Message: "role \"nonexistent\" does not exist",
},
expected: false,
},
{
name: "PostgreSQL database does not exist (3D000)",
err: &pgconn.PgError{
Code: "3D000",
Message: "database \"nonexistent\" does not exist",
},
expected: false,
},
{
name: "Non-PostgreSQL error (connection refused)",
err: fmt.Errorf("dial tcp: connection refused"),
expected: false,
},
{
name: "Non-PostgreSQL error (network unreachable)",
err: fmt.Errorf("dial tcp: network is unreachable"),
expected: false,
},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
result := isConnectionRejected(tc.err)
if result != tc.expected {
t.Errorf("Expected isConnectionRejected to return %v for error %v, got %v",
tc.expected, tc.err, result)
}
})
}
}
func TestBuildConnectionString(t *testing.T) {
testCases := []struct {
name string
service api.Service
pooled bool
role string
expectedString string
expectError bool
expectWarning bool
}{
{
name: "Basic connection string",
service: api.Service{
Endpoint: &api.Endpoint{
Host: util.Ptr("test-host.tigerdata.com"),
Port: util.Ptr(5432),
},
},
pooled: false,
role: "tsdbadmin",
expectedString: "postgresql://tsdbadmin@test-host.tigerdata.com:5432/tsdb?sslmode=require",
expectError: false,
},
{
name: "Connection string with custom role",
service: api.Service{
Endpoint: &api.Endpoint{
Host: util.Ptr("test-host.tigerdata.com"),
Port: util.Ptr(5432),
},
},
pooled: false,
role: "readonly",
expectedString: "postgresql://readonly@test-host.tigerdata.com:5432/tsdb?sslmode=require",
expectError: false,
},
{
name: "Connection string with default port",
service: api.Service{
Endpoint: &api.Endpoint{
Host: util.Ptr("test-host.tigerdata.com"),
Port: nil, // Should use default 5432
},
},
pooled: false,
role: "tsdbadmin",
expectedString: "postgresql://tsdbadmin@test-host.tigerdata.com:5432/tsdb?sslmode=require",
expectError: false,
},
{
name: "Pooled connection string",
service: api.Service{
Endpoint: &api.Endpoint{
Host: util.Ptr("direct-host.tigerdata.com"),
Port: util.Ptr(5432),
},
ConnectionPooler: &api.ConnectionPooler{
Endpoint: &api.Endpoint{
Host: util.Ptr("pooler-host.tigerdata.com"),
Port: util.Ptr(6432),
},
},
},
pooled: true,
role: "tsdbadmin",
expectedString: "postgresql://tsdbadmin@pooler-host.tigerdata.com:6432/tsdb?sslmode=require",
expectError: false,
},
{
name: "Pooled connection fallback to direct when pooler unavailable",
service: api.Service{
Endpoint: &api.Endpoint{
Host: util.Ptr("direct-host.tigerdata.com"),
Port: util.Ptr(5432),
},
ConnectionPooler: nil, // No pooler available
},
pooled: true,
role: "tsdbadmin",
expectedString: "postgresql://tsdbadmin@direct-host.tigerdata.com:5432/tsdb?sslmode=require",
expectError: false,
expectWarning: true, // Should warn about pooler not available
},
{
name: "Error when no endpoint available",
service: api.Service{
Endpoint: nil,
},
pooled: false,
role: "tsdbadmin",
expectError: true,
},
{
name: "Error when no host available",
service: api.Service{
Endpoint: &api.Endpoint{
Host: nil,
Port: util.Ptr(5432),
},
},
pooled: false,
role: "tsdbadmin",
expectError: true,
},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
// Create a test command to capture stderr output
cmd := &cobra.Command{}
errBuf := new(bytes.Buffer)
cmd.SetErr(errBuf)
result, err := buildConnectionString(tc.service, tc.pooled, tc.role, false, cmd.ErrOrStderr())
if tc.expectError {
if err == nil {
t.Errorf("Expected error but got none")
}
return
}
if err != nil {
t.Errorf("Unexpected error: %v", err)
return
}
if result != tc.expectedString {
t.Errorf("Expected connection string %q, got %q", tc.expectedString, result)
}
// Check for warning message
stderrOutput := errBuf.String()
if tc.expectWarning {
if !strings.Contains(stderrOutput, "Warning: Connection pooler not available") {
t.Errorf("Expected warning about pooler not available, but got: %q", stderrOutput)
}
} else {
if stderrOutput != "" {
t.Errorf("Expected no warning, but got: %q", stderrOutput)
}
}
})
}
}
func TestDBTestConnection_TimeoutParsing(t *testing.T) {
testCases := []struct {
name string
timeoutFlag string
expectError bool
expectedOutput string
}{
{
name: "Valid duration - seconds",
timeoutFlag: "30s",
expectError: true, // Will fail due to unreachable server
},
{
name: "Valid duration - minutes",
timeoutFlag: "5m",
expectError: true, // Will fail due to unreachable server
},
{
name: "Valid duration - hours",
timeoutFlag: "1h",
expectError: true, // Will fail due to unreachable server
},
{
name: "Valid duration - mixed",
timeoutFlag: "1h30m45s",
expectError: true, // Will fail due to unreachable server
},
{
name: "Zero timeout (no timeout)",
timeoutFlag: "0",
expectError: true, // Will fail due to unreachable server
},
{
name: "Invalid duration format",
timeoutFlag: "invalid",
expectError: true,
expectedOutput: "invalid duration",
},
{
name: "Negative duration",
timeoutFlag: "-5s",
expectError: true,
// Note: API call fails before validation, so we don't get the validation error
},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
tmpDir := setupDBTest(t)
// Set up config
_, err := config.UseTestConfig(tmpDir, map[string]any{
"api_url": "http://localhost:9999", // Non-existent server
"project_id": "test-project-123",
"service_id": "svc-12345",
})
if err != nil {
t.Fatalf("Failed to save test config: %v", err)
}
// Mock authentication
originalGetAPIKey := getAPIKeyForDB
getAPIKeyForDB = func() (string, error) {
return "test-api-key", nil
}
defer func() { getAPIKeyForDB = originalGetAPIKey }()
// Execute db test-connection command with timeout flag
_, err = executeDBCommand("db", "test-connection", "--timeout", tc.timeoutFlag)
if !tc.expectError {
if err != nil {
t.Errorf("Unexpected error: %v", err)
}
return
}
// All test cases expect errors due to invalid duration or unreachable server
if err == nil {
t.Error("Expected error but got none")
return
}
// Check if error message contains expected content for invalid format
if tc.expectedOutput != "" && !strings.Contains(err.Error(), tc.expectedOutput) {