-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcopy_folder_test.go
119 lines (111 loc) · 3.39 KB
/
copy_folder_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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
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 copiedFolderData = []byte(
`{
"kind": "folders",
"data":
[
{
"id": "IEAAAAAQI4AB5BGY",
"accountId": "IEAAAAAQ",
"title": "Test folder copy",
"createdDate": "2019-02-18T11:17:43Z",
"updatedDate": "2019-02-18T11:17:43Z",
"description": "",
"sharedIds":
[
"KUAAAAHK",
"KUAAAAAQ"
],
"parentIds":
[
"IEAAAAAQI4AB5BGX"
],
"childIds":
[
"IEAAAAAQI4AB5BGZ",
"IEAAAAAQI4AB5BG2"
],
"superParentIds":
[
],
"scope": "WsFolder",
"hasAttachments": false,
"permalink": "https://dev.wrke.io/open.htm?id=2000088",
"workflowId": "IEAAAAAQK777777Q",
"metadata":
[
],
"customFields":
[
]
}
]
}`)
func NewCopyFolderParams() parameters.CopyFolder {
f := false
t := true
entryLimit := 50
return parameters.CopyFolder{
Parent: "IEAAAAAQI4AB5BGX",
CopyParents: &f,
EntryLimit: &entryLimit,
CopyDescriptions: &t,
CopyCustomFields: &t,
CopyCustomStatuses: &t,
CopyResponsibles: &t,
RemoveResponsibles: parameters.ContactIDSet{"KUAAAAAQ"},
AddResponsibles: parameters.ContactIDSet{"KUAAAAHK"},
RescheduleMode: "Start",
RescheduleDate: "2019-02-18",
Title: "Test folder copy",
}
}
func Example_copyFolder() {
conf := wrike.NewConfig("wrike-access-token", "")
api := wrike.NewAPI(conf)
f := false
t := true
entryLimit := 50
params := parameters.CopyFolder{
Parent: "IEAAAAAQI4AB5BGX",
CopyParents: &f,
EntryLimit: &entryLimit,
CopyDescriptions: &t,
CopyCustomFields: &t,
CopyCustomStatuses: &t,
CopyResponsibles: &t,
RemoveResponsibles: parameters.ContactIDSet{"KUAAAAAQ"},
AddResponsibles: parameters.ContactIDSet{"KUAAAAHK"},
RescheduleMode: "Start",
RescheduleDate: "2019-02-18",
Title: "Test folder copy",
}
api.CopyFolder("IEAAAAAQI4AB5BGU", params)
}
func TestCopyFolder(t *testing.T) {
client := NewMockClient(copiedFolderData)
api := &wrike.API{Config: mockAPIConfig, HTTPClient: client}
params := NewCopyFolderParams()
folders, err := api.CopyFolder("IEAAAAAQI4AB5BGU", 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/copy_folder/IEAAAAAQI4AB5BGU")
body, _ := ioutil.ReadAll(client.Request.Body)
data, _ := url.QueryUnescape(string(body))
assert.Equal(t, data, "addResponsibles=[\"KUAAAAHK\"]©CustomFields=true©CustomStatuses=true©Descriptions=true©Parents=false©Responsibles=true&entryLimit=50&parent=IEAAAAAQI4AB5BGX&removeResponsibles=[\"KUAAAAAQ\"]&rescheduleDate=2019-02-18&rescheduleMode=Start&title=Test folder copy")
SharedRequestTests(t, client.Request)
assert.Equal(t, string(folders.Data[0].ID), "IEAAAAAQI4AB5BGY")
}