-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy paththeme-auto-updates-disable.feature
More file actions
87 lines (78 loc) · 2.82 KB
/
theme-auto-updates-disable.feature
File metadata and controls
87 lines (78 loc) · 2.82 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
Feature: Disable auto-updates for WordPress themes
Background:
Given a WP install
And I run `wp theme delete --all --force`
And I run `wp theme install twentysixteen`
And I run `wp theme install twentyseventeen`
And I run `wp theme install twentynineteen`
And I try `wp theme auto-updates enable --all`
@require-wp-5.5
Scenario: Show an error if required params are missing
When I try `wp theme auto-updates disable`
Then STDOUT should be empty
And STDERR should contain:
"""
Error: Please specify one or more themes, or use --all.
"""
@require-wp-5.5
Scenario: Disable auto-updates for a single theme
When I run `wp theme auto-updates disable twentysixteen`
Then STDOUT should be:
"""
Success: Disabled 1 of 1 theme auto-updates.
"""
And the return code should be 0
@require-wp-5.5
Scenario: Disable auto-updates for multiple themes
When I run `wp theme auto-updates disable twentysixteen twentyseventeen`
Then STDOUT should be:
"""
Success: Disabled 2 of 2 theme auto-updates.
"""
And the return code should be 0
@require-wp-5.5
Scenario: Disable auto-updates for all themes
When I run `wp theme auto-updates disable --all`
Then STDOUT should be:
"""
Success: Disabled 3 of 3 theme auto-updates.
"""
And the return code should be 0
@require-wp-5.5
Scenario: Disable auto-updates for already disabled themes
When I run `wp theme auto-updates disable twentysixteen`
And I try `wp theme auto-updates disable --all`
Then STDERR should contain:
"""
Warning: Auto-updates already disabled for theme twentysixteen.
"""
And STDERR should contain:
"""
Error: Only disabled 2 of 3 theme auto-updates.
"""
@require-wp-5.5
Scenario: Filter when enabling auto-updates for already disabled themes
When I run `wp theme auto-updates disable twentysixteen`
And I run `wp theme auto-updates disable --all --enabled-only`
Then STDOUT should be:
"""
Success: Disabled 2 of 2 theme auto-updates.
"""
And the return code should be 0
@require-wp-5.5
Scenario: Filter when enabling auto-updates for already disabled selection of themes
When I run `wp theme auto-updates disable twentysixteen`
And I run `wp theme auto-updates disable twentysixteen twentyseventeen --enabled-only`
Then STDOUT should be:
"""
Success: Disabled 1 of 1 theme auto-updates.
"""
And the return code should be 0
@require-wp-5.5
Scenario: Filtering everything away produces an error
When I run `wp theme auto-updates disable twentysixteen`
And I try `wp theme auto-updates disable twentysixteen --enabled-only`
Then STDERR should be:
"""
Error: No themes provided to disable auto-updates for.
"""