summaryrefslogtreecommitdiffstats
path: root/internal/client/client_test.go
blob: 9bf453d3cce5afc49d375fc9b7ed6986934baf39 (plain)
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
package client

import (
	"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)
			}
		})
	}
}