-
Notifications
You must be signed in to change notification settings - Fork 0
/
users_test.go
100 lines (87 loc) · 2.1 KB
/
users_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
package fluidpay
import (
"context"
"net/http"
"testing"
)
var creUsrReq = CreateUserRequest{
Username: "testmerchantgo1",
Name: "test merchant user",
Phone: "6305555555",
Email: "[email protected]",
Timezone: "CET",
Password: "T@est12345678",
Status: "active",
Role: "admin",
}
var chPwReq = ChangePasswordRequest{
Username: "testmerchantgo1",
CurrentPassword: "T@est12345678",
NewPassword: "T@est12345678",
}
var updUsrReq = UpdateUserRequest{
Name: "fresh test merchant user",
Phone: "6305555558",
Email: "[email protected]",
Timezone: "CET",
Status: "active",
Role: "admin",
}
func TestUser(t *testing.T) {
fluidpay := Fluidpay{
APIKey: TestAPIKey,
Client: new(http.Client),
Ctx: context.Background(),
LocalDev: true,
}
currUsrRes, err := GetCurrentUser(fluidpay)
if err != nil {
t.Error(err)
}
if currUsrRes.Msg != "success" {
t.Errorf("Msg should be 'success', instead of '%v'", currUsrRes.Msg)
}
getUsrsRes, err := GetUsers(fluidpay)
if err != nil {
t.Error(err)
}
if getUsrsRes.TotalCount == 0 {
t.Errorf("TotalCount shouldn't be '%v'", getUsrsRes.TotalCount)
}
creUsrRes, err := CreateUser(fluidpay, creUsrReq)
if err != nil {
t.Error(err)
}
if creUsrRes.Msg != "success" {
t.Errorf("Msg should be 'success', instead of '%v'", creUsrRes.Msg)
}
id := creUsrRes.Data.ID
getUsrRes, err := GetUser(fluidpay, id)
if err != nil {
t.Error(err)
}
if getUsrRes.Msg != "success" {
t.Errorf("Msg should be 'success', instead of '%v'", getUsrRes.Msg)
}
/* chPwRes, err := ChangePassword(fluidpay, chPwReq)
if err != nil {
t.Error(err)
}
if chPwRes.Msg != "success" {
t.Errorf("Msg should be 'success', instead of '%v'", chPwRes.Msg)
} */
updUsrRes, err := UpdateUser(fluidpay, updUsrReq, id)
if err != nil {
t.Error(err)
}
if updUsrRes.Msg != "success" {
t.Errorf("Msg should be 'success', instead of '%v'", updUsrRes.Msg)
}
delUsrRes, err := DeleteUser(fluidpay, id)
if err != nil {
t.Error(err)
}
if delUsrRes.Msg != "success" {
t.Errorf("Msg should be 'success', instead of '%v'", delUsrRes.Msg)
}
}