-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser_test.go
67 lines (58 loc) · 1.31 KB
/
user_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
package alldebrid
import (
"fmt"
"net/http"
"testing"
"github.com/jarcoal/httpmock"
"github.com/stretchr/testify/assert"
)
func TestClient_GetUserInfo(t *testing.T) {
getUserEndpoint = func() string {
return "http://127.0.0.1"
}
tests := []struct {
name string
jsonResp string
statusResp int
c *Client
want User
assertion assert.ErrorAssertionFunc
}{
{
name: "error",
jsonResp: `{"status":"error"}`,
statusResp: http.StatusOK,
c: noapicl,
assertion: assert.Error,
},
{
name: "bad json",
jsonResp: `{"status":success"}`,
statusResp: http.StatusOK,
c: cl,
want: User{},
assertion: assert.Error,
},
{
name: "valid request",
jsonResp: `{"status":"success"}`,
statusResp: http.StatusOK,
c: cl,
want: User{
Status: "success",
},
assertion: assert.NoError,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
httpmock.Activate()
defer httpmock.DeactivateAndReset()
httpmock.RegisterResponder("GET", fmt.Sprintf(userinfo, getUserEndpoint(), tt.c.ic.appName, tt.c.ic.apikey),
httpmock.NewStringResponder(tt.statusResp, tt.jsonResp))
got, err := tt.c.GetUserInfo()
tt.assertion(t, err)
assert.Equal(t, tt.want, got)
})
}
}