forked from o1egl/go-wordpress
-
Notifications
You must be signed in to change notification settings - Fork 9
/
posts_terms_category_test.go
151 lines (127 loc) · 4.3 KB
/
posts_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
package wordpress_test
import (
"context"
"net/http"
"testing"
"github.com/robbiet480/go-wordpress"
)
func cleanUpPostsTermsCategory(t *testing.T, postID int, id int) {
wp, ctx := initTestClient()
// terms does not support trashing
deletedTerm, resp, err := wp.Posts.Entity(postID).Terms().Category().Delete(ctx, id, "force=true")
if err != nil {
t.Errorf("Failed to clean up new term: %v", err.Error())
}
if resp != nil && 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 getAnyOnePostsTermsCategory(t *testing.T, ctx context.Context, wp *wordpress.Client, postID int) *wordpress.PostsTerm {
terms, resp, _ := wp.Posts.Entity(postID).Terms().Category().List(ctx, nil)
if resp != nil && 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.Posts.Entity(postID).Terms().Category().Get(ctx, id, nil)
if resp != nil && resp.StatusCode != http.StatusOK {
t.Fatalf("Expected 200 OK, got %v", resp.Status)
}
return term
}
func TestPostsTermsCategory_InvalidCall(t *testing.T) {
// User is not allowed to call create wordpress.Post object manually to retrieve PostsTermsService
// A proper API call would inject the right PostsTermsService, Client and other goodies into a post,
// allowing user to call post.Terms()
invalidPost := wordpress.Post{}
invalidTerms := invalidPost.Terms()
if invalidTerms != nil {
t.Errorf("Expected meta to be nil, %v", invalidTerms)
}
}
func TestPostsTermsCategoryList(t *testing.T) {
t.Skipf("Not supported anymore")
wp, ctx := initTestClient()
post := getAnyOnePost(t, ctx, wp)
postID := post.ID
terms, resp, err := wp.Posts.Entity(postID).Terms().Category().List(ctx, nil)
if err != nil {
t.Errorf("Should not return error: %v", err.Error())
}
if resp != nil && resp.StatusCode != http.StatusOK {
t.Errorf("Expected 200 StatusOK, got %v", resp.Status)
}
if terms == nil {
t.Errorf("Should not return nil terms")
}
}
func TestPostsTermsCategoryGet(t *testing.T) {
t.Skipf("Not supported anymore")
wp, ctx := initTestClient()
post := getAnyOnePost(t, ctx, wp)
postID := post.ID
tt := getAnyOnePostsTermsCategory(t, ctx, wp, postID)
term, resp, err := wp.Posts.Entity(postID).Terms().Category().Get(ctx, tt.ID, nil)
if err != nil {
t.Errorf("Should not return error: %v", err.Error())
}
if resp != nil && resp.StatusCode != http.StatusOK {
t.Errorf("Expected 200 StatusOK, got %v", resp.Status)
}
if term == nil {
t.Errorf("Should not return nil term")
}
}
func TestPostsTermsCategoryCreate_Existing(t *testing.T) {
t.Skipf("Not supported anymore")
wp, ctx := initTestClient()
post := getAnyOnePost(t, ctx, wp)
tt := getAnyOneTermsCategory(t, ctx, wp)
postID := post.ID
termID := tt.ID
term, resp, err := wp.Posts.Entity(postID).Terms().Category().Create(ctx, termID)
if err != nil {
t.Errorf("Should not return error: %v", err.Error())
}
if resp != nil && resp.StatusCode != http.StatusCreated {
t.Errorf("Expected 201 Created, got %v", resp.Status)
}
if term == nil {
t.Errorf("Should not return nil term")
}
// clean up
cleanUpPostsTermsCategory(t, postID, term.ID)
}
func TestPostsTermsCategoryDelete(t *testing.T) {
t.Skipf("Not supported anymore")
wp, ctx := initTestClient()
post := getAnyOnePost(t, ctx, wp)
tt := getAnyOneTermsCategory(t, ctx, wp)
postID := post.ID
termID := tt.ID
// create category
newTerm, resp, _ := wp.Posts.Entity(postID).Terms().Category().Create(ctx, termID)
if resp != nil && resp.StatusCode != http.StatusCreated {
t.Errorf("Expected 201 Created, got %v", resp.Status)
}
if newTerm == nil {
t.Errorf("Should not return nil term")
}
// delete category
// Note: Terms does not support trashing; `force=true` is required
deletedTerm, resp, err := wp.Posts.Entity(postID).Terms().Category().Delete(ctx, newTerm.ID, "force=true")
if err != nil {
t.Errorf("Should not return error: %v", err.Error())
}
if resp != nil && resp.StatusCode != http.StatusOK {
t.Errorf("Expected 200 OK, got %v", resp.Status)
}
if deletedTerm == nil {
t.Errorf("Should not return nil deletedTerm")
}
}