forked from wp-cli/wp-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils-wp.feature
More file actions
832 lines (760 loc) · 22.5 KB
/
utils-wp.feature
File metadata and controls
832 lines (760 loc) · 22.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
Feature: Utilities that depend on WordPress code
Scenario: Clear WP cache
Given a WP installation
And a test.php file:
"""
<?php
WP_CLI::add_hook( 'after_wp_load', function () {
global $wp_object_cache;
echo empty( $wp_object_cache->cache ) . ',' . isset( $wp_object_cache->group_ops ) . ',' . isset( $wp_object_cache->stats ) . ',' . isset( $wp_object_cache->memcache_debug ) . "\n";
WP_CLI\Utils\wp_clear_object_cache();
echo empty( $wp_object_cache->cache ) . ',' . isset( $wp_object_cache->group_ops ) . ',' . isset( $wp_object_cache->stats ) . ',' . isset( $wp_object_cache->memcache_debug ) . "\n";
} );
"""
When I run `wp post create --post_title="Foo Bar" --porcelain`
And I run `wp --require=test.php eval ''`
Then STDOUT should be:
"""
,,,
1,,,
"""
# `wp db query` does not yet work on SQLite,
# See https://github.com/wp-cli/db-command/issues/234
@require-mysql
Scenario: Get WP table names for single site install
Given a WP installation
And I run `wp db query "CREATE TABLE xx_wp_posts ( id int );"`
And I run `wp db query "CREATE TABLE wp_xx_posts ( id int );"`
And I run `wp db query "CREATE TABLE wp_posts_xx ( id int );"`
And I run `wp db query "CREATE TABLE wp_categories ( id int );"`
And I run `wp db query "CREATE VIEW wp_posts_view AS ( SELECT ID from wp_posts );"`
And a table_names.php file:
"""
<?php
/**
* Test WP get table names.
*
* ## OPTIONS
*
* [<table>...]
* : List tables based on wildcard search, e.g. 'wp_*_options' or 'wp_post?'.
*
* [--scope=<scope>]
* : Can be all, global, ms_global, blog, or old tables. Defaults to all.
*
* [--network]
* : List all the tables in a multisite installation. Overrides --scope=<scope>.
*
* [--all-tables-with-prefix]
* : List all tables that match the table prefix even if not registered on $wpdb. Overrides --network.
*
* [--all-tables]
* : List all tables in the database, regardless of the prefix, and even if not registered on $wpdb. Overrides --all-tables-with-prefix.
*
* [--base-tables-only]
* : Restrict returned tables to those that are not views.
*
* [--views-only]
* : Restrict returned tables to those that are views.
*/
function test_wp_get_table_names( $args, $assoc_args ) {
if ( $tables = WP_CLI\Utils\wp_get_table_names( $args, $assoc_args ) ) {
echo implode( PHP_EOL, $tables ) . PHP_EOL;
}
}
WP_CLI::add_command( 'get_table_names', 'test_wp_get_table_names' );
"""
When I run `wp --require=table_names.php get_table_names`
Then STDOUT should contain:
"""
wp_commentmeta
wp_comments
wp_links
wp_options
wp_postmeta
wp_posts
wp_term_relationships
wp_term_taxonomy
"""
# Leave out wp_termmeta for old WP compat.
And STDOUT should contain:
"""
wp_terms
wp_usermeta
wp_users
"""
And save STDOUT as {DEFAULT_STDOUT}
When I run `wp --require=table_names.php get_table_names --all-tables-with-prefix --views-only`
Then STDOUT should be:
"""
wp_posts_view
"""
When I run `wp --require=table_names.php get_table_names --all-tables --base-tables-only`
Then STDOUT should not contain:
"""
wp_posts_view
"""
But STDOUT should contain:
"""
wp_commentmeta
wp_comments
wp_links
wp_options
wp_postmeta
wp_posts
wp_posts_xx
wp_term_relationships
wp_term_taxonomy
"""
# Leave out wp_termmeta for old WP compat.
But STDOUT should contain:
"""
wp_terms
wp_usermeta
wp_users
"""
When I run `wp --require=table_names.php get_table_names --scope=all`
Then STDOUT should be:
"""
{DEFAULT_STDOUT}
"""
When I run `wp --require=table_names.php get_table_names --scope=blog`
Then STDOUT should contain:
"""
wp_commentmeta
wp_comments
wp_links
wp_options
wp_postmeta
wp_posts
wp_term_relationships
wp_term_taxonomy
"""
# Leave out wp_termmeta for old WP compat.
And STDOUT should contain:
"""
wp_terms
"""
When I run `wp --require=table_names.php get_table_names --scope=global`
Then STDOUT should be:
"""
wp_usermeta
wp_users
"""
When I run `wp --require=table_names.php get_table_names --scope=ms_global`
Then STDOUT should be empty
When I run `wp --require=table_names.php get_table_names --scope=old`
Then STDOUT should be:
"""
wp_categories
"""
When I run `wp --require=table_names.php get_table_names --network`
Then STDOUT should be:
"""
{DEFAULT_STDOUT}
"""
When I run `wp --require=table_names.php get_table_names --all-tables-with-prefix`
Then STDOUT should contain:
"""
wp_categories
wp_commentmeta
wp_comments
wp_links
wp_options
wp_postmeta
wp_posts
wp_posts_view
wp_posts_xx
wp_term_relationships
wp_term_taxonomy
"""
# Leave out wp_termmeta for old WP compat.
And STDOUT should contain:
"""
wp_terms
wp_usermeta
wp_users
wp_xx_posts
"""
When I run `wp --require=table_names.php get_table_names --all-tables`
Then STDOUT should contain:
"""
wp_categories
wp_commentmeta
wp_comments
wp_links
wp_options
wp_postmeta
wp_posts
wp_posts_view
wp_posts_xx
wp_term_relationships
wp_term_taxonomy
"""
# Leave out wp_termmeta for old WP compat.
And STDOUT should contain:
"""
wp_terms
wp_usermeta
wp_users
wp_xx_posts
xx_wp_posts
"""
When I run `wp --require=table_names.php get_table_names '*_posts'`
Then STDOUT should be:
"""
wp_posts
"""
When I run `wp --require=table_names.php get_table_names 'wp_post*'`
Then STDOUT should be:
"""
wp_postmeta
wp_posts
"""
When I run `wp --require=table_names.php get_table_names 'wp*osts'`
Then STDOUT should be:
"""
wp_posts
"""
When I run `wp --require=table_names.php get_table_names '*_posts' --scope=blog`
Then STDOUT should be:
"""
wp_posts
"""
When I try `wp --require=table_names.php get_table_names '*_posts' --scope=global`
Then STDERR should be:
"""
Error: Couldn't find any tables matching: *_posts
"""
And STDOUT should be empty
When I run `wp --require=table_names.php get_table_names '*_posts' --network`
Then STDOUT should be:
"""
wp_posts
"""
When I run `wp --require=table_names.php get_table_names '*_posts' --all-tables-with-prefix`
Then STDOUT should be:
"""
wp_posts
wp_xx_posts
"""
When I run `wp --require=table_names.php get_table_names '*wp_posts' --all-tables-with-prefix`
Then STDOUT should be:
"""
wp_posts
"""
When I run `wp --require=table_names.php get_table_names 'wp_post*' --all-tables-with-prefix`
Then STDOUT should be:
"""
wp_postmeta
wp_posts
wp_posts_view
wp_posts_xx
"""
When I run `wp --require=table_names.php get_table_names 'wp*osts' --all-tables-with-prefix`
Then STDOUT should be:
"""
wp_posts
wp_xx_posts
"""
When I run `wp --require=table_names.php get_table_names '*_posts' --all-tables`
Then STDOUT should be:
"""
wp_posts
wp_xx_posts
xx_wp_posts
"""
When I run `wp --require=table_names.php get_table_names '*wp_posts' --all-tables`
Then STDOUT should be:
"""
wp_posts
xx_wp_posts
"""
When I run `wp --require=table_names.php get_table_names 'wp_post*' --all-tables`
Then STDOUT should be:
"""
wp_postmeta
wp_posts
wp_posts_view
wp_posts_xx
"""
When I run `wp --require=table_names.php get_table_names 'wp*osts' --all-tables`
Then STDOUT should be:
"""
wp_posts
wp_xx_posts
"""
When I try `wp --require=table_names.php get_table_names non_existent_table`
Then STDERR should be:
"""
Error: Couldn't find any tables matching: non_existent_table
"""
And STDOUT should be empty
When I run `wp --require=table_names.php get_table_names wp_posts non_existent_table`
Then STDOUT should be:
"""
wp_posts
"""
When I run `wp --require=table_names.php get_table_names wp_posts non_existent_table 'wp_?ption*'`
Then STDOUT should be:
"""
wp_options
wp_posts
"""
# `wp db query` does not yet work on SQLite,
# See https://github.com/wp-cli/db-command/issues/234
@require-mysql
Scenario: Get WP table names for multisite install
Given a WP multisite install
And I run `wp db query "CREATE TABLE xx_wp_posts ( id int );"`
And I run `wp db query "CREATE TABLE xx_wp_2_posts ( id int );"`
And I run `wp db query "CREATE TABLE wp_xx_posts ( id int );"`
And I run `wp db query "CREATE TABLE wp_2_xx_posts ( id int );"`
And I run `wp db query "CREATE TABLE wp_posts_xx ( id int );"`
And I run `wp db query "CREATE TABLE wp_2_posts_xx ( id int );"`
And I run `wp db query "CREATE TABLE wp_categories ( id int );"`
And I run `wp db query "CREATE TABLE wp_sitecategories ( id int );"`
And a table_names.php file:
"""
<?php
/**
* Test WP get table names.
*
* ## OPTIONS
*
* [<table>...]
* : List tables based on wildcard search, e.g. 'wp_*_options' or 'wp_post?'.
*
* [--scope=<scope>]
* : Can be all, global, ms_global, blog, or old tables. Defaults to all.
*
* [--network]
* : List all the tables in a multisite installation. Overrides --scope=<scope>.
*
* [--all-tables-with-prefix]
* : List all tables that match the table prefix even if not registered on $wpdb. Overrides --network.
*
* [--all-tables]
* : List all tables in the database, regardless of the prefix, and even if not registered on $wpdb. Overrides --all-tables-with-prefix.
*/
function test_wp_get_table_names( $args, $assoc_args ) {
if ( $tables = WP_CLI\Utils\wp_get_table_names( $args, $assoc_args ) ) {
echo implode( PHP_EOL, $tables ) . PHP_EOL;
}
}
WP_CLI::add_command( 'get_table_names', 'test_wp_get_table_names' );
"""
# With no subsite.
When I run `wp --require=table_names.php get_table_names`
# Leave out wp_blog_versions as it was never used and is removed with WP 5.3+.
# Leave out wp_blogmeta for old WP compat.
Then STDOUT should contain:
"""
wp_blogs
wp_commentmeta
wp_comments
wp_links
wp_options
wp_postmeta
wp_posts
wp_registration_log
wp_signups
wp_site
wp_sitemeta
wp_term_relationships
wp_term_taxonomy
"""
# Leave out wp_termmeta for old WP compat.
And STDOUT should contain:
"""
wp_terms
wp_usermeta
wp_users
"""
And save STDOUT as {DEFAULT_STDOUT}
When I run `wp --require=table_names.php get_table_names --scope=all`
Then STDOUT should be:
"""
{DEFAULT_STDOUT}
"""
When I run `wp --require=table_names.php get_table_names --scope=blog`
Then STDOUT should contain:
"""
wp_commentmeta
wp_comments
wp_links
wp_options
wp_postmeta
wp_posts
wp_term_relationships
wp_term_taxonomy
"""
# Leave out wp_termmeta for old WP compat.
And STDOUT should contain:
"""
wp_terms
"""
When I run `wp --require=table_names.php get_table_names --scope=global`
# Leave out wp_blog_versions as it was never used and is removed with WP 5.3+.
# Leave out wp_blogmeta for old WP compat.
Then STDOUT should contain:
"""
wp_blogs
wp_registration_log
wp_signups
wp_site
wp_sitemeta
wp_usermeta
wp_users
"""
And save STDOUT as {GLOBAL_STDOUT}
When I run `wp --require=table_names.php get_table_names --scope=ms_global`
# Leave out wp_blog_versions as it was never used and is removed with WP 5.3+.
# Leave out wp_blogmeta for old WP compat.
Then STDOUT should contain:
"""
wp_blogs
wp_registration_log
wp_signups
wp_site
wp_sitemeta
"""
When I run `wp --require=table_names.php get_table_names --scope=old`
Then STDOUT should be:
"""
wp_categories
"""
When I run `wp --require=table_names.php get_table_names --network`
Then STDOUT should be:
"""
{DEFAULT_STDOUT}
"""
# With subsite.
Given I run `wp site create --slug=foo`
When I run `wp --require=table_names.php get_table_names`
Then STDOUT should be:
"""
{DEFAULT_STDOUT}
"""
When I run `wp --require=table_names.php get_table_names --url=example.com/foo --scope=blog`
Then STDOUT should contain:
"""
wp_2_commentmeta
wp_2_comments
wp_2_links
wp_2_options
wp_2_postmeta
wp_2_posts
wp_2_term_relationships
wp_2_term_taxonomy
"""
# Leave out wp_2_termmeta for old WP compat.
And STDOUT should contain:
"""
wp_2_terms
"""
And save STDOUT as {SUBSITE_BLOG_STDOUT}
When I run `wp --require=table_names.php get_table_names --url=example.com/foo`
Then STDOUT should be:
"""
{SUBSITE_BLOG_STDOUT}
{GLOBAL_STDOUT}
"""
When I run `wp --require=table_names.php get_table_names --network`
Then STDOUT should be:
"""
{SUBSITE_BLOG_STDOUT}
{DEFAULT_STDOUT}
"""
And save STDOUT as {NETWORK_STDOUT}
When I run `wp --require=table_names.php get_table_names --network --url=example.com/foo`
Then STDOUT should be:
"""
{NETWORK_STDOUT}
"""
When I run `wp --require=table_names.php get_table_names --all-tables-with-prefix`
Then STDOUT should contain:
"""
wp_2_commentmeta
wp_2_comments
wp_2_links
wp_2_options
wp_2_postmeta
wp_2_posts
wp_2_posts_xx
wp_2_term_relationships
wp_2_term_taxonomy
"""
# Leave out wp_2_termmeta for old WP compat.
And STDOUT should contain:
"""
wp_2_terms
wp_2_xx_posts
"""
# Leave out wp_blog_versions as it was never used and is removed with WP 5.3+.
# Leave out wp_blogmeta for old WP compat.
Then STDOUT should contain:
"""
wp_blogs
wp_categories
wp_commentmeta
wp_comments
wp_links
wp_options
wp_postmeta
wp_posts
wp_posts_xx
wp_registration_log
wp_signups
wp_site
wp_sitecategories
wp_sitemeta
wp_term_relationships
wp_term_taxonomy
"""
# Leave out wp_termmeta for old WP compat.
And STDOUT should contain:
"""
wp_terms
wp_usermeta
wp_users
wp_xx_posts
"""
And save STDOUT as {ALL_TABLES_WITH_PREFIX_STDOUT}
# Network overridden by all-tables-with-prefix.
When I run `wp --require=table_names.php get_table_names --all-tables-with-prefix --network`
Then STDOUT should contain:
"""
{ALL_TABLES_WITH_PREFIX_STDOUT}
"""
When I run `wp --require=table_names.php get_table_names --all-tables`
Then STDOUT should be:
"""
{ALL_TABLES_WITH_PREFIX_STDOUT}
xx_wp_2_posts
xx_wp_posts
"""
And save STDOUT as {ALL_TABLES_STDOUT}
# Network overridden by all-tables.
When I run `wp --require=table_names.php get_table_names --all-tables --network`
Then STDOUT should be:
"""
{ALL_TABLES_STDOUT}
"""
When I run `wp --require=table_names.php get_table_names '*_posts'`
Then STDOUT should be:
"""
wp_posts
"""
When I run `wp --require=table_names.php get_table_names '*_posts' --network`
Then STDOUT should be:
"""
wp_2_posts
wp_posts
"""
When I run `wp --require=table_names.php get_table_names 'wp_post*'`
Then STDOUT should be:
"""
wp_postmeta
wp_posts
"""
When I run `wp --require=table_names.php get_table_names 'wp_post*' --network`
Then STDOUT should be:
"""
wp_postmeta
wp_posts
"""
When I run `wp --require=table_names.php get_table_names 'wp*osts'`
Then STDOUT should be:
"""
wp_posts
"""
When I run `wp --require=table_names.php get_table_names 'wp*osts' --network`
Then STDOUT should be:
"""
wp_2_posts
wp_posts
"""
When I run `wp --require=table_names.php get_table_names '*_posts' --scope=blog`
Then STDOUT should be:
"""
wp_posts
"""
When I run `wp --require=table_names.php get_table_names '*_posts' --scope=blog --network`
Then STDOUT should be:
"""
wp_2_posts
wp_posts
"""
When I try `wp --require=table_names.php get_table_names '*_posts' --scope=global`
Then STDERR should be:
"""
Error: Couldn't find any tables matching: *_posts
"""
And STDOUT should be empty
# Note: BC change 1.5.0, network does not override scope.
When I try `wp --require=table_names.php get_table_names '*_posts' --scope=global --network`
Then STDERR should be:
"""
Error: Couldn't find any tables matching: *_posts
"""
And STDOUT should be empty
When I run `wp --require=table_names.php get_table_names '*_posts' --all-tables-with-prefix`
Then STDOUT should be:
"""
wp_2_posts
wp_2_xx_posts
wp_posts
wp_xx_posts
"""
When I run `wp --require=table_names.php get_table_names 'wp_post*' --all-tables-with-prefix`
Then STDOUT should be:
"""
wp_postmeta
wp_posts
wp_posts_xx
"""
When I run `wp --require=table_names.php get_table_names 'wp*osts' --all-tables-with-prefix`
Then STDOUT should be:
"""
wp_2_posts
wp_2_xx_posts
wp_posts
wp_xx_posts
"""
When I run `wp --require=table_names.php get_table_names '*_posts' --all-tables`
Then STDOUT should be:
"""
wp_2_posts
wp_2_xx_posts
wp_posts
wp_xx_posts
xx_wp_2_posts
xx_wp_posts
"""
When I run `wp --require=table_names.php get_table_names '*wp_posts' --all-tables`
Then STDOUT should be:
"""
wp_posts
xx_wp_posts
"""
When I run `wp --require=table_names.php get_table_names 'wp_post*' --all-tables`
Then STDOUT should be:
"""
wp_postmeta
wp_posts
wp_posts_xx
"""
When I run `wp --require=table_names.php get_table_names 'wp*osts' --all-tables`
Then STDOUT should be:
"""
wp_2_posts
wp_2_xx_posts
wp_posts
wp_xx_posts
"""
When I try `wp --require=table_names.php get_table_names non_existent_table`
Then STDERR should be:
"""
Error: Couldn't find any tables matching: non_existent_table
"""
And STDOUT should be empty
When I run `wp --require=table_names.php get_table_names wp_posts non_existent_table`
Then STDOUT should be:
"""
wp_posts
"""
When I run `wp --require=table_names.php get_table_names wp_posts non_existent_table 'wp_?ption*'`
Then STDOUT should be:
"""
wp_options
wp_posts
"""
When I run `wp --require=table_names.php get_table_names wp_posts non_existent_table 'wp_*ption?'`
Then STDOUT should be:
"""
wp_options
wp_posts
"""
When I run `wp --require=table_names.php get_table_names wp_posts non_existent_table 'wp_*ption?' --network`
Then STDOUT should be:
"""
wp_2_options
wp_options
wp_posts
"""
@less-than-wp-6.1
Scenario: Get WP table names for multisite install (site_categories only)
Given a WP multisite install
And I run `wp db query "CREATE TABLE xx_wp_posts ( id int );"`
And I run `wp db query "CREATE TABLE xx_wp_2_posts ( id int );"`
And I run `wp db query "CREATE TABLE wp_xx_posts ( id int );"`
And I run `wp db query "CREATE TABLE wp_2_xx_posts ( id int );"`
And I run `wp db query "CREATE TABLE wp_posts_xx ( id int );"`
And I run `wp db query "CREATE TABLE wp_2_posts_xx ( id int );"`
And I run `wp db query "CREATE TABLE wp_categories ( id int );"`
And I run `wp db query "CREATE TABLE wp_sitecategories ( id int );"`
And a table_names.php file:
"""
<?php
/**
* Test WP get table names.
*
* ## OPTIONS
*
* [<table>...]
* : List tables based on wildcard search, e.g. 'wp_*_options' or 'wp_post?'.
*
* [--scope=<scope>]
* : Can be all, global, ms_global, blog, or old tables. Defaults to all.
*
* [--network]
* : List all the tables in a multisite installation. Overrides --scope=<scope>.
*
* [--all-tables-with-prefix]
* : List all tables that match the table prefix even if not registered on $wpdb. Overrides --network.
*
* [--all-tables]
* : List all tables in the database, regardless of the prefix, and even if not registered on $wpdb. Overrides --all-tables-with-prefix.
*/
function test_wp_get_table_names( $args, $assoc_args ) {
if ( $tables = WP_CLI\Utils\wp_get_table_names( $args, $assoc_args ) ) {
echo implode( PHP_EOL, $tables ) . PHP_EOL;
}
}
WP_CLI::add_command( 'get_table_names', 'test_wp_get_table_names' );
"""
And an enable_sitecategories.php file:
"""
<?php
WP_CLI::add_hook( 'after_wp_load', function () {
add_filter( 'global_terms_enabled', '__return_true' );
} );
"""
When I run `wp --require=table_names.php --require=enable_sitecategories.php get_table_names`
# Leave out wp_blog_versions as it was never used and is removed with WP 5.3+.
# Leave out wp_blogmeta for old WP compat.
Then STDOUT should contain:
"""
wp_blogs
wp_commentmeta
wp_comments
wp_links
wp_options
wp_postmeta
wp_posts
wp_registration_log
wp_signups
wp_site
wp_sitecategories
wp_sitemeta
wp_term_relationships
wp_term_taxonomy
"""
# Leave out wp_termmeta for old WP compat.
And STDOUT should contain:
"""
wp_terms
wp_usermeta
wp_users
"""