-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathpost.feature
More file actions
616 lines (517 loc) · 18.9 KB
/
post.feature
File metadata and controls
616 lines (517 loc) · 18.9 KB
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
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
Feature: Manage WordPress posts
Background:
Given a WP install
Scenario: Creating/updating/deleting posts
When I run `wp post create --post_title='Test post' --porcelain`
Then STDOUT should be a number
And save STDOUT as {POST_ID}
When I run `wp post create --post_title='Test post' --post_type="test" --porcelain`
Then STDOUT should be a number
And save STDOUT as {CUSTOM_POST_ID}
When I run `wp post exists {CUSTOM_POST_ID}`
Then STDOUT should be:
"""
Success: Post with ID {CUSTOM_POST_ID} exists.
"""
And the return code should be 0
When I try `wp post exists 1000`
Then STDOUT should be empty
And the return code should be 1
When I run `wp post update {POST_ID} --post_title='Updated post'`
Then STDOUT should be:
"""
Success: Updated post {POST_ID}.
"""
When I run `wp post delete {POST_ID}`
Then STDOUT should be:
"""
Success: Trashed post {POST_ID}.
"""
When I run the previous command again
Then STDOUT should be:
"""
Success: Deleted post {POST_ID}.
"""
When I run `wp post delete {CUSTOM_POST_ID}`
Then STDOUT should be:
"""
Success: Trashed post {CUSTOM_POST_ID}.
"""
When I run the previous command again
Then STDOUT should be:
"""
Success: Deleted post {CUSTOM_POST_ID}.
"""
Scenario: Force-deleting a custom post type post skips trash
When I run `wp post create --post_title='Test CPT post' --post_type='book' --porcelain`
Then STDOUT should be a number
And save STDOUT as {BOOK_POST_ID}
When I run `wp post delete {BOOK_POST_ID} --force`
Then STDOUT should be:
"""
Success: Deleted post {BOOK_POST_ID}.
"""
When I try the previous command again
Then the return code should be 1
Scenario: Deleting already trashed custom post type posts
When I run `wp post create --post_title='Test CPT post' --post_type='book' --porcelain`
Then STDOUT should be a number
And save STDOUT as {BOOK_POST_ID}
When I run `wp post update {BOOK_POST_ID} --post_status='trash'`
Then STDOUT should be:
"""
Success: Updated post {BOOK_POST_ID}.
"""
When I run `wp post delete {BOOK_POST_ID}`
Then STDOUT should be:
"""
Success: Deleted post {BOOK_POST_ID}.
"""
Scenario: Updating an invalid post should exit with an error
Given a WP install
When I try `wp post update 22 --post_title=Foo`
Then the return code should be 1
And STDERR should contain:
"""
Warning: Invalid post ID.
"""
Scenario: Setting post categories
When I run `wp term create category "First Category" --porcelain`
Then save STDOUT as {TERM_ID}
When I run `wp term create category "Second Category" --porcelain`
Then save STDOUT as {SECOND_TERM_ID}
When I run `wp post create --post_title="Test category" --post_category="First Category" --porcelain`
Then STDOUT should be a number
And save STDOUT as {POST_ID}
When I run `wp post term list {POST_ID} category --field=term_id`
Then STDOUT should be:
"""
{TERM_ID}
"""
When I run `wp post update {POST_ID} --post_category={SECOND_TERM_ID}`
Then STDOUT should be:
"""
Success: Updated post {POST_ID}.
"""
When I run `wp post term list {POST_ID} category --field=term_id`
Then STDOUT should be:
"""
{SECOND_TERM_ID}
"""
When I run `wp post update {POST_ID} --post_category='Uncategorized,{TERM_ID},Second Category'`
Then STDOUT should be:
"""
Success: Updated post {POST_ID}.
"""
When I run `wp post term list {POST_ID} category --field=term_id`
And save STDOUT as {MULTI_CATEGORIES_STDOUT}
Then STDOUT should contain:
"""
{TERM_ID}
"""
And STDOUT should contain:
"""
{SECOND_TERM_ID}
"""
And STDOUT should contain:
"""
1
"""
# Blank categories with non-blank ignored.
When I run `wp post update {POST_ID} --post_category='Uncategorized, ,{TERM_ID},Second Category,'`
Then STDOUT should be:
"""
Success: Updated post {POST_ID}.
"""
When I run `wp post term list {POST_ID} category --field=term_id`
Then STDOUT should be:
"""
{MULTI_CATEGORIES_STDOUT}
"""
# Zero category same as default Uncategorized (1) category.
When I try `wp post update {POST_ID} --post_category=0`
Then STDOUT should be:
"""
Success: Updated post {POST_ID}.
"""
When I run `wp post term list {POST_ID} category --field=term_id`
Then STDOUT should be:
"""
1
"""
# Blank category/categories same as default Uncategorized (1) category.
When I try `wp post update {POST_ID} --post_category=,`
Then STDOUT should be:
"""
Success: Updated post {POST_ID}.
"""
When I run `wp post term list {POST_ID} category --field=term_id`
Then STDOUT should be:
"""
1
"""
# Null category same as no categories.
When I try `wp post update {POST_ID} --post_category=' '`
Then STDOUT should be:
"""
Success: Updated post {POST_ID}.
"""
When I run `wp post term list {POST_ID} category --field=term_id`
Then STDOUT should be empty
# Non-existent category.
When I try `wp post update {POST_ID} --post_category=test`
Then STDERR should be:
"""
Error: No such post category 'test'.
"""
When I try `wp post create --post_title="Non-existent Category" --post_category={SECOND_TERM_ID},Test --porcelain`
Then STDERR should be:
"""
Error: No such post category 'Test'.
"""
# Error on first non-existent category found.
When I try `wp post create --post_title="More than one non-existent Category" --post_category={SECOND_TERM_ID},Test,Bad --porcelain`
Then STDERR should be:
"""
Error: No such post category 'Test'.
"""
Scenario: Creating/getting/editing posts
Given a content.html file:
"""
This is some content.
<script>
alert('This should not be stripped.');
</script>
"""
And a create-post.sh file:
"""
cat content.html | wp post create --post_title='Test post' --post_excerpt="A multiline
excerpt" --porcelain -
"""
When I run `bash create-post.sh`
Then STDOUT should be a number
And save STDOUT as {POST_ID}
When I run `wp post get --field=excerpt {POST_ID}`
Then STDOUT should be:
"""
A multiline
excerpt
"""
When I run `wp post get --field=content {POST_ID} | diff -Bu content.html -`
Then STDOUT should be empty
When I run `wp post get --format=table {POST_ID}`
Then STDOUT should be a table containing rows:
| Field | Value |
| ID | {POST_ID} |
| post_title | Test post |
| post_name | |
| post_type | post |
When I run `wp post get {POST_ID} --format=csv --fields=post_title,type | wc -l | tr -d ' '`
Then STDOUT should be:
"""
3
"""
When I run `wp post get --format=json {POST_ID}`
Then STDOUT should be JSON containing:
"""
{
"ID": {POST_ID},
"post_title": "Test post"
}
"""
When I try `EDITOR='ex -i NONE -c q!' wp post edit {POST_ID}`
Then STDERR should contain:
"""
No change made to post content.
"""
And the return code should be 0
When I run `EDITOR='ex -i NONE -c %s/content/bunkum -c wq' wp post edit {POST_ID}`
Then STDERR should be empty
And STDOUT should contain:
"""
Updated post {POST_ID}.
"""
When I run `wp post get --field=content {POST_ID}`
Then STDOUT should contain:
"""
This is some bunkum.
"""
When I run `wp post url 1 {POST_ID}`
Then STDOUT should be:
"""
https://example.com/?p=1
https://example.com/?p={POST_ID}
"""
When I run `wp post get 1 --field=url`
Then STDOUT should be:
"""
https://example.com/?p=1
"""
Scenario: Update a post from file or STDIN
Given a content.html file:
"""
Oh glorious CLI
"""
And a content-2.html file:
"""
Let it be the weekend
"""
When I run `wp post create --post_title="Testing update via STDIN" --porcelain`
Then STDOUT should be a number
And save STDOUT as {POST_ID}
When I run `cat content.html | wp post update {POST_ID} -`
Then STDOUT should contain:
"""
Success: Updated post {POST_ID}
"""
When I run `wp post get --field=post_content {POST_ID}`
Then STDOUT should be:
"""
Oh glorious CLI
"""
When I run `wp post create --post_title="Testing update via STDIN. Again!" --porcelain`
Then STDOUT should be a number
And save STDOUT as {POST_ID_TWO}
When I run `wp post update {POST_ID} {POST_ID_TWO} content-2.html`
Then STDOUT should contain:
"""
Success: Updated post {POST_ID_TWO}
"""
When I run `wp post get --field=post_content {POST_ID_TWO}`
Then STDOUT should be:
"""
Let it be the weekend
"""
When I try `wp post update {POST_ID} invalid-file.html`
Then STDERR should be:
"""
Error: Unable to read content from 'invalid-file.html'.
"""
And the return code should be 1
Scenario: Creating/listing posts
When I run `wp post create --post_title='Publish post' --post_content='Publish post content' --post_status='publish' --porcelain`
Then STDOUT should be a number
And save STDOUT as {POST_ID}
When I run `wp post create --post_title='Draft post' --post_content='Draft post content' --post_status='draft' --porcelain`
Then STDOUT should be a number
When I run `wp post list --post_type='post' --fields=post_title,post_name,post_status --format=csv`
Then STDOUT should be CSV containing:
| post_title | post_name | post_status |
| Publish post | publish-post | publish |
| Draft post | | draft |
When I run `wp post list --post_type='post' --fields=title,name,status --format=csv`
Then STDOUT should be CSV containing:
| post_title | post_name | post_status |
| Publish post | publish-post | publish |
| Draft post | | draft |
When I run `wp post list --post_type='post' --fields="title, name, status" --format=csv`
Then STDOUT should be CSV containing:
| post_title | post_name | post_status |
| Publish post | publish-post | publish |
| Draft post | | draft |
When I run `wp post list --post__in={POST_ID} --format=count`
Then STDOUT should be:
"""
1
"""
When I run `wp post list --post_type='page' --field=title`
Then STDOUT should contain:
"""
Sample Page
"""
When I run `wp post list --post_type=any --fields=post_title,post_name,post_status --format=csv --orderby=post_title --order=ASC`
Then STDOUT should be CSV containing:
| post_title | post_name | post_status |
| Draft post | | draft |
| Hello world! | hello-world | publish |
| Publish post | publish-post | publish |
| Sample Page | sample-page | publish |
Scenario: List posts with date query
When I run `wp post create --post_title='old post' --post_date='2023-01-24T09:52:00.000Z'`
And I run `wp post create --post_title='new post' --post_date='2025-01-24T09:52:00.000Z'`
And I run `wp post list --field=post_title --date_query='{"before":{"year":"2024"}}'`
Then STDOUT should contain:
"""
old post
"""
And STDOUT should not contain:
"""
new post
"""
Scenario: List posts with tax query
When I run `wp term create category "First Category" --porcelain`
And I run `wp term create category "Second Category" --porcelain`
And I run `wp post create --post_title='post-1' --post_category="First Category"`
And I run `wp post create --post_title='post-2' --post_category="Second Category"`
And I run `wp post create --post_title='new post' --post_date='2025-01-24T09:52:00.000Z'`
And I run `wp post list --field=post_title --tax_query='[{"taxonomy":"category","field":"slug","terms":"first-category"}]'`
Then STDOUT should contain:
"""
post-1
"""
And STDOUT should not contain:
"""
post-2
"""
Scenario: Creating/updating posts with taxonomies
When I run `wp term create category "First Category" --porcelain`
And save STDOUT as {CAT_1}
And I run `wp term create category "Second Category" --porcelain`
And save STDOUT as {CAT_2}
And I run `wp term create post_tag "Term One" --porcelain`
And I run `wp term create post_tag "Term Two" --porcelain`
And I run `wp post create --post_title='Test Post' --post_content='Test post content' --tax_input='{"category":[{CAT_1},{CAT_2}],"post_tag":["term-one", "term-two"]}' --porcelain`
Then STDOUT should be a number
And save STDOUT as {POST_ID}
When I run `wp post term list {POST_ID} category post_tag --format=table --fields=name,taxonomy`
Then STDOUT should be a table containing rows:
| name | taxonomy |
| First Category | category |
| Second Category | category |
| Term One | post_tag |
| Term Two | post_tag |
When I run `wp post update {POST_ID} --tax_input='{"category":[{CAT_1}],"post_tag":["term-one"]}'`
Then STDOUT should contain:
"""
Success: Updated post {POST_ID}.
"""
When I run `wp post term list {POST_ID} category post_tag --format=table --fields=name,taxonomy`
Then STDOUT should be a table containing rows:
| name | taxonomy |
| First Category | category |
| Term One | post_tag |
Scenario: Update categories on a post
When I run `wp term create category "Test Category" --porcelain`
Then save STDOUT as {TERM_ID}
When I run `wp post update 1 --post_category={TERM_ID}`
And I run `wp post term list 1 category --format=json --fields=name`
Then STDOUT should be:
"""
[{"name":"Test Category"}]
"""
Scenario: Make sure WordPress receives the slashed data it expects
When I run `wp post create --post_title='My\Post' --porcelain`
Then save STDOUT as {POST_ID}
When I run `wp post get {POST_ID} --field=title`
Then STDOUT should be:
"""
My\Post
"""
When I run `wp post update {POST_ID} --post_content='var isEmailValid = /^\S+@\S+.\S+$/.test(email);'`
Then STDOUT should not be empty
When I run `wp post get {POST_ID} --field=content`
Then STDOUT should be:
"""
var isEmailValid = /^\S+@\S+.\S+$/.test(email);
"""
@require-wp-4.4
Scenario: Creating/updating posts with meta keys
When I run `wp post create --post_title='Test Post' --post_content='Test post content' --meta_input='{"key1":"value1","key2":"value2"}' --porcelain`
Then STDOUT should be a number
And save STDOUT as {POST_ID}
When I run `wp post meta list {POST_ID} --format=table`
Then STDOUT should be a table containing rows:
| post_id | meta_key | meta_value |
| {POST_ID} | key1 | value1 |
| {POST_ID} | key2 | value2 |
When I run `wp post update {POST_ID} --meta_input='{"key2":"value2b","key3":"value3"}'`
And I run `wp post meta list {POST_ID} --format=table`
Then STDOUT should be a table containing rows:
| post_id | meta_key | meta_value |
| {POST_ID} | key1 | value1 |
| {POST_ID} | key2 | value2b |
| {POST_ID} | key3 | value3 |
When I run `wp post list --field=post_title --meta_query='[{"key":"key2","value":"value2b"}]'`
Then STDOUT should contain:
"""
Test Post
"""
Scenario: Publishing a post and setting a date fails if the edit_date flag is not passed.
Given a WP install
When I run `wp post create --post_title='test' --porcelain`
Then save STDOUT as {POST_ID}
When I run `wp post update {POST_ID} --post_date='2005-01-24T09:52:00.000Z' --post_status='publish'`
Then STDOUT should contain:
"""
Success:
"""
When I run `wp post get {POST_ID} --field=post_date`
Then STDOUT should not contain:
"""
2005-01-24 09:52:00
"""
@require-mysql
Scenario: Publishing a post and setting a date succeeds if the edit_date flag is passed.
Given a WP install
When I run `wp post create --post_title='test' --porcelain`
Then save STDOUT as {POST_ID}
When I run `wp post update {POST_ID} --post_date='2005-01-24T09:52:00.000Z' --post_status='publish' --edit_date=1`
Then STDOUT should contain:
"""
Success:
"""
When I run `wp post get {POST_ID} --field=post_date`
Then STDOUT should contain:
"""
2005-01-24 09:52:00
"""
# Separate test because of a known bug in the SQLite plugin.
# See https://github.com/WordPress/sqlite-database-integration/issues/52.
# Once the bug is resolved, this separate test can be removed again.
@require-sqlite
Scenario: Publishing a post and setting a date succeeds if the edit_date flag is passed.
Given a WP install
When I run `wp post create --post_title='test' --porcelain`
Then save STDOUT as {POST_ID}
When I run `wp post update {POST_ID} --post_date='2005-01-24T09:52:00.000Z' --post_status='publish' --edit_date=1`
Then STDOUT should contain:
"""
Success:
"""
When I run `wp post get {POST_ID} --field=post_date`
Then STDOUT should contain:
"""
2005-01-24T09:52:00.000Z
"""
@require-wp-5.0
Scenario: Get block_version field for post with blocks
Given a block-post.html file:
"""
<!-- wp:paragraph --><p>Hello block world</p><!-- /wp:paragraph -->
"""
When I run `wp post create block-post.html --post_title='Block Post' --porcelain`
Then STDOUT should be a number
And save STDOUT as {POST_ID}
When I run `wp post get {POST_ID} --field=block_version`
Then STDOUT should be:
"""
1
"""
@require-wp-5.0
Scenario: Get block_version field for post without blocks
Given a classic-post.html file:
"""
<p>Just plain HTML</p>
"""
When I run `wp post create classic-post.html --post_title='Classic Post' --porcelain`
Then STDOUT should be a number
And save STDOUT as {POST_ID}
When I run `wp post get {POST_ID} --field=block_version`
Then STDOUT should be:
"""
0
"""
@require-wp-5.0
Scenario: Get block_version field included in default output
Given a heading-post.html file:
"""
<!-- wp:heading --><h2>Title</h2><!-- /wp:heading -->
"""
When I run `wp post create heading-post.html --post_title='Test Post' --porcelain`
Then STDOUT should be a number
And save STDOUT as {POST_ID}
When I run `wp post get {POST_ID} --format=json`
Then STDOUT should be JSON containing:
"""
{"block_version":1}
"""