-
Notifications
You must be signed in to change notification settings - Fork 4
/
modify_user_test.go
94 lines (86 loc) · 2.31 KB
/
modify_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
84
85
86
87
88
89
90
91
92
93
94
package wrike_test
import (
"fmt"
"io/ioutil"
"net/http"
"net/url"
"testing"
"gotest.tools/assert"
wrike "github.com/AkihikoITOH/wrike.go"
"github.com/AkihikoITOH/wrike.go/parameters"
)
var modifiedUserData = []byte(
`{
"kind": "users",
"data":
[
{
"id": "KUAAAAHP",
"firstName": "full",
"lastName": "name",
"type": "Person",
"profiles":
[
{
"accountId": "IEAAAAAQ",
"email": "[email protected]",
"role": "Collaborator",
"external": true,
"admin": false,
"owner": false
}
],
"avatarUrl": "https://dev.wrke.io/avatars//33/42/Box_fff9a825_70-78_v1.png",
"timezone": "US/Pacific",
"locale": "en",
"deleted": false,
"metadata": []
}
]
}`)
func NewModifyUserParams() *parameters.ModifyUser {
accountID := "IEAAAAAQ"
role := "Collaborator"
external := true
params := parameters.ModifyUser{
Profile: ¶meters.Profile{
AccountID: &accountID,
Role: &role,
External: &external,
},
}
return ¶ms
}
func Example_modifyUser() {
conf := wrike.NewConfig("wrike-access-token", "")
api := wrike.NewAPI(conf)
accountID := "IEAAAAAQ"
role := "Collaborator"
external := true
params := parameters.ModifyUser{
Profile: ¶meters.Profile{
AccountID: &accountID,
Role: &role,
External: &external,
},
}
api.ModifyUser("KUAAAAHP", ¶ms)
}
func TestModifyUser(t *testing.T) {
id := "KUAAAAHP"
client := NewMockClient(modifiedUserData)
api := &wrike.API{Config: mockAPIConfig, HTTPClient: client}
params := NewModifyUserParams()
user, err := api.ModifyUser(id, params)
if err != nil {
fmt.Println(err.Error())
}
// Check request object
assert.Equal(t, client.Request.Method, http.MethodPut)
assert.Equal(t, client.Request.URL.String(), "https://app-eu.wrike.com/api/v4/users/KUAAAAHP")
body, _ := ioutil.ReadAll(client.Request.Body)
data, _ := url.QueryUnescape(string(body))
assert.Equal(t, data, "profile={\"accountId\":\"IEAAAAAQ\",\"role\":\"Collaborator\",\"external\":true}")
SharedRequestTests(t, client.Request)
assert.Equal(t, string(user.Data[0].ID), "KUAAAAHP")
}