-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage-update.feature
More file actions
215 lines (179 loc) · 6.41 KB
/
package-update.feature
File metadata and controls
215 lines (179 loc) · 6.41 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
Feature: Update WP-CLI packages
Background:
When I run `wp package path`
Then save STDOUT as {PACKAGE_PATH}
Scenario: Updating WP-CLI packages runs successfully
Given an empty directory
When I run `wp package install danielbachhuber/wp-cli-reset-post-date-command`
Then STDOUT should contain:
"""
Success: Package installed.
"""
And STDERR should be empty
When I run `wp package update`
Then STDOUT should contain:
"""
Using Composer to update packages...
"""
And STDOUT should contain:
"""
Packages updated.
"""
And STDERR should be empty
Scenario: Update a package with an update available
Given an empty directory
When I run `wp package install wp-cli-test/updateable-package:v1.0.0`
Then STDOUT should contain:
"""
Installing package wp-cli-test/updateable-package (v1.0.0)
"""
And STDOUT should contain:
"""
Success: Package installed.
"""
When I run `cat {PACKAGE_PATH}/composer.json`
Then STDOUT should contain:
"""
"wp-cli-test/updateable-package": "v1.0.0"
"""
When I run `wp help updateable-package v1`
Then STDOUT should contain:
"""
wp updateable-package v1
"""
When I run `wp package update`
Then STDOUT should match /Nothing to install(?: or update|, update or remove)/
And STDOUT should contain:
"""
Success: Packages updated.
"""
When I run `wp package list --fields=name,update`
Then STDOUT should be a table containing rows:
| name | update |
| wp-cli-test/updateable-package | available |
When I run `wp eval "file_put_contents( '{PACKAGE_PATH}composer.json', str_replace( 'v1.0.0', '>=1.0.0', file_get_contents( '{PACKAGE_PATH}composer.json' ) ) );" --skip-wordpress`
Then the return code should be 0
When I run `cat {PACKAGE_PATH}/composer.json`
Then STDOUT should contain:
"""
"wp-cli-test/updateable-package": ">=1.0.0"
"""
When I run `wp package list --fields=name,update`
Then STDOUT should be a table containing rows:
| name | update |
| wp-cli-test/updateable-package | available |
When I run `wp package update`
Then STDOUT should contain:
"""
Writing lock file
"""
And STDOUT should contain:
"""
Success: Packages updated.
"""
And STDOUT should not match /Nothing to install(?: or update|, update or remove)/
When I run `wp package list --fields=name,update`
Then STDOUT should be a table containing rows:
| name | update |
| wp-cli-test/updateable-package | none |
When I run `wp package update`
Then STDOUT should match /Nothing to install(?: or update|, update or remove)/
And STDOUT should contain:
"""
Success: Packages updated.
"""
Scenario: Update a specific package by name
Given an empty directory
When I run `wp package install wp-cli-test/updateable-package:v1.0.0`
Then STDOUT should contain:
"""
Success: Package installed.
"""
When I run `wp package install danielbachhuber/wp-cli-reset-post-date-command`
Then STDOUT should contain:
"""
Success: Package installed.
"""
When I run `wp eval "file_put_contents( '{PACKAGE_PATH}composer.json', str_replace( 'v1.0.0', '>=1.0.0', file_get_contents( '{PACKAGE_PATH}composer.json' ) ) );" --skip-wordpress`
Then the return code should be 0
When I run `wp package update wp-cli-test/updateable-package`
Then STDOUT should contain:
"""
Using Composer to update packages...
"""
And STDOUT should contain:
"""
Success: Package updated successfully.
"""
When I run `wp package list --fields=name,update`
Then STDOUT should be a table containing rows:
| name | update |
| wp-cli-test/updateable-package | none |
Scenario: Update multiple specific packages by name
Given an empty directory
When I run `wp package install wp-cli-test/updateable-package:v1.0.0`
Then STDOUT should contain:
"""
Success: Package installed.
"""
When I run `wp package install danielbachhuber/wp-cli-reset-post-date-command`
Then STDOUT should contain:
"""
Success: Package installed.
"""
When I run `wp eval "file_put_contents( '{PACKAGE_PATH}composer.json', str_replace( 'v1.0.0', '>=1.0.0', file_get_contents( '{PACKAGE_PATH}composer.json' ) ) );" --skip-wordpress`
Then the return code should be 0
When I run `wp package update wp-cli-test/updateable-package danielbachhuber/wp-cli-reset-post-date-command`
Then STDOUT should contain:
"""
Using Composer to update packages...
"""
And STDOUT should contain:
"""
Success: Updated 1 of 2 packages.
"""
Scenario: Update package that is already up to date
Given an empty directory
When I run `wp package install danielbachhuber/wp-cli-reset-post-date-command`
Then STDOUT should contain:
"""
Success: Package installed.
"""
When I run `wp package update danielbachhuber/wp-cli-reset-post-date-command`
Then STDOUT should contain:
"""
Using Composer to update packages...
"""
And STDOUT should contain:
"""
Success: Package already at latest version.
"""
Scenario: Error when trying to update a non-existent package
Given an empty directory
When I run `wp package install danielbachhuber/wp-cli-reset-post-date-command`
Then STDOUT should contain:
"""
Success: Package installed.
"""
When I try `wp package update non-existent/package`
Then STDERR should contain:
"""
Error: Package 'non-existent/package' is not installed.
"""
And the return code should be 1
@github-api
Scenario: Update packages with --no-interaction completes without prompting
Given an empty directory
# Install a real package
When I run `wp package install danielbachhuber/wp-cli-reset-post-date-command`
Then STDOUT should contain:
"""
Success: Package installed.
"""
# Update with --no-interaction should complete without hanging
When I run `wp package update --no-interaction`
Then STDOUT should contain:
"""
Packages updated.
"""
And STDERR should be empty