-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathPostTests.swift
401 lines (283 loc) · 12.6 KB
/
PostTests.swift
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
import Foundation
import XCTest
@testable import WordPress
class PostTests: XCTestCase {
fileprivate var contextManager: TestContextManager!
fileprivate var context: NSManagedObjectContext!
fileprivate func newTestBlog() -> Blog {
return NSEntityDescription.insertNewObject(forEntityName: "Blog", into: context) as! Blog
}
fileprivate func newTestPost() -> Post {
return NSEntityDescription.insertNewObject(forEntityName: Post.entityName, into: context) as! Post
}
fileprivate func newTestPostCategory() -> PostCategory {
return NSEntityDescription.insertNewObject(forEntityName: "Category", into: context) as! PostCategory
}
fileprivate func newTestPostCategory(_ name: String) -> PostCategory {
let category = newTestPostCategory()
category.categoryName = name
return category
}
override func setUp() {
super.setUp()
contextManager = TestContextManager()
context = NSManagedObjectContext(concurrencyType: .mainQueueConcurrencyType)
context.parent = contextManager.mainContext
}
override func tearDown() {
context.rollback()
ContextManager.overrideSharedInstance(nil)
super.tearDown()
}
func testThatNoCategoriesReturnEmptyStringWhenCallingCategoriesText() {
let post = newTestPost()
let categoriesText = post.categoriesText()
XCTAssertEqual(categoriesText, "")
}
func testThatSomeCategoriesReturnAListWhenCallingCategoriesText() {
let post = newTestPost()
post.categories = [newTestPostCategory("1"), newTestPostCategory("2"), newTestPostCategory("3")]
let categoriesText = post.categoriesText()
XCTAssertEqual(categoriesText, "1, 2, 3")
}
func testSetCategoriesFromNamesWithTwoCategories() {
let blog = newTestBlog()
let post = newTestPost()
let category1 = newTestPostCategory("One")
let category2 = newTestPostCategory("Two")
let category3 = newTestPostCategory("Three")
blog.categories = [category1, category2, category3]
post.blog = blog
post.setCategoriesFromNames(["One", "Three"])
let postCategories = post.categories!
XCTAssertEqual(postCategories.count, 2)
XCTAssertTrue(postCategories.contains(category1))
XCTAssertFalse(postCategories.contains(category2))
XCTAssertTrue(postCategories.contains(category3))
}
func testThatSettingNilLikeCountReturnsZeroNumberOfLikes() {
let post = newTestPost()
post.likeCount = nil
XCTAssertEqual(post.numberOfLikes(), 0)
}
func testThatSettingLikeCountAffectsNumberOfLikes() {
let post = newTestPost()
post.likeCount = 2
XCTAssertEqual(post.numberOfLikes(), 2)
}
func testThatSettingNilCommentCountReturnsZeroNumberOfComments() {
let post = newTestPost()
post.commentCount = nil
XCTAssertEqual(post.numberOfComments(), 0)
}
func testThatSettingCommentCountAffectsNumberOfComments() {
let post = newTestPost()
post.commentCount = 2
XCTAssertEqual(post.numberOfComments(), 2)
}
func testThatAddCategoriesWorks() {
let post = newTestPost()
let testCategories = Set([newTestPostCategory("1"), newTestPostCategory("2"), newTestPostCategory("3")])
post.addCategories(testCategories)
guard let postCategories = post.categories else {
XCTFail("post.categories should not be nil here.")
return
}
XCTAssert(postCategories.count == testCategories.count)
for testCategory in testCategories {
XCTAssertTrue(postCategories.contains(testCategory))
}
}
func testThatAddCategoriesObjectWorks() {
let post = newTestPost()
let testCategory = newTestPostCategory("1")
post.addCategoriesObject(testCategory)
guard let postCategories = post.categories else {
XCTFail("post.categories should not be nil here.")
return
}
XCTAssertEqual(postCategories.count, 1)
XCTAssertTrue(postCategories.contains(testCategory))
}
func testThatRemoveCategoriesWorks() {
let post = newTestPost()
let testCategories = Set<PostCategory>(arrayLiteral: newTestPostCategory("1"), newTestPostCategory("2"), newTestPostCategory("3"))
post.categories = testCategories
XCTAssertNotEqual(post.categories?.count, 0)
XCTAssertEqual(post.categories?.count, testCategories.count)
post.removeCategories(testCategories)
XCTAssertEqual(post.categories?.count, 0)
}
func testThatRemoveCategoriesObjectWorks() {
let post = newTestPost()
let testCategory = newTestPostCategory("1")
post.categories = Set<PostCategory>(arrayLiteral: testCategory)
XCTAssertEqual(post.categories?.count, 1)
post.removeCategoriesObject(testCategory)
XCTAssertEqual(post.categories?.count, 0)
}
func testThatPostFormatTextReturnsDefault() {
let defaultPostFormat = (key: "standard", value: "Default")
let post = newTestPost()
let blog = newTestBlog()
blog.postFormats = [defaultPostFormat.key: defaultPostFormat.value]
post.blog = blog
let postFormatText = post.postFormatText()!
XCTAssertEqual(postFormatText, defaultPostFormat.value)
}
func testThatPostFormatTextReturnsSelected() {
let defaultPostFormat = (key: "standard", value: "Default")
let secondaryPostFormat = (key: "secondary", value: "Secondary")
let post = newTestPost()
let blog = newTestBlog()
blog.postFormats = [defaultPostFormat.key: defaultPostFormat.value,
secondaryPostFormat.key: secondaryPostFormat.value]
post.blog = blog
post.postFormat = secondaryPostFormat.key
let postFormatText = post.postFormatText()!
XCTAssertEqual(postFormatText, secondaryPostFormat.value)
}
func testThatSetPostFormatTextWorks() {
let defaultPostFormat = (key: "standard", value: "Default")
let secondaryPostFormat = (key: "secondary", value: "Secondary")
let post = newTestPost()
let blog = newTestBlog()
blog.postFormats = [defaultPostFormat.key: defaultPostFormat.value,
secondaryPostFormat.key: secondaryPostFormat.value]
post.blog = blog
post.setPostFormatText(secondaryPostFormat.value)
XCTAssertEqual(post.postFormat, secondaryPostFormat.key)
}
func testThatHasCategoriesWorks() {
let post = newTestPost()
XCTAssertFalse(post.hasCategories())
post.categories = [newTestPostCategory("1"), newTestPostCategory("2"), newTestPostCategory("3")]
XCTAssertTrue(post.hasCategories())
post.categories = nil
XCTAssertFalse(post.hasCategories())
}
func testThatHasTagsWorks() {
let post = newTestPost()
XCTAssertFalse(post.hasTags())
post.tags = "a b c"
XCTAssertTrue(post.hasTags())
post.tags = nil
XCTAssertFalse(post.hasTags())
}
func testThatTitleForDisplayWorks() {
let post = newTestPost()
XCTAssertEqual(post.titleForDisplay(), "(no title)")
post.postTitle = "hello world"
XCTAssertEqual(post.titleForDisplay(), "hello world")
post.postTitle = " "
XCTAssertEqual(post.titleForDisplay(), "(no title)")
}
func testThatContentPreviewForDisplayWorks() {
let post = newTestPost()
post.content = "<HTML>some contents go here</HTML>"
XCTAssertEqual(post.contentPreviewForDisplay(), "some contents\u{A0}go here")
}
func testThatContentPreviewForDisplayWorksWithExcerpt() {
let post = newTestPost()
post.mt_excerpt = "<HTML>some contents go here</HTML>"
post.content = "blah blah"
XCTAssertEqual(post.contentPreviewForDisplay(), "some contents\u{A0}go here")
}
func testThatStatusForDisplayWorksForOriginalPost() {
let post = newTestPost()
post.status = .draft
XCTAssertNil(post.statusForDisplay())
post.status = .pending
XCTAssertEqual(post.statusForDisplay(), Post.title(for: .pending))
post.status = .publishPrivate
XCTAssertEqual(post.statusForDisplay(), Post.title(for: .publishPrivate))
post.status = .publish
XCTAssertNil(post.statusForDisplay())
post.status = .scheduled
XCTAssertEqual(post.statusForDisplay(), Post.title(for: .scheduled))
post.status = .trash
XCTAssertEqual(post.statusForDisplay(), Post.title(for: .trash))
post.status = .deleted
XCTAssertEqual(post.statusForDisplay(), Post.title(for: .deleted))
}
func testThatStatusForDisplayWorksForRevisionPost() {
let original = newTestPost()
let revision = original.createRevision()
revision.status = .draft
XCTAssertEqual(revision.statusForDisplay(), "Local")
revision.status = .pending
XCTAssertEqual(revision.statusForDisplay(), "\(Post.title(for: .pending)), Local")
revision.status = .publishPrivate
XCTAssertEqual(revision.statusForDisplay(), "\(Post.title(for: .publishPrivate)), Local")
revision.status = .publish
XCTAssertEqual(revision.statusForDisplay(), "Local")
revision.status = .scheduled
XCTAssertEqual(revision.statusForDisplay(), "\(Post.title(for: .scheduled)), Local")
revision.status = .trash
XCTAssertEqual(revision.statusForDisplay(), "\(Post.title(for: .trash)), Local")
revision.status = .deleted
XCTAssertEqual(revision.statusForDisplay(), "\(Post.title(for: .deleted)), Local")
}
func testThatHasLocalChangesWorks() {
let original = newTestPost()
var revision = original.createRevision() as! Post
XCTAssertFalse(original.hasLocalChanges())
XCTAssertFalse(revision.hasLocalChanges())
revision.tags = "Ahoi"
XCTAssertTrue(revision.hasLocalChanges())
original.deleteRevision()
original.tags = "ioha"
revision = original.createRevision() as! Post
XCTAssertFalse(revision.hasLocalChanges())
revision.tags = "Ahoi"
XCTAssertTrue(revision.hasLocalChanges())
revision.tags = original.tags
XCTAssertFalse(revision.hasLocalChanges())
revision.publicizeMessage = ""
XCTAssertFalse(revision.hasLocalChanges())
revision.publicizeMessage = nil
XCTAssertFalse(revision.hasLocalChanges())
revision.publicizeMessage = "Make it notorious"
XCTAssertTrue(revision.hasLocalChanges())
revision.publicizeMessage = original.publicizeMessage
XCTAssertFalse(revision.hasLocalChanges())
original.deleteRevision()
original.disablePublicizeConnectionWithKeyringID(8888)
revision = original.createRevision() as! Post
XCTAssertFalse(revision.hasLocalChanges())
revision.disablePublicizeConnectionWithKeyringID(1234)
XCTAssertTrue(revision.hasLocalChanges())
revision.enablePublicizeConnectionWithKeyringID(1234)
XCTAssertFalse(revision.hasLocalChanges())
revision.enablePublicizeConnectionWithKeyringID(8888)
XCTAssertTrue(revision.hasLocalChanges())
revision.disablePublicizeConnectionWithKeyringID(8888)
XCTAssertFalse(revision.hasLocalChanges())
revision.mt_excerpt = "Say cheese"
XCTAssertTrue(revision.hasLocalChanges())
revision.mt_excerpt = original.mt_excerpt
XCTAssertFalse(revision.hasLocalChanges())
revision.wp_slug = "New pretty slug"
XCTAssertTrue(revision.hasLocalChanges())
revision.wp_slug = original.wp_slug
XCTAssertFalse(revision.hasLocalChanges())
}
func testThatEnablingDisablingPublicizeConnectionsWorks() {
let post = newTestPost()
post.disablePublicizeConnectionWithKeyringID(1234)
XCTAssertTrue(post.publicizeConnectionDisabledForKeyringID(1234))
post.enablePublicizeConnectionWithKeyringID(1234)
XCTAssertFalse(post.publicizeConnectionDisabledForKeyringID(1234))
}
func testThatCanEditPublicizeSettingsWorks() {
let post = newTestPost()
post.status = .publish
XCTAssertTrue(post.canEditPublicizeSettings())
post.postID = 2905
XCTAssertFalse(post.canEditPublicizeSettings())
post.status = .scheduled
XCTAssertTrue(post.canEditPublicizeSettings())
post.status = .draft
XCTAssertTrue(post.canEditPublicizeSettings())
}
}