forked from sogko/go-wordpress
-
Notifications
You must be signed in to change notification settings - Fork 2
/
terms_category_test.go
262 lines (221 loc) · 6.38 KB
/
terms_category_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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
package wordpress_test
import (
"github.com/sogko/go-wordpress"
"log"
"net/http"
"testing"
)
func factoryTermsCategory() *wordpress.Term {
return &wordpress.Term{
Name: "TestTermsCategoryCreate4",
Slug: "TestTermsCategoryCreate4",
}
}
func cleanUpTermsCategory(t *testing.T, id int) {
wp := initTestClient()
deletedTerm, resp, body, err := wp.Terms().Category().Delete(id, nil)
if err != nil {
t.Errorf("Failed to clean up new term: %v", err.Error())
}
if body == nil {
t.Errorf("body should not be nil")
}
if resp.StatusCode != http.StatusOK {
t.Errorf("Expected 200 StatusOK, got %v", resp.Status)
}
if deletedTerm.ID != id {
t.Errorf("Deleted term ID should be the same as newly created term: %v != %v", deletedTerm.ID, id)
}
}
func getAnyOneTermsCategory(t *testing.T, wp *wordpress.Client) *wordpress.Term {
terms, resp, _, _ := wp.Terms().Category().List(nil)
if resp.StatusCode != http.StatusOK {
t.Errorf("Expected 200 OK, got %v", resp.Status)
}
if len(terms) < 1 {
t.Fatalf("Should not return empty terms")
}
id := terms[0].ID
term, resp, _, _ := wp.Terms().Category().Get(id, nil)
if resp.StatusCode != http.StatusOK {
t.Fatalf("Expected 200 OK, got %v", resp.Status)
}
return term
}
func TestTermsCategoryList(t *testing.T) {
t.Skipf("Not supported anymore")
wp := initTestClient()
terms, resp, body, err := wp.Terms().Category().List(nil)
if err != nil {
t.Errorf("Should not return error: %v", err.Error())
}
if body == nil {
t.Errorf("body should not be nil")
}
if resp.StatusCode != http.StatusOK {
t.Errorf("Expected 200 StatusOK, got %v", resp.Status)
}
if terms == nil {
t.Errorf("Should not return nil terms")
}
}
func TestTermsCategoryGet(t *testing.T) {
t.Skipf("Not supported anymore")
wp := initTestClient()
tt := getAnyOneTermsCategory(t, wp)
term, resp, body, err := wp.Terms().Category().Get(tt.ID, nil)
if err != nil {
t.Errorf("Should not return error: %v", err.Error())
}
if body == nil {
t.Errorf("body should not be nil")
}
if resp.StatusCode != http.StatusOK {
t.Errorf("Expected 200 StatusOK, got %v", resp.Status)
}
if term == nil {
t.Errorf("Should not return nil term")
}
}
func TestTermsCategoryCreate_New(t *testing.T) {
t.Skipf("Not supported anymore")
wp := initTestClient()
tt := factoryTermsCategory()
term, resp, body, err := wp.Terms().Category().Create(tt)
if err != nil {
t.Errorf("Should not return error: %v", err.Error())
}
if body == nil {
t.Errorf("body should not be nil")
}
if resp.StatusCode != http.StatusOK {
t.Errorf("Expected 200 OK, got %v", resp.Status)
}
if term == nil {
t.Errorf("Should not return nil term")
}
// clean up
cleanUpTermsCategory(t, term.ID)
}
func TestTermsCategoryCreate_Existing(t *testing.T) {
t.Skipf("Not supported anymore")
wp := initTestClient()
tt := factoryTermsCategory()
// add category the first time
term, resp, body, err := wp.Terms().Category().Create(tt)
if err != nil {
t.Errorf("Should not return error: %v", err.Error())
}
if body == nil {
t.Errorf("body should not be nil")
}
if resp.StatusCode != http.StatusOK {
t.Errorf("Expected 200 OK, got %v", resp.Status)
}
if term == nil {
t.Errorf("Should not return nil term")
}
// add the same category the second time
duplicateTerm, resp, body, err := wp.Terms().Category().Create(tt)
if err == nil {
t.Errorf("Should return error: %v", err.Error())
}
if body == nil {
t.Errorf("body should not be nil")
}
if resp.StatusCode != http.StatusInternalServerError {
t.Errorf("Expected 500 Internal Server Erro, got %v", resp.Status)
}
if duplicateTerm == nil {
t.Errorf("Should not return nil duplicateTerm")
}
// unmarshall error response
// We expect server to return "term_exists" error code
serverErrors, err := wordpress.UnmarshallServerError(body)
if err != nil {
cleanUpTermsCategory(t, term.ID)
log.Println(string(body))
t.Fatalf("Unexpected error response from server, unable to unmarshall message %v", err.Error())
}
if len(serverErrors) != 1 {
t.Errorf("Expected one error", len(serverErrors))
}
if serverErrors[0].Code != "term_exists" {
t.Errorf("Unexpected err.code, %v != term_exists", serverErrors[0].Code)
}
// clean up
cleanUpTermsCategory(t, term.ID)
}
func TestTermsCategoryDelete(t *testing.T) {
t.Skipf("Not supported anymore")
wp := initTestClient()
tt := factoryTermsCategory()
// create category
newTerm, resp, _, _ := wp.Terms().Category().Create(tt)
if resp.StatusCode != http.StatusOK {
t.Errorf("Expected 200 OK, got %v", resp.Status)
}
if newTerm == nil {
t.Errorf("Should not return nil term")
}
// delete category
deletedTerm, resp, body, err := wp.Terms().Category().Delete(newTerm.ID, nil)
if err != nil {
t.Errorf("Should not return error: %v", err.Error())
}
if body == nil {
t.Errorf("body should not be nil")
}
if resp.StatusCode != http.StatusOK {
t.Errorf("Expected 200 OK, got %v", resp.Status)
}
if deletedTerm == nil {
t.Errorf("Should not return nil deletedTerm")
}
}
func TestTermsCategoryUpdate(t *testing.T) {
t.Skipf("Not supported anymore")
wp := initTestClient()
tt := factoryTermsCategory()
// create category
newTerm, resp, _, _ := wp.Terms().Category().Create(tt)
if resp.StatusCode != http.StatusOK {
t.Errorf("Expected 200 OK, got %v", resp.Status)
}
if newTerm == nil {
t.Errorf("Should not return nil term")
}
// get category term
term, resp, _, _ := wp.Terms().Category().Get(newTerm.ID, nil)
if resp.StatusCode != http.StatusOK {
t.Errorf("Expected 200 OK, got %v", resp.Status)
}
if term == nil {
t.Errorf("Should not return nil term")
}
// modify term description
newTermDescription := "TestTermsCategoryUpdate"
if term.Description == newTermDescription {
t.Errorf("Warning: Data must be different for proper test, %v === %v", term.Description, newTermDescription)
}
term.Description = newTermDescription
// update
updatedTerm, resp, body, err := wp.Terms().Category().Update(newTerm.ID, term)
if err != nil {
t.Errorf("Should not return error: %v", err.Error())
}
if body == nil {
t.Errorf("body should not be nil")
}
if resp.StatusCode != http.StatusOK {
t.Errorf("Expected 200 OK, got %v", resp.Status)
}
if updatedTerm == nil {
t.Errorf("Should not return nil updatedTerm")
}
if updatedTerm.Description != newTermDescription {
t.Errorf("Expected term to have updated description")
}
// clean up
cleanUpTermsCategory(t, newTerm.ID)
}