-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathmedia-import.feature
More file actions
431 lines (366 loc) · 14.5 KB
/
media-import.feature
File metadata and controls
431 lines (366 loc) · 14.5 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
Feature: Manage WordPress attachments
Background:
Given a WP install
Scenario: Import media from remote URL
When I run `wp media import 'http://wp-cli.org/behat-data/codeispoetry.png' --post_id=1`
Then STDOUT should contain:
"""
Imported file 'http://wp-cli.org/behat-data/codeispoetry.png'
"""
And STDOUT should contain:
"""
Success: Imported 1 of 1 items.
"""
Scenario: Import media from remote URL with query string
When I run `wp media import 'https://dummyimage.com/350x150.jpg?text=Foo'`
Then STDOUT should contain:
"""
Imported file 'https://dummyimage.com/350x150.jpg?text=Foo' as attachment ID
"""
And STDOUT should contain:
"""
Success: Imported 1 of 1 items.
"""
Scenario: Import media from remote URL and use input file as attachment name
When I run `wp media import 'http://wp-cli.org/behat-data/codeispoetry.png' --file_name=abc`
Then STDOUT should contain:
"""
file name abc.png
"""
And STDOUT should contain:
"""
Success: Imported 1 of 1 items.
"""
Scenario: Fail to import missing image
When I try `wp media import gobbledygook.png`
Then STDERR should be:
"""
Warning: Unable to import file 'gobbledygook.png'. Reason: File doesn't exist.
Error: No items imported.
"""
And the return code should be 1
Scenario: Fail to import missing item on Windows
When I try `wp media import c:/path/gobbledygook.png`
Then STDERR should be:
"""
Warning: Unable to import file 'c:/path/gobbledygook.png'. Reason: File doesn't exist.
Error: No items imported.
"""
And the return code should be 1
Scenario: Import a file as attachment from a local image
Given download:
| path | url |
| {CACHE_DIR}/large-image.jpg | http://wp-cli.org/behat-data/large-image.jpg |
When I run `wp media import {CACHE_DIR}/large-image.jpg --post_id=1 --featured_image`
Then STDOUT should contain:
"""
Imported file
"""
And STDOUT should contain:
"""
and attached to post 1 as featured image
"""
And the {CACHE_DIR}/large-image.jpg file should exist
And the return code should be 0
Scenario: Import a file as attachment from a local image and preserve the file modified time.
Given download:
| path | url |
| {CACHE_DIR}/large-image.jpg | http://wp-cli.org/behat-data/large-image.jpg |
And I run `TZ=UTC touch -t 8001031305 {CACHE_DIR}/large-image.jpg`
And I run `wp option update gmt_offset -5`
When I run `wp media import {CACHE_DIR}/large-image.jpg --post_id=1 --preserve-filetime --porcelain`
Then save STDOUT as {ATTACH_ID}
When I run `wp post get {ATTACH_ID} --field=post_date`
Then STDOUT should be:
"""
1980-01-03 08:05:00
"""
When I run `wp post get {ATTACH_ID} --field=post_date_gmt`
Then STDOUT should be:
"""
1980-01-03 13:05:00
"""
Scenario: Import a file as an attachment but porcelain style
Given download:
| path | url |
| {CACHE_DIR}/large-image.jpg | http://wp-cli.org/behat-data/large-image.jpg |
When I run `wp media import {CACHE_DIR}/large-image.jpg --title="My imported attachment" --caption="My fabulous caption" --post_name="My post name" --porcelain`
Then save STDOUT as {ATTACHMENT_ID}
When I run `wp post get {ATTACHMENT_ID} --field=title`
Then STDOUT should be:
"""
My imported attachment
"""
When I run `wp post get {ATTACHMENT_ID} --field=excerpt`
Then STDOUT should be:
"""
My fabulous caption
"""
When I run `wp post get {ATTACHMENT_ID} --field=post_name`
Then STDOUT should be:
"""
my-post-name
"""
Scenario: Import a file as attachment from a local image and leave it in it's current location
Given download:
| path | url |
| {CACHE_DIR}/large-image.jpg | http://wp-cli.org/behat-data/large-image.jpg |
And I run `wp option update uploads_use_yearmonth_folders 0`
When I run `wp media import {CACHE_DIR}/large-image.jpg --skip-copy`
Then STDOUT should contain:
"""
Imported file
"""
And STDOUT should contain:
"""
Success: Imported 1 of 1 items.
"""
And the {CACHE_DIR}/large-image.jpg file should exist
And the wp-content/uploads/large-image.jpg file should not exist
And the return code should be 0
Scenario: Import a file and use its filename as the title
Given download:
| path | url |
| {CACHE_DIR}/large-image.jpg | http://wp-cli.org/behat-data/large-image.jpg |
When I run `wp media import {CACHE_DIR}/large-image.jpg --porcelain`
Then save STDOUT as {ATTACHMENT_ID}
When I run `wp post get {ATTACHMENT_ID} --field=title`
Then STDOUT should be:
"""
large-image
"""
Scenario: Import a file and persist its original metadata
Given download:
| path | url |
| {CACHE_DIR}/canola.jpg | http://wp-cli.org/behat-data/canola.jpg |
When I run `wp media import {CACHE_DIR}/canola.jpg --porcelain`
Then save STDOUT as {ATTACHMENT_ID}
When I run `wp post get {ATTACHMENT_ID} --field=title`
Then STDOUT should be:
"""
A field of amazing canola
"""
When I run `wp post get {ATTACHMENT_ID} --field=excerpt`
Then STDOUT should be:
"""
The description for the image
"""
Scenario: Make sure WordPress receives the slashed data it expects
When I run `wp media import 'http://wp-cli.org/behat-data/codeispoetry.png' --post_id=1 --title='My\Title' --caption='Caption\Here' --alt='Alt\Here' --desc='Desc\Here' --porcelain`
Then save STDOUT as {ATTACHMENT_ID}
When I run `wp post get {ATTACHMENT_ID} --format=csv --fields=post_title,post_excerpt,post_content`
Then STDOUT should contain:
"""
post_title,"My\Title"
"""
And STDOUT should contain:
"""
post_excerpt,"Caption\Here"
"""
And STDOUT should contain:
"""
post_content,"Desc\Here"
"""
When I run `wp post meta get {ATTACHMENT_ID} _wp_attachment_image_alt`
Then STDOUT should be:
"""
Alt\Here
"""
Scenario: Import multiple images
Given download:
| path | url |
| {CACHE_DIR}/large-image.jpg | http://wp-cli.org/behat-data/large-image.jpg |
When I run `wp media import 'http://wp-cli.org/behat-data/codeispoetry.png' {CACHE_DIR}/large-image.jpg`
Then STDOUT should contain:
"""
Success: Imported 2 of 2 items.
"""
Scenario: Fail to import one image but continue trying the next
When I try `wp media import gobbledygook.png 'http://wp-cli.org/behat-data/codeispoetry.png'`
Then STDERR should contain:
"""
Error: Only imported 1 of 2 items.
"""
And the return code should be 1
Scenario: Fail when download_url() fails
When I try `wp media import 'http://wp-cli.org/404'`
Then STDERR should be:
"""
Warning: Unable to import file 'http://wp-cli.org/404'. Reason: Not Found
Error: No items imported.
"""
And the return code should be 1
Scenario: Return a non-zero exit code when encountering an error in --porcelain mode
When I try `wp media import gobbledygook.png --porcelain`
Then STDERR should contain:
"""
Warning: Unable to import file 'gobbledygook.png'. Reason: File doesn't exist.
"""
And the return code should be 1
Scenario: Return upload URL after importing a single valid file
Given download:
| path | url |
| {CACHE_DIR}/large-image.jpg | http://wp-cli.org/behat-data/large-image.jpg |
When I run `wp media import {CACHE_DIR}/large-image.jpg --porcelain=url`
Then STDOUT should contain:
"""
https://example.com/wp-content/uploads/
"""
And STDOUT should contain:
"""
/large-image.jpg
"""
Scenario: Return upload URL after importing a multiple valid files
Given download:
| path | url |
| {CACHE_DIR}/large-image.jpg | http://wp-cli.org/behat-data/large-image.jpg |
| {CACHE_DIR}/audio-with-no-cover.mp3 | http://wp-cli.org/behat-data/audio-with-no-cover.mp3 |
When I run `wp media import 'http://wp-cli.org/behat-data/codeispoetry.png' {CACHE_DIR}/large-image.jpg {CACHE_DIR}/audio-with-no-cover.mp3 --porcelain=url`
Then STDOUT should contain:
"""
https://example.com/wp-content/uploads/
"""
And STDOUT should contain:
"""
/large-image.jpg
"""
And STDOUT should contain:
"""
/codeispoetry.png
"""
And STDOUT should contain:
"""
/audio-with-no-cover.mp3
"""
And STDOUT should not contain:
"""
Success:
"""
Scenario: Errors when invalid --porcelain flag is applied.
When I try `wp media import 'http://wp-cli.org/behat-data/codeispoetry.png' --porcelain=invalid`
Then STDERR should be:
"""
Error: Invalid value for <porcelain>: invalid. Expected flag or 'url'.
"""
Scenario: Import media from STDIN
Given download:
| path | url |
| {CACHE_DIR}/codeispoetry.png | http://wp-cli.org/behat-data/codeispoetry.png |
When I run `cat {CACHE_DIR}/codeispoetry.png | wp media import - --title="From STDIN" --porcelain`
Then save STDOUT as {ATTACHMENT_ID}
When I run `wp post get {ATTACHMENT_ID} --field=title`
Then STDOUT should be:
"""
From STDIN
"""
Scenario: Import media from STDIN with file_name
Given download:
| path | url |
| {CACHE_DIR}/codeispoetry.png | http://wp-cli.org/behat-data/codeispoetry.png |
When I run `cat {CACHE_DIR}/codeispoetry.png | wp media import - --file_name=my-image.png --porcelain`
Then save STDOUT as {ATTACHMENT_ID}
When I run `wp post get {ATTACHMENT_ID} --field=post_name`
Then STDOUT should be:
"""
my-image
"""
When I run `wp post meta get {ATTACHMENT_ID} _wp_attached_file`
Then STDOUT should contain:
"""
my-image.png
"""
And STDOUT should not contain:
"""
my-image.png.png
"""
Scenario: Fail to import from STDIN when no input provided
When I try `wp media import - </dev/null`
Then STDERR should contain:
"""
Warning: Unable to import file from STDIN. Reason: No input provided.
"""
And the return code should be 1
Scenario: Upload files into a custom directory, relative to ABSPATH, when --destination-dir flag is applied.
Given download:
| path | url |
| {CACHE_DIR}/large-image.jpg | http://wp-cli.org/behat-data/large-image.jpg |
When I run `wp media import --destination-dir="foo" {CACHE_DIR}/large-image.jpg --porcelain=url`
Then STDOUT should not contain:
"""
https://example.com/wp-content/uploads/
"""
And STDOUT should contain:
"""
https://example.com/foo/large-image.jpg
"""
Scenario: Upload files into a custom directory, not relative to ABSPATH, when --destination-dir flag is applied.
Given download:
| path | url |
| {CACHE_DIR}/large-image.jpg | http://wp-cli.org/behat-data/large-image.jpg |
When I run `wp media import --destination-dir="{RUN_DIR}/foo" {CACHE_DIR}/large-image.jpg --porcelain=url`
Then STDOUT should not contain:
"""
https://example.com/wp-content/uploads/
"""
And STDOUT should contain:
"""
/foo/large-image.jpg
"""
Scenario: Skip importing a local file that was already imported
Given download:
| path | url |
| {CACHE_DIR}/large-image.jpg | http://wp-cli.org/behat-data/large-image.jpg |
When I run `wp media import {CACHE_DIR}/large-image.jpg --porcelain`
Then save STDOUT as {ATTACHMENT_ID}
And STDOUT should not be empty
When I run `wp media import {CACHE_DIR}/large-image.jpg --skip-duplicates`
Then STDOUT should contain:
"""
Skipped importing file
"""
And STDOUT should contain:
"""
already exists as attachment ID {ATTACHMENT_ID}
"""
And STDOUT should contain:
"""
Success: Imported 0 of 1 items (1 skipped).
"""
And the return code should be 0
Scenario: Skip importing a remote file that was already imported
When I run `wp media import 'http://wp-cli.org/behat-data/codeispoetry.png' --porcelain`
Then save STDOUT as {ATTACHMENT_ID}
And STDOUT should not be empty
When I run `wp media import 'http://wp-cli.org/behat-data/codeispoetry.png' --skip-duplicates`
Then STDOUT should contain:
"""
Skipped importing file
"""
And STDOUT should contain:
"""
already exists as attachment ID {ATTACHMENT_ID}
"""
And STDOUT should contain:
"""
Success: Imported 0 of 1 items (1 skipped).
"""
And the return code should be 0
Scenario: Import new file while skipping duplicates from a batch
Given download:
| path | url |
| {CACHE_DIR}/large-image.jpg | http://wp-cli.org/behat-data/large-image.jpg |
When I run `wp media import {CACHE_DIR}/large-image.jpg`
Then STDOUT should contain:
"""
Success: Imported 1 of 1 items.
"""
When I run `wp media import {CACHE_DIR}/large-image.jpg 'http://wp-cli.org/behat-data/codeispoetry.png' --skip-duplicates`
Then STDOUT should contain:
"""
Skipped importing file
"""
And STDOUT should contain:
"""
Success: Imported 1 of 2 items (1 skipped).
"""
And the return code should be 0