-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
zones_test.go
161 lines (127 loc) · 4 KB
/
zones_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
package auroradns
import (
"fmt"
"io"
"net/http"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestClient_CreateZone(t *testing.T) {
client, mux := setupTest(t)
handleAPI(mux, "/zones", http.MethodPost, func(w http.ResponseWriter, r *http.Request) {
reqBody, err := io.ReadAll(r.Body)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
if string(reqBody) != `{"name":"example.com"}` {
http.Error(w, fmt.Sprintf("invalid request body: %s", string(reqBody)), http.StatusInternalServerError)
return
}
_, err = fmt.Fprintf(w, `
{
"id": "identifier-zone-1",
"name": "example.com"
}`)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
})
zone, resp, err := client.CreateZone("example.com")
require.NoError(t, err)
require.NotNil(t, resp)
assert.Equal(t, http.StatusOK, resp.StatusCode)
expected := &Zone{ID: "identifier-zone-1", Name: "example.com"}
assert.Equal(t, expected, zone)
}
func TestClient_CreateZone_error(t *testing.T) {
client, mux := setupTest(t)
handleAPI(mux, "/zones", http.MethodPost, func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusUnauthorized)
_, err := fmt.Fprintf(w, `{
"error": "AuthenticationRequiredError",
"errormsg": "Failed to parse Authorization header"
}`)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
})
zone, resp, err := client.CreateZone("example.com")
require.Error(t, err)
require.NotNil(t, resp)
assert.Equal(t, http.StatusUnauthorized, resp.StatusCode)
assert.Nil(t, zone)
}
func TestClient_DeleteZone(t *testing.T) {
client, mux := setupTest(t)
handleAPI(mux, "/zones/identifier-zone-1", http.MethodDelete, func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusNoContent)
})
result, resp, err := client.DeleteZone("identifier-zone-1")
require.NoError(t, err)
require.NotNil(t, resp)
assert.Equal(t, http.StatusNoContent, resp.StatusCode)
assert.True(t, result)
}
func TestClient_DeleteZone_error(t *testing.T) {
client, mux := setupTest(t)
handleAPI(mux, "/zones/identifier-zone-1", http.MethodDelete, func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusUnauthorized)
_, err := fmt.Fprintf(w, `{
"error": "AuthenticationRequiredError",
"errormsg": "Failed to parse Authorization header"
}`)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
})
result, resp, err := client.DeleteZone("identifier-zone-1")
require.Error(t, err)
require.NotNil(t, resp)
assert.Equal(t, http.StatusUnauthorized, resp.StatusCode)
assert.False(t, result)
}
func TestClient_ListZones(t *testing.T) {
client, mux := setupTest(t)
handleAPI(mux, "/zones", http.MethodGet, func(w http.ResponseWriter, r *http.Request) {
_, err := fmt.Fprintf(w, `[
{
"id": "identifier-zone-1",
"name": "example.com"
}
]`)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
})
zones, resp, err := client.ListZones()
require.NoError(t, err)
require.NotNil(t, resp)
assert.Equal(t, http.StatusOK, resp.StatusCode)
expected := []Zone{{ID: "identifier-zone-1", Name: "example.com"}}
assert.Equal(t, expected, zones)
}
func TestClient_ListZones_error(t *testing.T) {
client, mux := setupTest(t)
handleAPI(mux, "/zones", http.MethodGet, func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusUnauthorized)
_, err := fmt.Fprintf(w, `{
"error": "AuthenticationRequiredError",
"errormsg": "Failed to parse Authorization header"
}`)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
})
zones, resp, err := client.ListZones()
require.EqualError(t, err, "AuthenticationRequiredError - Failed to parse Authorization header")
require.NotNil(t, resp)
assert.Equal(t, http.StatusUnauthorized, resp.StatusCode)
assert.Nil(t, zones)
}