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
|
package client
import (
"git.db.org.ai/dborg/internal/config"
"testing"
"time"
)
func TestNewClient(t *testing.T) {
tests := []struct {
name string
config *config.Config
wantErr bool
}{
{
name: "valid config",
config: &config.Config{
APIKey: "test-key",
BaseURL: "https://db.org.ai",
Timeout: 30 * time.Second,
MaxRetries: 3,
UserAgent: "test-agent",
},
wantErr: false,
},
{
name: "missing API key",
config: &config.Config{
BaseURL: "https://db.org.ai",
Timeout: 30 * time.Second,
MaxRetries: 3,
UserAgent: "test-agent",
},
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
_, err := New(tt.config)
if (err != nil) != tt.wantErr {
t.Errorf("New() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}
func TestNewUnauthenticatedClient(t *testing.T) {
tests := []struct {
name string
config *config.Config
wantErr bool
}{
{
name: "config with API key",
config: &config.Config{
APIKey: "test-key",
BaseURL: "https://db.org.ai",
Timeout: 30 * time.Second,
MaxRetries: 3,
UserAgent: "test-agent",
},
wantErr: false,
},
{
name: "config without API key",
config: &config.Config{
BaseURL: "https://db.org.ai",
Timeout: 30 * time.Second,
MaxRetries: 3,
UserAgent: "test-agent",
},
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
c, err := NewUnauthenticated(tt.config)
if (err != nil) != tt.wantErr {
t.Errorf("NewUnauthenticated() error = %v, wantErr %v", err, tt.wantErr)
}
if c == nil && !tt.wantErr {
t.Error("NewUnauthenticated() returned nil client")
}
})
}
}
|