-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathcore-download.feature
More file actions
486 lines (420 loc) · 15 KB
/
core-download.feature
File metadata and controls
486 lines (420 loc) · 15 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
Feature: Download WordPress
Scenario: Empty dir
Given an empty directory
And an empty cache
When I try `wp core is-installed`
Then the return code should be 1
And STDERR should contain:
"""
Error: This does not seem to be a WordPress install
"""
And STDOUT should be empty
When I run `wp core download`
And save STDOUT 'Downloading WordPress ([\d\.]+)' as {VERSION}
Then the wp-settings.php file should exist
And the {SUITE_CACHE_DIR}/core/wordpress-{VERSION}-en_US.tar.gz file should exist
When I run `mkdir inner`
And I run `cd inner && wp core download`
Then the inner/wp-settings.php file should exist
When I try `wp core download --path=inner`
Then STDERR should be:
"""
Error: WordPress files seem to already be present here.
"""
And the return code should be 1
When I try `WP_CLI_STRICT_ARGS_MODE=1 wp core download --path=inner`
Then STDERR should be:
"""
Error: WordPress files seem to already be present here.
"""
And the return code should be 1
# test core tarball cache
When I run `wp core download --force`
Then the wp-settings.php file should exist
And STDOUT should contain:
"""
Using cached file '{SUITE_CACHE_DIR}/core/wordpress-{VERSION}-en_US.tar.gz'...
"""
Scenario: Localized install
Given an empty directory
And an empty cache
When I run `wp core download --version=4.4.2 --locale=de_DE`
And save STDOUT 'Downloading WordPress ([\d\.]+)' as {VERSION}
Then the wp-settings.php file should exist
And the {SUITE_CACHE_DIR}/core/wordpress-{VERSION}-de_DE.tar.gz file should exist
Scenario: Catch download of non-existent WP version
Given an empty directory
When I try `wp core download --version=1.0.3 --force`
Then STDERR should contain:
"""
Error: Release not found.
"""
And the return code should be 1
Scenario: Core download from a URL
Given an empty directory
And an empty cache
When I run `wp core download https://wordpress.org/wordpress-4.9.12.zip`
Then the wp-settings.php file should exist
And the {SUITE_CACHE_DIR}/core directory should not exist
And STDOUT should contain:
"""
Downloading from https://wordpress.org/wordpress-4.9.12.zip ...
md5 hash verified: 702c94bc3aa8a37091f9fb075d57d847
Success: WordPress downloaded.
"""
Scenario: Verify release hash when downloading new version
Given an empty directory
And an empty cache
When I run `wp core download --version=4.4.1`
Then STDOUT should contain:
"""
md5 hash verified: 1907d1dbdac7a009d89224a516496b8d
Success: WordPress downloaded.
"""
Scenario: Core download to a directory specified by `--path` in custom command
Given a WP install
And a download-command.php file:
"""
<?php
class Download_Command extends WP_CLI_Command {
public function __invoke() {
WP_CLI::run_command( array( 'core', 'download' ), array( 'path' => 'src/' ) );
}
}
WP_CLI::add_command( 'custom-download', 'Download_Command' );
"""
When I run `wp --require=download-command.php custom-download`
Then STDOUT should not be empty
And the src directory should contain:
"""
wp-load.php
"""
When I try `wp --require=download-command.php custom-download`
Then STDERR should be:
"""
Error: WordPress files seem to already be present here.
"""
And the return code should be 1
Scenario: Make sure files are cleaned up
Given an empty directory
When I run `wp core download --version=4.4`
Then the wp-includes/rest-api.php file should exist
And the wp-includes/class-wp-comment.php file should exist
And STDERR should not contain:
"""
Warning: Failed to find WordPress version. Please cleanup files manually.
"""
When I run `wp core download --version=4.3.2 --force`
Then the wp-includes/rest-api.php file should not exist
And the wp-includes/class-wp-comment.php file should not exist
And STDOUT should not contain:
"""
File removed: wp-content
"""
Scenario: Installing nightly
Given an empty directory
And an empty cache
When I try `wp core download --version=nightly`
Then the wp-settings.php file should exist
And the {SUITE_CACHE_DIR}/core/wordpress-nightly-en_US.zip file should not exist
And STDOUT should contain:
"""
Downloading WordPress nightly (en_US)...
"""
And STDERR should contain:
"""
Warning: md5 hash checks are not available for nightly downloads.
"""
And STDOUT should contain:
"""
Success: WordPress downloaded.
"""
And the return code should be 0
# we shouldn't cache nightly builds
When I try `wp core download --version=nightly --force`
Then the wp-settings.php file should exist
And STDOUT should not contain:
"""
Using cached file '{SUITE_CACHE_DIR}/core/wordpress-nightly-en_US.zip'...
"""
And STDERR should contain:
"""
Warning: md5 hash checks are not available for nightly downloads.
"""
And STDOUT should contain:
"""
Success: WordPress downloaded.
"""
And the return code should be 0
Scenario: Installing nightly over an existing install
Given an empty directory
And an empty cache
When I run `wp core download --version=4.5.3`
Then the wp-settings.php file should exist
When I try `wp core download --version=nightly --force`
Then STDERR should not contain:
"""
Failed to find WordPress version
"""
And STDERR should not contain:
"""
Warning: Checksums not available for WordPress nightly/en_US. Please cleanup files manually.
"""
And STDOUT should contain:
"""
Success: WordPress downloaded.
"""
And the return code should be 0
Scenario: Installing a version over nightly
Given an empty directory
And an empty cache
When I try `wp core download --version=nightly`
Then the wp-settings.php file should exist
And STDERR should not contain:
"""
Warning: Failed to find WordPress version. Please cleanup files manually.
"""
And STDOUT should contain:
"""
Success: WordPress downloaded.
"""
And the return code should be 0
When I run `wp core download --version=4.3.2 --force`
Then the wp-includes/rest-api.php file should not exist
And the wp-includes/class-wp-comment.php file should not exist
And STDOUT should not contain:
"""
File removed: wp-content
"""
Scenario: Trunk is an alias for nightly
Given an empty directory
And an empty cache
When I try `wp core download --version=trunk`
Then the wp-settings.php file should exist
And STDOUT should contain:
"""
Downloading WordPress nightly (en_US)...
"""
And STDERR should contain:
"""
Warning: md5 hash checks are not available for nightly downloads.
"""
And STDOUT should contain:
"""
Success: WordPress downloaded.
"""
And the return code should be 0
Scenario: Installing nightly for a non-default locale
Given an empty directory
And an empty cache
When I try `wp core download --version=nightly --locale=de_DE`
Then the return code should be 1
And STDERR should contain:
"""
Error: Nightly builds are only available for the en_US locale.
"""
Scenario: Installing a release candidate or beta version
Given an empty directory
And an empty cache
# Test with incorrect case.
When I try `wp core download --version=4.6-rc2`
Then the return code should be 1
And STDERR should contain:
"""
Error: Release not found.
"""
When I run `wp core download --version=4.6-RC2`
Then the wp-settings.php file should exist
And STDOUT should contain:
"""
Downloading WordPress 4.6-RC2 (en_US)...
md5 hash verified: 90c93a15092b2d5d4c960ec1fc183e07
Success: WordPress downloaded.
"""
Scenario: Using --version=latest should produce a cache key of the version number, not 'latest'
Given an empty directory
And an empty cache
When I run `wp core download --version=latest`
Then STDOUT should contain:
"""
Success: WordPress downloaded.
"""
When I run `wp core version`
Then save STDOUT as {VERSION}
And the {SUITE_CACHE_DIR}/core/wordpress-latest-en_US.tar.gz file should not exist
And the {SUITE_CACHE_DIR}/core/wordpress-{VERSION}-en_US.tar.gz file should exist
Scenario: Fail if path can't be created
Given an empty directory
And a non-directory-path file:
"""
"""
When I try `wp core download --path=non-directory-path`
Then STDERR should contain:
"""
Failed to create directory
"""
And STDERR should contain:
"""
/non-directory-path/
"""
And the return code should be 1
When I try `WP_CLI_STRICT_ARGS_MODE=1 wp core download --path=non-directory-path`
Then STDERR should contain:
"""
Failed to create directory
"""
And STDERR should contain:
"""
non-directory-path/
"""
And the return code should be 1
When I try `WP_CLI_STRICT_ARGS_MODE=1 wp core download --path=non-directory-path\\`
Then STDERR should contain:
"""
Failed to create directory
"""
And STDERR should contain:
"""
non-directory-path/
"""
And the return code should be 1
When I try `wp core download --path=/root-level-directory`
Then STDERR should contain:
"""
Insufficient permission to create directory
"""
And STDERR should contain:
"""
/root-level-directory/
"""
And the return code should be 1
When I try `WP_CLI_STRICT_ARGS_MODE=1 wp core download --path=/root-level-directory`
Then STDERR should contain:
"""
Insufficient permission to create directory
"""
And STDERR should contain:
"""
/root-level-directory/
"""
And the return code should be 1
Scenario: Core download without the full wp-content/plugins dir
Given an empty directory
When I run `wp core download --skip-content`
Then STDOUT should contain:
"""
Success: WordPress downloaded.
"""
And the wp-includes directory should exist
And the wp-content/plugins directory should exist
And the wp-content/plugins directory should be:
"""
index.php
"""
And the wp-includes/js/tinymce/plugins directory should exist
Scenario: Core download without the full wp-content/themes dir
Given an empty directory
When I run `wp core download --skip-content`
Then STDOUT should contain:
"""
Success: WordPress downloaded.
"""
And the wp-includes directory should exist
And the wp-content/themes directory should exist
And the wp-content/themes directory should be:
"""
index.php
"""
And the wp-includes/js/tinymce/themes directory should exist
Scenario: Core download without the full wp-content/plugins dir should work non US locale
Given an empty directory
When I run `wp core download --skip-content --version=4.9.11 --locale=nl_NL`
Then STDOUT should contain:
"""
Success: WordPress downloaded.
"""
And the wp-includes directory should exist
And the wp-content/plugins directory should exist
And the wp-content/plugins directory should be:
"""
index.php
"""
And the wp-includes/js/tinymce/plugins directory should exist
Scenario: Core download without the full wp-content/themes dir should work non US locale
Given an empty directory
When I run `wp core download --skip-content --version=4.9.11 --locale=nl_NL`
Then STDOUT should contain:
"""
Success: WordPress downloaded.
"""
And the wp-includes directory should exist
And the wp-content/themes directory should exist
And the wp-content/themes directory should be:
"""
index.php
"""
And the wp-includes/js/tinymce/themes directory should exist
Scenario: Core download without the full wp-content/plugins dir should work if a version is set
Given an empty directory
When I try `wp core download --skip-content --version=4.7`
Then STDOUT should contain:
"""
Success: WordPress downloaded.
"""
And the wp-includes directory should exist
And the wp-content/plugins directory should exist
And the wp-content/plugins directory should be:
"""
index.php
"""
And the wp-content/themes directory should exist
And the wp-content/themes directory should be:
"""
index.php
"""
And the wp-includes/js/tinymce/themes directory should exist
And the wp-includes/js/tinymce/plugins directory should exist
Scenario: Core download without extract parameter should unzip the download file
Given an empty directory
When I run `wp core download --version=4.5 --locale=de_DE`
Then the wp-content directory should exist
And the wordpress-4.5-de_DE.tar.gz file should not exist
Scenario: Core download with extract parameter should unzip the download file
Given an empty directory
When I run `wp core download --version=4.5 --locale=de_DE --extract`
Then the wp-content directory should exist
And the wordpress-4.5-de_DE.tar.gz file should not exist
Scenario: Core download with extract parameter should unzip the download file (already cached)
Given an empty directory
When I run `wp core download --version=4.5 --locale=de_DE --extract`
And I run `rm -rf *`
And I run `wp core download --version=4.5 --locale=de_DE --extract`
Then the wp-content directory should exist
And the wordpress-4.5-de_DE.tar.gz file should not exist
Scenario: Core download with no-extract should not unzip the download file
Given an empty directory
When I run `wp core download --version=4.5 --locale=de_DE --no-extract`
Then the wp-content directory should not exist
And the wordpress-4.5-de_DE.tar.gz file should exist
Scenario: Core download with no-extract should not unzip the download file (already cached)
Given an empty directory
When I run `wp core download --version=4.5 --locale=de_DE --no-extract`
And I run `rm -rf wordpress-4.5-de_DE.tar.gz`
And I run `wp core download --version=4.5 --locale=de_DE --no-extract`
Then the wp-content directory should not exist
And the wordpress-4.5-de_DE.tar.gz file should exist
Scenario: Error when using both --skip-content and --no-extract
Given an empty directory
When I try `wp core download --skip-content --no-extract`
Then STDERR should contain:
"""
Error: Cannot use both --skip-content and --no-extract at the same time.
"""
And the return code should be 1
Scenario: Allow installing major version with trailing zero
Given an empty directory
When I run `wp core download --version=6.7.0`
Then STDOUT should contain:
"""
Success:
"""