-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathexport.feature
More file actions
1359 lines (1144 loc) · 37.5 KB
/
export.feature
File metadata and controls
1359 lines (1144 loc) · 37.5 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
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Feature: Export content.
Scenario: Basic export
Given a WP install
When I run `wp export`
Then STDOUT should contain:
"""
All done with export.
"""
Scenario: Export argument validator
Given a WP install
When I try `wp export --post_type=wp-cli-party`
Then STDERR should contain:
"""
Warning: The post type wp-cli-party does not exist.
"""
And the return code should be 1
When I try `wp export --author=invalid-author`
Then STDERR should contain:
"""
Warning: Could not find a matching author for invalid-author
"""
And the return code should be 1
When I try `wp export --start_date=invalid-date`
Then STDERR should contain:
"""
Warning: The start_date invalid-date is invalid.
"""
And the return code should be 1
When I try `wp export --end_date=invalid-date`
Then STDERR should contain:
"""
Warning: The end_date invalid-date is invalid.
"""
And the return code should be 1
@require-wp-5.2 @require-mysql
Scenario: Export with post_type and post_status argument
Given a WP install
When I run `wp plugin install wordpress-importer --activate`
Then STDERR should not contain:
"""
Warning:
"""
When I run `wp site empty --yes`
And I run `wp post generate --post_type=page --post_status=draft --count=10`
And I run `wp post list --post_type=page --post_status=draft --format=count`
Then STDOUT should be:
"""
10
"""
When I run `wp export --post_type=page --post_status=draft`
Then save STDOUT 'Writing to file %s' as {EXPORT_FILE}
When I run `wp site empty --yes`
Then STDOUT should not be empty
When I run `wp post list --post_type=page --post_status=draft --format=count`
Then STDOUT should be:
"""
0
"""
When I run `wp import {EXPORT_FILE} --authors=skip`
Then STDOUT should not be empty
When I run `wp post list --post_type=page --post_status=draft --format=count`
Then STDOUT should be:
"""
10
"""
@require-wp-5.2 @require-mysql
Scenario: Export a comma-separated list of post types
Given a WP install
When I run `wp plugin install wordpress-importer --activate`
Then STDOUT should contain:
"""
Success:
"""
When I run `wp site empty --yes`
And I run `wp post generate --post_type=page --count=10`
And I run `wp post generate --post_type=post --count=10`
And I run `wp post generate --post_type=attachment --count=10`
And I run `wp post list --post_type=page,post,attachment --format=count`
Then STDOUT should be:
"""
30
"""
When I run `wp export --post_type=page,post`
Then save STDOUT 'Writing to file %s' as {EXPORT_FILE}
When I run `wp site empty --yes`
Then STDOUT should not be empty
When I run `wp post list --format=count`
Then STDOUT should be:
"""
0
"""
When I run `wp import {EXPORT_FILE} --authors=skip`
Then STDOUT should not be empty
When I run `wp post list --post_type=page,post --format=count`
Then STDOUT should be:
"""
20
"""
When I run `wp post list --post_type=page --format=count`
Then STDOUT should be:
"""
10
"""
When I run `wp post list --post_type=post --format=count`
Then STDOUT should be:
"""
10
"""
@require-wp-5.2 @require-mysql
Scenario: Export only one post
Given a WP install
When I run `wp plugin install wordpress-importer --activate`
Then STDOUT should contain:
"""
Success:
"""
When I run `wp post generate --count=10`
And I run `wp post list --format=count`
Then STDOUT should be:
"""
11
"""
When I run `wp post create --post_title='Post with attachment' --porcelain`
Then STDOUT should be a number
And save STDOUT as {ATTACHMENT_POST_ID}
When I run `wp post create --post_type=attachment --porcelain`
Then STDOUT should be a number
And save STDOUT as {ATTACHMENT_ID}
When I run `wp post update {ATTACHMENT_ID} --post_parent={ATTACHMENT_POST_ID} --porcelain`
Then STDOUT should contain:
"""
Success: Updated post {ATTACHMENT_ID}
"""
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 comment generate --count=2 --post_id={POST_ID}`
And I run `wp comment list --format=count`
Then STDOUT should contain:
"""
3
"""
When I run `wp export --post__in={POST_ID}`
Then save STDOUT 'Writing to file %s' as {EXPORT_FILE}
And the {EXPORT_FILE} file should not contain:
"""
<wp:post_id>{ATTACHMENT_ID}</wp:post_id>
"""
And the {EXPORT_FILE} file should not contain:
"""
<wp:post_type>attachment</wp:post_type>
"""
When I run `wp site empty --yes`
Then STDOUT should not be empty
When I run `wp import {EXPORT_FILE} --authors=skip`
Then STDOUT should not be empty
When I run `wp post list --post_type=post --format=count`
Then STDOUT should be:
"""
1
"""
When I run `wp comment list --format=count`
Then STDOUT should be:
"""
2
"""
@require-wp-5.2 @require-mysql
Scenario: Export multiple posts, separated by spaces
Given a WP install
When I run `wp plugin install wordpress-importer --activate`
Then STDOUT should contain:
"""
Success:
"""
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 2' --porcelain`
Then STDOUT should be a number
And save STDOUT as {POST_ID_TWO}
When I run `wp export --post__in="{POST_ID} {POST_ID_TWO}"`
Then save STDOUT 'Writing to file %s' as {EXPORT_FILE}
When I run `wp site empty --yes`
Then STDOUT should not be empty
When I run `wp import {EXPORT_FILE} --authors=skip`
Then STDOUT should not be empty
When I run `wp post list --post_type=post --format=count`
Then STDOUT should be:
"""
2
"""
@require-wp-5.2 @require-mysql
Scenario: Export multiple posts, separated by comma
Given a WP install
When I run `wp plugin install wordpress-importer --activate`
Then STDOUT should contain:
"""
Success:
"""
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 2' --porcelain`
Then STDOUT should be a number
And save STDOUT as {POST_ID_TWO}
When I run `wp export --post__in="{POST_ID},{POST_ID_TWO}"`
Then save STDOUT 'Writing to file %s' as {EXPORT_FILE}
When I run `wp site empty --yes`
Then STDOUT should not be empty
When I run `wp import {EXPORT_FILE} --authors=skip`
Then STDOUT should not be empty
When I run `wp post list --post_type=post --format=count`
Then STDOUT should be:
"""
2
"""
@require-wp-5.2 @require-mysql
Scenario: Export posts within a given date range
Given a WP install
When I run `wp plugin install wordpress-importer --activate`
Then STDERR should not contain:
"""
Warning:
"""
When I run `wp site empty --yes`
And I run `wp post generate --post_type=post --post_date=2013-08-01 --count=10`
And I run `wp post generate --post_type=post --post_date=2013-08-02 --count=10`
And I run `wp post generate --post_type=post --post_date=2013-08-03 --count=10`
And I run `wp post list --post_type=post --format=count`
Then STDOUT should be:
"""
30
"""
When I run `wp export --post_type=post --start_date=2013-08-02 --end_date=2013-08-02`
Then save STDOUT 'Writing to file %s' as {EXPORT_FILE}
When I run `wp site empty --yes`
Then STDOUT should not be empty
When I run `wp post list --post_type=post --format=count`
Then STDOUT should be:
"""
0
"""
When I run `wp import {EXPORT_FILE} --authors=skip`
Then STDOUT should not be empty
When I run `wp post list --post_type=post --format=count`
Then STDOUT should be:
"""
10
"""
@require-wp-5.2 @require-mysql
Scenario: Export posts from a given category
Given a WP install
And I run `wp site empty --yes`
And I run `wp plugin install wordpress-importer --activate`
When I run `wp term create category Apple --porcelain`
Then STDOUT should be a number
And save STDOUT as {APPLE_TERM_ID}
When I run `wp term create category Pear --porcelain`
Then STDOUT should be a number
And save STDOUT as {PEAR_TERM_ID}
When I run `wp post create --post_type=post --post_title='Apple Post' --post_category={APPLE_TERM_ID} --porcelain`
Then STDOUT should be a number
And save STDOUT as {APPLE_POST_ID}
When I run `wp post create --post_type=post --post_title='Pear Post' --post_category={PEAR_TERM_ID} --porcelain`
Then STDOUT should be a number
And save STDOUT as {PEAR_POST_ID}
When I run `wp export --post_type=post --category=apple`
And save STDOUT 'Writing to file %s' as {EXPORT_FILE}
Then the {EXPORT_FILE} file should contain:
"""
<category domain="category" nicename="apple"><![CDATA[Apple]]></category>
"""
And the {EXPORT_FILE} file should contain:
"""
<![CDATA[Apple Post]]>
"""
And the {EXPORT_FILE} file should not contain:
"""
<category domain="category" nicename="pear"><![CDATA[Pear]]></category>
"""
And the {EXPORT_FILE} file should not contain:
"""
<![CDATA[Pear Post]]>
"""
When I run `wp export --post_type=post --category={PEAR_TERM_ID}`
And save STDOUT 'Writing to file %s' as {EXPORT_FILE}
Then the {EXPORT_FILE} file should contain:
"""
<category domain="category" nicename="pear"><![CDATA[Pear]]></category>
"""
And the {EXPORT_FILE} file should contain:
"""
<![CDATA[Pear Post]]>
"""
And the {EXPORT_FILE} file should not contain:
"""
<category domain="category" nicename="apple"><![CDATA[Apple]]></category>
"""
And the {EXPORT_FILE} file should not contain:
"""
<![CDATA[Apple Post]]>
"""
When I run `wp site empty --yes`
Then STDOUT should not be empty
When I run `wp post list --post_type=post --format=count`
Then STDOUT should be:
"""
0
"""
When I run `wp import {EXPORT_FILE} --authors=skip`
Then STDOUT should not be empty
When I run `wp post list --post_type=post`
Then STDOUT should contain:
"""
Pear Post
"""
And STDOUT should not contain:
"""
Apple Post
"""
@require-wp-5.2 @require-mysql
Scenario: Export posts from a given author
Given a WP install
And I run `wp site empty --yes`
And I run `wp plugin install wordpress-importer --activate`
When I run `wp user create john john.doe@example.com --porcelain`
Then STDOUT should be a number
And save STDOUT as {JOHN_USER_ID}
When I run `wp user create jane jane.doe@example.com --porcelain`
Then STDOUT should be a number
And save STDOUT as {JANE_USER_ID}
When I run `wp post create --post_type=post --post_title='Post by John' --post_author={JOHN_USER_ID} --porcelain`
Then STDOUT should be a number
And save STDOUT as {JOHN_POST_ID}
When I run `wp post create --post_type=post --post_title='Post by Jane' --post_author={JANE_USER_ID} --porcelain`
Then STDOUT should be a number
And save STDOUT as {JANE_POST_ID}
When I run `wp export --post_type=post --author={JANE_USER_ID}`
And save STDOUT 'Writing to file %s' as {EXPORT_FILE}
Then the {EXPORT_FILE} file should contain:
"""
jane.doe@example.com
"""
And the {EXPORT_FILE} file should contain:
"""
Post by Jane
"""
And the {EXPORT_FILE} file should not contain:
"""
john.doe@example.com
"""
And the {EXPORT_FILE} file should not contain:
"""
Post by John
"""
When I run `wp site empty --yes`
Then STDOUT should not be empty
When I run `wp user delete {JOHN_USER_ID} {JANE_USER_ID} --yes`
Then STDOUT should contain:
"""
Success: Removed user {JOHN_USER_ID} from https://example.com.
"""
And STDOUT should contain:
"""
Success: Removed user {JANE_USER_ID} from https://example.com.
"""
When I run `wp post list --post_type=post --format=count`
Then STDOUT should be:
"""
0
"""
When I run `wp import {EXPORT_FILE} --authors=create`
Then STDOUT should not be empty
When I run `wp post list --post_type=post`
Then STDOUT should contain:
"""
Post by Jane
"""
And STDOUT should not contain:
"""
Post by John
"""
When I run `wp user list`
Then STDOUT should contain:
"""
jane.doe@example.com
"""
And STDOUT should not contain:
"""
john.doe@example.com
"""
@require-wp-5.2 @require-mysql
Scenario: Export posts should include user information
Given a WP install
And I run `wp plugin install wordpress-importer --activate`
And I run `wp user create user user@user.com --role=editor --display_name="Test User"`
And I run `wp post generate --post_type=post --count=10 --post_author=user`
When I run `wp export`
And save STDOUT 'Writing to file %s' as {EXPORT_FILE}
Then the {EXPORT_FILE} file should contain:
"""
<wp:author_display_name><![CDATA[Test User]]></wp:author_display_name>
"""
When I run `wp site empty --yes`
And I run `wp user list --field=user_login | xargs -n 1 wp user delete --yes`
Then STDOUT should not be empty
When I run `wp import {EXPORT_FILE} --authors=create`
Then STDOUT should not be empty
When I run `wp user get user --field=display_name`
Then STDOUT should be:
"""
Test User
"""
@require-wp-5.2 @require-mysql
Scenario: Export posts from a given starting post ID
Given a WP install
When I run `wp plugin install wordpress-importer --activate`
Then STDERR should not contain:
"""
Warning:
"""
When I run `wp site empty --yes`
And I run `wp post generate --post_type=post --count=10`
And I run `wp post list --post_type=post --format=count`
Then STDOUT should be:
"""
10
"""
When I run `wp export --start_id=6`
Then save STDOUT 'Writing to file %s' as {EXPORT_FILE}
When I run `wp site empty --yes`
Then STDOUT should not be empty
When I run `wp post list --post_type=post --format=count`
Then STDOUT should be:
"""
0
"""
When I run `wp import {EXPORT_FILE} --authors=skip`
Then STDOUT should not be empty
When I run `wp post list --post_type=post --format=count`
Then STDOUT should be:
"""
5
"""
@require-wp-5.2 @require-mysql
Scenario: Exclude a specific post type from export
Given a WP install
And I run `wp site empty --yes`
And I run `wp post create --post_title="Some page" --post_type=page`
And I run `wp post generate --post_type=post --count=10`
And I run `wp plugin install wordpress-importer --activate`
When I run `wp post list --post_type=any --format=count`
Then STDOUT should be:
"""
11
"""
When I run `wp export --post_type__not_in=post`
Then save STDOUT 'Writing to file %s' as {EXPORT_FILE}
When I run `wp site empty --yes`
Then STDOUT should not be empty
When I run `wp post list --post_type=any --format=count`
Then STDOUT should be:
"""
0
"""
When I run `wp import {EXPORT_FILE} --authors=skip`
Then STDOUT should not be empty
When I run `wp post list --post_type=any --format=count`
Then STDOUT should be:
"""
1
"""
When I run `wp post generate --post_type=post --count=10`
And I run `wp post list --post_type=any --format=count`
Then STDOUT should be:
"""
11
"""
When I run `wp export --post_type__not_in=post,page`
Then save STDOUT 'Writing to file %s' as {EXPORT_FILE}
When I run `wp site empty --yes`
Then STDOUT should not be empty
When I run `wp post list --post_type=any --format=count`
Then STDOUT should be:
"""
0
"""
When I run `wp import {EXPORT_FILE} --authors=skip`
Then STDOUT should not be empty
When I run `wp post list --post_type=any --format=count`
Then STDOUT should be:
"""
0
"""
@require-mysql
Scenario: Export posts using --max_num_posts
Given a WP install
And I run `wp site empty --yes`
And a count-instances.php file:
"""
<?php
echo 'count=' . preg_match_all( '#<wp:post_type>' . $args[0] . '<\/wp:post_type>#', file_get_contents( 'php://stdin' ), $matches );
"""
When I run `wp post generate --post_type=post --count=10`
And I run `wp export --post_type=post --max_num_posts=1 --stdout | wp --skip-wordpress eval-file count-instances.php post`
Then STDOUT should contain:
"""
count=1
"""
When I run `wp post generate --post_type=post --count=10`
And I run `wp post generate --post_type=attachment --count=10`
And I run `wp export --max_num_posts=1 --stdout | wp --skip-wordpress eval-file count-instances.php "(post|attachment)"`
Then STDOUT should contain:
"""
count=1
"""
When I run `wp export --max_num_posts=5 --stdout | wp --skip-wordpress eval-file count-instances.php "(post|attachment)"`
Then STDOUT should contain:
"""
count=5
"""
Scenario: Export a site with a custom filename format
Given a WP install
When I run `wp export --filename_format='foo-bar.{date}.{n}.xml'`
Then STDOUT should contain:
"""
foo-bar.
"""
And STDOUT should contain:
"""
000.xml
"""
Scenario: Export a site with a very long site name produces a filename within a reasonable length
Given a WP install
And I run `wp option update blogname 'This is a very long site name that exceeds fifty characters and should be truncated in the export filename'`
When I run `wp export`
Then STDOUT should contain:
"""
thisisaverylongsitenamethatexceedsfiftycharactersa.wordpress.
"""
And STDOUT should not contain:
"""
thisisaverylongsitenamethatexceedsfiftycharactersandshouldbetruncated
"""
@require-wp-5.2 @require-mysql
Scenario: Export a site and skip the comments
Given a WP install
And I run `wp comment generate --post_id=1 --count=2`
And I run `wp plugin install wordpress-importer --activate`
When I run `wp comment list --format=count`
Then STDOUT should contain:
"""
3
"""
When I run `wp export --skip_comments`
Then save STDOUT 'Writing to file %s' as {EXPORT_FILE}
When I run `wp site empty --yes`
Then STDOUT should not be empty
When I run `wp post list --format=count`
Then STDOUT should contain:
"""
0
"""
When I run `wp comment list --format=count`
Then STDOUT should contain:
"""
0
"""
When I run `wp import {EXPORT_FILE} --authors=skip`
Then STDOUT should not be empty
When I run `wp post list --format=count`
Then STDOUT should contain:
"""
1
"""
When I run `wp comment list --format=count`
Then STDOUT should contain:
"""
0
"""
Scenario: Export splitting the dump
Given a WP install
When I run `wp export --max_file_size=0.0001 --filename_format='{n}.xml'`
Then STDOUT should contain:
"""
001.xml
"""
And STDERR should be empty
When I run `cat 000.xml`
Then STDOUT should contain:
"""
<wp:category>
"""
When I run `cat 001.xml`
Then STDOUT should contain:
"""
<wp:category>
"""
Scenario: Export splitting the dump with a bad --include_once value
Given a WP install
And I run `wp term generate post_tag --count=1`
When I try `wp export --max_file_size=0.0001 --include_once=invalid --filename_format='{n}.xml'`
Then STDERR should contain:
"""
Warning: include_once should be comma-separated values for optional before_posts sections
"""
Scenario: Export splitting the dump with a single --include_once value
Given a WP install
And I run `wp term generate post_tag --count=1`
When I run `wp export --max_file_size=0.0001 --include_once=categories --filename_format='{n}.xml'`
Then STDOUT should contain:
"""
001.xml
"""
And STDERR should be empty
When I run `cat 000.xml`
Then STDOUT should contain:
"""
<wp:category>
"""
And STDOUT should contain:
"""
<wp:tag>
"""
When I run `cat 001.xml`
Then STDOUT should not contain:
"""
<wp:category>
"""
And STDOUT should contain:
"""
<wp:tag>
"""
Scenario: Export splitting the dump with multiple --include_once values
Given a WP install
And I run `wp term generate post_tag --count=1`
When I run `wp export --max_file_size=0.0001 --include_once=categories,tags --filename_format='{n}.xml'`
Then STDOUT should contain:
"""
001.xml
"""
And STDERR should be empty
When I run `cat 000.xml`
Then STDOUT should contain:
"""
<wp:category>
"""
And STDOUT should contain:
"""
<wp:tag>
"""
When I run `cat 001.xml`
Then STDOUT should not contain:
"""
<wp:category>
"""
And STDOUT should not contain:
"""
<wp:tag>
"""
@require-mysql
Scenario: Export without splitting the dump
Given a WP install
# Make export file > 15MB so will split by default. Need to split into 4 * 4MB to stay below 10% of default redo log size of 48MB, otherwise get MySQL error.
And I run `wp db query "INSERT INTO wp_postmeta (post_id, meta_key, meta_value) VALUES (1, '_dummy', REPEAT( 'A', 4 * 1024 * 1024 ) );"`
And I run `wp db query "INSERT INTO wp_postmeta (post_id, meta_key, meta_value) VALUES (1, '_dummy', REPEAT( 'A', 4 * 1024 * 1024 ) );"`
And I run `wp db query "INSERT INTO wp_postmeta (post_id, meta_key, meta_value) VALUES (1, '_dummy', REPEAT( 'A', 4 * 1024 * 1024 ) );"`
And I run `wp db query "INSERT INTO wp_postmeta (post_id, meta_key, meta_value) VALUES (1, '_dummy', REPEAT( 'A', 4 * 1024 * 1024 ) );"`
When I run `wp export`
Then STDOUT should contain:
"""
000.xml
"""
And STDOUT should contain:
"""
001.xml
"""
And STDERR should be empty
When I run `wp export --max_file_size=0`
Then STDOUT should contain:
"""
000.xml
"""
And STDOUT should contain:
"""
001.xml
"""
And STDERR should be empty
When I run `wp export --max_file_size=-1`
Then STDOUT should contain:
"""
000.xml
"""
And STDOUT should not contain:
"""
001.xml
"""
And STDERR should be empty
@require-wp-5.2 @require-mysql
Scenario: Export a site to stdout
Given a WP install
And I run `wp comment generate --post_id=1 --count=1`
And I run `wp plugin install wordpress-importer --activate`
When I run `wp export --stdout > export.xml`
Then STDOUT should be empty
And the return code should be 0
When I run `cat export.xml`
Then STDOUT should not contain:
"""
Writing to file
"""
And STDOUT should contain:
"""
<generator>
"""
When I run `wp site empty --yes`
Then STDOUT should contain:
"""
Success:
"""
When I run `wp comment list --format=count`
Then STDOUT should be:
"""
0
"""
When I run `wp import export.xml --authors=skip`
Then STDOUT should contain:
"""
Success:
"""
When I run `wp comment list --format=count`
Then STDOUT should be:
"""
2
"""
Scenario: Error when --stdout and --dir are both provided
Given a WP install
When I try `wp export --stdout --dir=foo`
Then STDERR should be:
"""
Error: --stdout and --dir cannot be used together.
"""
And the return code should be 1
@require-wp-5.2 @require-mysql
Scenario: Export individual post with attachments
Given a WP install
And I run `wp plugin install wordpress-importer --activate`
And I run `wp site empty --yes`
When I run `wp post generate --count=10`
And I run `wp post list --format=count`
Then STDOUT should be:
"""
10
"""
When I run `wp post create --post_title='Post with attachment to export' --porcelain`
Then STDOUT should be a number
And save STDOUT as {EXPORT_ATTACHMENT_POST_ID}
When I run `wp media import 'http://wp-cli.org/behat-data/codeispoetry.png' --post_id={EXPORT_ATTACHMENT_POST_ID} --porcelain`
Then STDOUT should be a number
And save STDOUT as {EXPORT_ATTACHMENT_ID}
When I run `wp post create --post_title='Post with attachment to ignore' --porcelain`
Then STDOUT should be a number
And save STDOUT as {IGNORE_ATTACHMENT_POST_ID}
When I run `wp media import 'http://wp-cli.org/behat-data/white-150-square.jpg' --post_id={IGNORE_ATTACHMENT_POST_ID} --porcelain`
Then STDOUT should be a number
And save STDOUT as {IGNORE_ATTACHMENT_ID}
When I run `wp post list --post_type=post --format=count`
Then STDOUT should be:
"""
12
"""
When I run `wp post list --post_type=attachment --format=count`
Then STDOUT should be:
"""
2
"""
When I run `wp export --post__in={EXPORT_ATTACHMENT_POST_ID} --with_attachments`
Then save STDOUT 'Writing to file %s' as {EXPORT_FILE}
And the {EXPORT_FILE} file should contain:
"""
<wp:post_id>{EXPORT_ATTACHMENT_POST_ID}</wp:post_id>
"""
And the {EXPORT_FILE} file should contain:
"""
<wp:post_type>attachment</wp:post_type>
"""
And the {EXPORT_FILE} file should contain:
"""
<wp:post_id>{EXPORT_ATTACHMENT_ID}</wp:post_id>
"""
And the {EXPORT_FILE} file should contain:
"""
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
"""
And the {EXPORT_FILE} file should contain:
"""
codeispoetry.png";s:
"""
And the {EXPORT_FILE} file should contain:
"""
<wp:meta_key>_wp_attached_file</wp:meta_key>
"""
And the {EXPORT_FILE} file should contain:
"""
codeispoetry.png]]></wp:meta_value>
"""
And the {EXPORT_FILE} file should not contain:
"""
<wp:meta_key>_edit_lock</wp:meta_key>
"""
And the {EXPORT_FILE} file should not contain:
"""
<wp:post_id>{IGNORE_ATTACHMENT_POST_ID}</wp:post_id>
"""
And the {EXPORT_FILE} file should not contain:
"""
<wp:post_id>{IGNORE_ATTACHMENT_ID}</wp:post_id>
"""
And the {EXPORT_FILE} file should not contain:
"""
white-150-square.jpg]]></wp:meta_value>
"""
And the {EXPORT_FILE} file should not contain:
"""
white-150-square.jpg";s:
"""
@require-wp-5.2 @require-mysql
Scenario: Export categories, tags and terms
Given a WP install
And a wp-content/mu-plugins/register-region-taxonomy.php file:
"""
<?php
function wp_cli_region_taxonomy() {
register_taxonomy( 'region', 'post', [
'label' => 'Region',