-
Notifications
You must be signed in to change notification settings - Fork 0
/
accounts_test.go
276 lines (223 loc) · 5.71 KB
/
accounts_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
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
package zencoder
import (
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"net/http/httptest"
"testing"
)
func TestSetIntegrationMode(t *testing.T) {
integrationMode := false
expectedStatus := http.StatusNoContent
mux := http.NewServeMux()
mux.HandleFunc("/account/integration", func(w http.ResponseWriter, r *http.Request) {
integrationMode = !integrationMode
w.WriteHeader(expectedStatus)
})
srv := httptest.NewServer(mux)
zc := NewZencoder("abc")
zc.BaseUrl = srv.URL
err := zc.SetIntegrationMode()
if err != nil {
t.Fatal("Expected no error", err)
}
if !integrationMode {
t.Fatal("Expected integration mode to be set")
}
expectedStatus = http.StatusInternalServerError
err = zc.SetIntegrationMode()
if err == nil {
t.Fatal("Expected error")
}
srv.Close()
expectedStatus = http.StatusOK
err = zc.SetIntegrationMode()
if err == nil {
t.Fatal("Expected error")
}
}
func TestSetLiveMode(t *testing.T) {
liveMode := false
expectedStatus := http.StatusNoContent
mux := http.NewServeMux()
mux.HandleFunc("/account/live", func(w http.ResponseWriter, r *http.Request) {
liveMode = !liveMode
w.WriteHeader(expectedStatus)
})
srv := httptest.NewServer(mux)
zc := NewZencoder("abc")
zc.BaseUrl = srv.URL
err := zc.SetLiveMode()
if err != nil {
t.Fatal("Expected no error", err)
}
if !liveMode {
t.Fatal("Expected live mode to be set")
}
expectedStatus = http.StatusInternalServerError
err = zc.SetLiveMode()
if err == nil {
t.Fatal("Expected error")
}
srv.Close()
expectedStatus = http.StatusOK
err = zc.SetLiveMode()
if err == nil {
t.Fatal("Expected error")
}
}
func TestCreateAccount(t *testing.T) {
expectedStatus := http.StatusOK
mux := http.NewServeMux()
mux.HandleFunc("/account", func(w http.ResponseWriter, r *http.Request) {
defer r.Body.Close()
b, err := ioutil.ReadAll(r.Body)
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
t.Fatal("Could not read body")
return
}
var request CreateAccountRequest
err = json.Unmarshal(b, &request)
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
t.Fatal("Could not unmarshal body")
return
}
if len(request.Email) == 0 {
w.WriteHeader(http.StatusInternalServerError)
t.Fatal("Expected email")
return
}
if request.TermsOfService != "1" {
w.WriteHeader(http.StatusInternalServerError)
t.Fatal("Expected terms accepted", request.TermsOfService)
return
}
if request.Password != nil && request.PasswordConfirmation != nil && *request.Password != *request.PasswordConfirmation {
w.WriteHeader(http.StatusInternalServerError)
t.Fatal("Expected passwords to match")
return
}
var response CreateAccountResponse
response.ApiKey = "a123afdaf23fa231245fadcbbb"
if request.Password == nil {
response.Password = "generatedPassword"
} else {
response.Password = *request.Password
}
encoder := json.NewEncoder(w)
w.WriteHeader(expectedStatus)
err = encoder.Encode(&response)
if err != nil {
t.Fatal("Expected to marshal response", err)
return
}
})
srv := httptest.NewServer(mux)
zc := NewZencoder("abc")
zc.BaseUrl = srv.URL
resp, err := zc.CreateAccount("email@email.com", "password123")
if err != nil {
t.Fatal("Expected no error", err)
}
if resp.ApiKey != "a123afdaf23fa231245fadcbbb" {
t.Fatal("Expected key to match but got", resp.ApiKey)
}
if resp.Password != "password123" {
t.Fatal("Expected password to match but got", resp.Password)
}
resp, err = zc.CreateAccount("email@email.com", "")
if err != nil {
t.Fatal("Expected no error", err)
}
if resp.ApiKey != "a123afdaf23fa231245fadcbbb" {
t.Fatal("Expected key to match but got", resp.ApiKey)
}
if resp.Password != "generatedPassword" {
t.Fatal("Expected password to match but got", resp.Password)
}
expectedStatus = http.StatusConflict
resp, err = zc.CreateAccount("email@email.com", "password123")
if err == nil {
t.Fatal("Expected error")
}
if resp != nil {
t.Fatal("Expected no account")
}
srv.Close()
expectedStatus = http.StatusOK
resp, err = zc.CreateAccount("email@email.com", "password123")
if err == nil {
t.Fatal("Expected error")
}
if resp != nil {
t.Fatal("Expected no account")
}
}
func TestGetAccount(t *testing.T) {
expectedStatus := http.StatusOK
returnBody := true
mux := http.NewServeMux()
mux.HandleFunc("/account", func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(expectedStatus)
if !returnBody {
return
}
fmt.Fprintln(w, `{
"account_state": "active",
"plan": "Growth",
"minutes_used": 12549,
"minutes_included": 25000,
"billing_state": "active",
"integration_mode":true
}`)
})
srv := httptest.NewServer(mux)
zc := NewZencoder("abc")
zc.BaseUrl = srv.URL
acct, err := zc.GetAccount()
if err != nil {
t.Fatal("Expected no error", err)
}
if acct == nil {
t.Fatal("Expected account")
}
if acct.AccountState != "active" {
t.Fatal("Expected active, got", acct.AccountState)
}
if acct.Plan != "Growth" {
t.Fatal("Expected Growth, got", acct.Plan)
}
if acct.MinutesUsed != 12549 {
t.Fatal("Expected 12549, got", acct.MinutesUsed)
}
if acct.MinutesIncluded != 25000 {
t.Fatal("Expected 25000, got", acct.MinutesIncluded)
}
if acct.BillingState != "active" {
t.Fatal("Expected active, got", acct.BillingState)
}
if acct.IntegrationMode != true {
t.Fatal("Expected true, got", acct.IntegrationMode)
}
expectedStatus = http.StatusConflict
acct, err = zc.GetAccount()
if err == nil {
t.Fatal("Expected error")
}
if acct != nil {
t.Fatal("Expected no account")
}
srv.Close()
expectedStatus = http.StatusOK
returnBody = false
acct, err = zc.GetAccount()
if err == nil {
t.Fatal("Expected error")
}
if acct != nil {
t.Fatal("Expected no account")
}
}