-
Notifications
You must be signed in to change notification settings - Fork 0
/
client_test.go
84 lines (61 loc) · 1.58 KB
/
client_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
package porkbungo
import (
"testing"
"github.com/google/go-cmp/cmp"
)
var keys = &Keys{
APIKey: "TestAPIKey",
SecretAPIKey: "TestSecretAPIKey",
}
func TestClient_New(t *testing.T) {
expectedHost := "https://porkbun.com/api/json/v3"
client := NewClient()
if client.useIPv4 != false {
t.Error(cmp.Diff(client.useIPv4,false))
}
if client.keys != nil {
t.Error(cmp.Diff(client.keys,nil))
}
if client.resty.BaseURL != expectedHost {
t.Fatal(cmp.Diff(client.resty.BaseURL,expectedHost))
}
}
func TestClient_NewWithAPIKeys(t *testing.T) {
expectedHost := "https://porkbun.com/api/json/v3"
client := NewClientWithAPIKeys(keys)
if client.keys != keys {
t.Errorf(cmp.Diff(client.keys,keys))
}
if client.useIPv4 != false {
t.Error(cmp.Diff(client.useIPv4,false))
}
if client.resty.BaseURL != expectedHost {
t.Fatal(cmp.Diff(client.resty.BaseURL,expectedHost))
}
}
func TestClient_SetAPIKeys(t *testing.T) {
client := NewClient()
client.SetAPIKeys(keys)
if client.keys != keys {
t.Errorf(cmp.Diff(client.keys,keys))
}
}
func TestClient_UseIPv4(t *testing.T) {
client := NewClient()
ipv4host := "https://api-ipv4.porkbun.com/api/json/v3"
apihost := "https://porkbun.com/api/json/v3"
client.UseIPv4(true)
if client.useIPv4 != true {
t.Fatal(cmp.Diff(client.useIPv4,true))
}
if client.resty.BaseURL != ipv4host {
t.Fatal(cmp.Diff(client.resty.BaseURL,ipv4host))
}
client.UseIPv4(false)
if client.useIPv4 != false {
t.Fatal(cmp.Diff(client.useIPv4,false))
}
if client.resty.BaseURL != apihost {
t.Fatal(cmp.Diff(client.resty.BaseURL,apihost))
}
}