-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patharticles_test.go
317 lines (254 loc) · 6.8 KB
/
articles_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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
package dev
import (
"math"
"os"
"strconv"
"strings"
"testing"
)
func TestGetPublishedArticles(t *testing.T) {
c, err := NewTestClient()
if err != nil {
t.Errorf("Failed to create TestClient: %s", err.Error())
}
t.Run("page limit", func(t *testing.T) {
t.Skip()
articles, err := c.GetPublishedArticles(
ArticleQueryParams{
Page: 1,
PerPage: 10,
},
)
if err != nil {
t.Errorf("Error fetching articles: %s", err.Error())
}
if len(articles) != 10 {
t.Errorf("Expected result to contain 10 articles, got %d", len(articles))
}
})
t.Run("articles with tag", func(t *testing.T) {
t.Skip()
articles, err := c.GetPublishedArticles(
ArticleQueryParams{
PerPage: 1,
Tag: "golang",
},
)
if err != nil {
t.Errorf("Error fetching articles: %s", err.Error())
}
if !strings.Contains(articles[0].Tags, "go") {
t.Errorf("Expected tags to contain given tag, got: %s", articles[0].Tags)
}
})
t.Run("articles with tag", func(t *testing.T) {
t.Skip()
articles, err := c.GetPublishedArticles(
ArticleQueryParams{
PerPage: 1,
Username: "unorthodev",
},
)
if err != nil {
t.Errorf("Error fetching articles: %s", err.Error())
}
want := "unorthodev"
got := articles[0].User.Username
if articles[0].User.Username != "unorthodev" {
t.Errorf("Expected article user to be '%s', got '%s'", want, got)
}
})
}
func TestCreateArticle(t *testing.T) {
t.Skip()
c, err := NewTestClient()
if err != nil {
t.Errorf("Failed to create TestClient: %s", err.Error())
}
payload := ArticleBodySchema{}
payload.Article.Title = "The crust of structs in Go"
payload.Article.BodyMarkdown = ""
payload.Article.Published = false
payload.Article.Tags = []string{"golang"}
article, err := c.CreateArticle(payload, "article_sample.md")
if err != nil {
t.Errorf("Error trying to create article: %s", err.Error())
}
want := "The crust of structs in Go"
got := article.Title
if article.Title != want {
t.Errorf("Expected article title to be %s, got %s", want, got)
}
}
func TestGetPublishedArticlesSorted(t *testing.T) {
c, err := NewTestClient()
if err != nil {
t.Errorf("Failed to create TestClient: %s", err.Error())
}
articles, err := c.GetPublishedArticlesSorted(
ArticleQueryParams{
Page: 1,
PerPage: 10,
},
)
if err != nil {
t.Errorf("Error fetching articles: %s", err.Error())
}
t1, _ := parseUTCDate(articles[0].PublishedAt)
t2, err := parseUTCDate(articles[1].PublishedAt)
if err != nil {
t.Errorf("Error parsing UTC date: %v", err.Error())
}
diff := t1.Sub(t2).Seconds()
if math.Signbit(diff) {
t.Errorf("Expected result to contain articles ordered by descending publish date")
}
}
func TestGetPublishedArticleByID(t *testing.T) {
c, err := NewTestClient()
if err != nil {
t.Errorf("Failed to create TestClient: %s", err.Error())
}
articleID := os.Getenv("TEST_PUBLISHED_ARTICLE_ID")
article, err := c.GetPublishedArticleByID(articleID)
if err != nil {
t.Errorf("Error fetching article: %s", err.Error())
}
want, err := strconv.Atoi(articleID)
if err != nil {
t.Errorf("Error converting string to int: %s", err.Error())
}
got := article.ID
if int32(want) != got {
t.Errorf("Expected result to contain articles ordered by descending publish date")
}
}
func TestUpdateArticle(t *testing.T) {
c, err := NewTestClient()
if err != nil {
t.Errorf("Failed to create TestClient: %s", err.Error())
}
articleID := "880104"
payload := ArticleBodySchema{}
payload.Article.Title = "The crust of structs in Go 3"
payload.Article.BodyMarkdown = ""
payload.Article.Published = false
payload.Article.Tags = []string{"golang", "discuss"}
article, err := c.UpdateArticle(articleID, payload, "article_sample.md")
if err != nil {
t.Errorf("Error trying to update article: %s", err.Error())
}
want := "The crust of structs in Go 3"
got := article.Title
if got != want {
t.Errorf("Expected article title to be '%s', got '%s'", want, got)
}
if len(article.Tags) != 2 {
t.Errorf("Expected article to have two tags, got '%d'", len(article.Tags))
}
}
func TestGetPublishedArticleByPath(t *testing.T) {
c, err := NewTestClient()
if err != nil {
t.Errorf("Failed to create TestClient: %s", err.Error())
}
username := os.Getenv("TEST_USERNAME")
slug := os.Getenv("TEST_PUBLISHED_ARTICLE_SLUG")
article, err := c.GetPublishedArticleByPath(username, slug)
if err != nil {
t.Errorf("Error fetching article: %s", err.Error())
}
if article.Slug != slug {
t.Errorf("Expected article slug to be '%s', got '%s'", slug, article.Slug)
}
}
func TestGetUserArticles(t *testing.T) {
c, err := NewTestClient()
if err != nil {
t.Errorf("Failed to create TestClient: %s", err.Error())
}
articles, err := c.GetUserArticles(
ArticleQueryParams{
Page: 1,
PerPage: 2,
},
)
username := os.Getenv("TEST_USERNAME")
if err != nil {
t.Errorf("Error fetching articles: %s", err.Error())
}
if len(articles) != 2 {
t.Errorf("Expected result to contain 2 articles, got %d", len(articles))
}
if articles[0].User.Username != username {
t.Error("Expected result to include articles for authenticated user")
}
}
func TestGetUserPublishedArticles(t *testing.T) {
c, err := NewTestClient()
if err != nil {
t.Errorf("Failed to create TestClient: %s", err.Error())
}
articles, err := c.GetUserPublishedArticles(
ArticleQueryParams{
Page: 1,
PerPage: 5,
},
)
username := os.Getenv("TEST_USERNAME")
if err != nil {
t.Errorf("Error fetching articles: %s", err.Error())
}
if articles[0].User.Username != username {
t.Error("Expected result to include articles for authenticated user")
}
for _, v := range articles {
if !v.Published {
t.Error("Expected result to contain published articles")
}
}
}
func TestGetUserUnPublishedArticles(t *testing.T) {
c, err := NewTestClient()
if err != nil {
t.Errorf("Failed to create TestClient: %s", err.Error())
}
articles, err := c.GetUserUnPublishedArticles(
ArticleQueryParams{
Page: 1,
PerPage: 5,
},
)
username := os.Getenv("TEST_USERNAME")
if err != nil {
t.Errorf("Error fetching articles: %s", err.Error())
}
if articles[0].User.Username != username {
t.Error("Expected result to include articles for authenticated user")
}
for _, v := range articles {
if v.Published {
t.Error("Expected result to contain unpublished articles")
}
}
}
func TestGetArticlesWithVideo(t *testing.T) {
c, err := NewTestClient()
if err != nil {
t.Errorf("Failed to create TestClient: %s", err.Error())
}
articles, err := c.GetArticlesWithVideo(
ArticleQueryParams{
Page: 1,
PerPage: 5,
},
)
if err != nil {
t.Errorf("Error fetching articles: %s", err.Error())
}
for _, v := range articles {
if v.TypeOf != "video_article" {
t.Error("Expected result to include articles for authenticated user")
}
}
}