This repository was archived by the owner on Jun 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathuser_test.go
83 lines (78 loc) · 1.59 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package wecom
import (
"testing"
)
var testUser = User{
Userid: "laoji",
Name: "老纪",
Department: []int32{1},
Email: "[email protected]",
Enable: 1,
}
func TestWorkChat_UserCreate(t *testing.T) {
resp := testWorkChat.UserCreate(testUser)
if resp.ErrCode != 0 {
t.Error(resp.ErrorMsg)
return
}
}
func TestWorkChat_UserGet(t *testing.T) {
resp := testWorkChat.UserGet(testUser.Userid)
if resp.ErrCode != 0 {
t.Error(resp.ErrorMsg)
return
}
t.Log(resp)
}
func TestWorkChat_UserUpdate(t *testing.T) {
testUser.Enable = 0
resp := testWorkChat.UserUpdate(testUser)
if resp.ErrCode != 0 {
t.Error(resp.ErrorMsg)
return
}
t.Log(resp)
}
func TestWorkChat_UserSimpleList(t *testing.T) {
resp := testWorkChat.UserSimpleList(1, 1)
if resp.ErrCode != 0 {
t.Error(resp.ErrorMsg)
return
}
for _, user := range resp.UserList {
t.Log(user.UserId, user.Name)
}
}
func TestWorkChat_UserList(t *testing.T) {
resp := testWorkChat.UserList(1, 1)
if resp.ErrCode != 0 {
t.Error(resp.ErrorMsg)
return
}
for _, user := range resp.UserList {
t.Log(user.Userid, user.Name)
}
}
func TestWorkChat_UserId2OpenId(t *testing.T) {
resp := testWorkChat.UserId2OpenId("jifengwei")
if resp.ErrCode != 0 {
t.Error(resp.ErrorMsg)
return
}
t.Log(resp)
}
func TestWorkChat_UserDelete(t *testing.T) {
e := testWorkChat.UserDelete(testUser.Userid)
if e.ErrCode != 0 {
t.Error(e.ErrorMsg)
return
}
t.Log(e)
}
func TestWorkChat_UserBatchDelete(t *testing.T) {
e := testWorkChat.UserBatchDelete([]string{testUser.Userid})
if e.ErrCode != 40031 {
t.Error(e.ErrorMsg)
}
t.Log(e)
}