-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcreate_custom_field_test.go
75 lines (67 loc) · 1.88 KB
/
create_custom_field_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
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"
"github.com/AkihikoITOH/wrike.go/types"
)
var createdCustomFieldData = []byte(
`{
"kind": "customfields",
"data":
[
{
"id": "IEAAAAAQJUAAAAAZ",
"accountId": "IEAAAAAQ",
"title": "Test custom field",
"type": "Text",
"sharedIds":
[
"KUAAAAAQ"
],
"settings":
{
"inheritanceType": "All"
}
}
]
}`)
func NewCreateCustomFieldParams() parameters.CreateCustomField {
return parameters.CreateCustomField{
Title: "Test custom field",
Type: types.TextType,
Shareds: parameters.ContactIDSet{"KUAAAAAQ"},
}
}
func Example_createCustomField() {
conf := wrike.NewConfig("wrike-access-token", "")
api := wrike.NewAPI(conf)
params := parameters.CreateCustomField{
Title: "Test custom field",
Type: types.TextType,
Shareds: parameters.ContactIDSet{"KUAAAAAQ"},
}
api.CreateCustomField(params)
}
func TestCreateCustomField(t *testing.T) {
client := NewMockClient(createdCustomFieldData)
api := &wrike.API{Config: mockAPIConfig, HTTPClient: client}
params := NewCreateCustomFieldParams()
customFields, err := api.CreateCustomField(params)
if err != nil {
fmt.Println(err.Error())
}
// Check request object
assert.Equal(t, client.Request.Method, http.MethodPost)
assert.Equal(t, client.Request.URL.String(), "https://app-eu.wrike.com/api/v4/customFields")
body, _ := ioutil.ReadAll(client.Request.Body)
data, _ := url.QueryUnescape(string(body))
assert.Equal(t, data, "shareds=[\"KUAAAAAQ\"]&title=Test custom field&type=Text")
SharedRequestTests(t, client.Request)
assert.Equal(t, string(customFields.Data[0].ID), "IEAAAAAQJUAAAAAZ")
}