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