-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathterm-recount.feature
More file actions
62 lines (54 loc) · 1.77 KB
/
term-recount.feature
File metadata and controls
62 lines (54 loc) · 1.77 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
Feature: Recount terms on a taxonomy
Background:
Given a WP install
Scenario: Term recount with an invalid taxonomy
When I try `wp term recount some-fake-taxonomy`
Then STDERR should be:
"""
Warning: Taxonomy some-fake-taxonomy does not exist.
"""
And the return code should be 0
Scenario: Term recount with a valid taxonomy
When I run `wp term recount category`
Then STDOUT should be:
"""
Success: Updated category term count.
"""
Scenario: Term recount with a multiple taxonomies
When I run `wp term recount category post_tag`
Then STDOUT should be:
"""
Success: Updated category term count.
Success: Updated post_tag term count.
"""
Scenario: Fixes an invalid term count for a taxonomy
When I run `wp term create category "Term Recount Category" --porcelain`
Then STDOUT should be a number
And save STDOUT as {TERM_ID}
When I run `wp post create --post_title='Term Recount Test' --post_status=publish --post_category={TERM_ID} --porcelain`
Then STDOUT should be a number
And save STDOUT as {POST_ID}
When I run `wp term get category {TERM_ID} --field=count`
Then STDOUT should be:
"""
1
"""
Given a recount-terms.php file:
"""
<?php
global $wpdb;
$wpdb->update( $wpdb->term_taxonomy, array( "count" => 3 ), array( "term_id" => {TERM_ID} ) );
clean_term_cache( {TERM_ID}, "category" );
"""
When I run `wp eval-file recount-terms.php`
And I run `wp term get category {TERM_ID} --field=count`
Then STDOUT should be:
"""
3
"""
When I run `wp term recount category`
And I run `wp term get category {TERM_ID} --field=count`
Then STDOUT should be:
"""
1
"""