-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathtransient.feature
More file actions
649 lines (562 loc) · 17 KB
/
transient.feature
File metadata and controls
649 lines (562 loc) · 17 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
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
Feature: Manage WordPress transient cache
Scenario: Transient CRUD
Given a WP install
When I try `wp transient get foo`
Then STDERR should be:
"""
Warning: Transient with key "foo" is not set.
"""
When I run `wp transient set foo bar`
Then STDOUT should be:
"""
Success: Transient added.
"""
When I run `wp transient get foo`
Then STDOUT should be:
"""
bar
"""
When I run `wp transient delete foo`
Then STDOUT should be:
"""
Success: Transient deleted.
"""
Scenario: Network transient CRUD
Given a WP multisite install
And I run `wp site create --slug=foo`
When I run `wp transient set foo bar --network`
Then STDOUT should be:
"""
Success: Transient added.
"""
When I run `wp --url=example.com/foo transient get foo --network`
Then STDOUT should be:
"""
bar
"""
When I try `wp transient get foo`
Then STDERR should be:
"""
Warning: Transient with key "foo" is not set.
"""
When I run `wp transient delete foo --network`
Then STDOUT should be:
"""
Success: Transient deleted.
"""
@skip-object-cache
Scenario: Deleting all transients on single site
Given a WP install
# We set `WP_DEVELOPMENT_MODE` to stop WordPress from automatically creating
# additional transients which cause some steps to fail when testing.
And I run `wp config set WP_DEVELOPMENT_MODE all`
And I run `wp transient list --format=count`
And save STDOUT as {EXISTING_TRANSIENTS}
And I run `expr {EXISTING_TRANSIENTS} + 2`
And save STDOUT as {EXPECTED_TRANSIENTS}
When I try `wp transient delete`
Then STDERR should be:
"""
Error: Please specify transient key, or use --all or --expired.
"""
When I run `wp transient set foo bar`
And I run `wp transient set foo2 bar2 600`
And I run `wp transient set foo3 bar3 --network`
And I run `wp transient set foo4 bar4 600 --network`
And I run `wp transient delete --all`
Then STDOUT should be:
"""
Success: {EXPECTED_TRANSIENTS} transients deleted from the database.
"""
When I try `wp transient get foo`
Then STDERR should be:
"""
Warning: Transient with key "foo" is not set.
"""
When I try `wp transient get foo2`
Then STDERR should be:
"""
Warning: Transient with key "foo2" is not set.
"""
When I run `wp transient get foo3 --network`
Then STDOUT should be:
"""
bar3
"""
When I run `wp transient get foo4 --network`
Then STDOUT should be:
"""
bar4
"""
When I run `wp transient delete --all --network`
Then STDOUT should be:
"""
Success: 2 transients deleted from the database.
"""
When I try `wp transient get foo3 --network`
Then STDERR should be:
"""
Warning: Transient with key "foo3" is not set.
"""
When I try `wp transient get foo4 --network`
Then STDERR should be:
"""
Warning: Transient with key "foo4" is not set.
"""
@skip-object-cache
Scenario: Deleting expired transients on single site
Given a WP install
And I run `wp transient set foo bar 600`
And I run `wp transient set foo2 bar2 600`
And I run `wp transient set foo3 bar3 600 --network`
And I run `wp transient set foo4 bar4 600 --network`
# Change timeout to be in the past.
And I run `wp option update _transient_timeout_foo 1321009871`
And I run `wp option update _site_transient_timeout_foo3 1321009871`
When I run `wp transient delete --expired`
Then STDOUT should be:
"""
Success: 1 expired transient deleted from the database.
"""
When I try `wp transient get foo`
Then STDERR should be:
"""
Warning: Transient with key "foo" is not set.
"""
When I run `wp transient get foo2`
Then STDOUT should be:
"""
bar2
"""
# Check if option still exists as a get transient call will remove it.
When I run `wp option get _site_transient_foo3`
Then STDOUT should be:
"""
bar3
"""
When I run `wp transient get foo4 --network`
Then STDOUT should be:
"""
bar4
"""
When I run `wp transient delete --expired --network`
Then STDOUT should be:
"""
Success: 1 expired transient deleted from the database.
"""
When I try `wp transient get foo`
Then STDERR should be:
"""
Warning: Transient with key "foo" is not set.
"""
When I run `wp transient get foo2`
Then STDOUT should be:
"""
bar2
"""
When I try `wp transient get foo3 --network`
Then STDERR should be:
"""
Warning: Transient with key "foo3" is not set.
"""
When I run `wp transient get foo4 --network`
Then STDOUT should be:
"""
bar4
"""
@skip-object-cache
Scenario: Deleting all transients on multisite
Given a WP multisite install
# We set `WP_DEVELOPMENT_MODE` to stop WordPress from automatically creating
# additional transients which cause some steps to fail when testing.
And I run `wp config set WP_DEVELOPMENT_MODE all`
And I run `wp site create --slug=foo`
And I run `wp transient list --format=count`
And save STDOUT as {EXISTING_TRANSIENTS}
And I run `expr {EXISTING_TRANSIENTS} + 2`
And save STDOUT as {EXPECTED_TRANSIENTS}
When I try `wp transient delete`
Then STDERR should be:
"""
Error: Please specify transient key, or use --all or --expired.
"""
When I run `wp transient set foo bar`
And I run `wp transient set foo2 bar2 600`
And I run `wp transient set foo3 bar3 --network`
And I run `wp transient set foo4 bar4 600 --network`
And I run `wp --url=example.com/foo transient set foo5 bar5 --network`
And I run `wp --url=example.com/foo transient set foo6 bar6 600 --network`
And I run `wp transient delete --all`
Then STDOUT should be:
"""
Success: {EXPECTED_TRANSIENTS} transients deleted from the database.
"""
When I try `wp transient get foo`
Then STDERR should be:
"""
Warning: Transient with key "foo" is not set.
"""
When I try `wp transient get foo2`
Then STDERR should be:
"""
Warning: Transient with key "foo2" is not set.
"""
When I run `wp transient get foo3 --network`
Then STDOUT should be:
"""
bar3
"""
When I run `wp transient get foo4 --network`
Then STDOUT should be:
"""
bar4
"""
When I run `wp --url=example.com/foo transient get foo5 --network`
Then STDOUT should be:
"""
bar5
"""
When I run `wp --url=example.com/foo transient get foo6 --network`
Then STDOUT should be:
"""
bar6
"""
When I run `wp transient delete --all --network`
Then STDOUT should be:
"""
Success: 4 transients deleted from the database.
"""
When I try `wp transient get foo3 --network`
Then STDERR should be:
"""
Warning: Transient with key "foo3" is not set.
"""
When I try `wp transient get foo4 --network`
Then STDERR should be:
"""
Warning: Transient with key "foo4" is not set.
"""
When I try `wp --url=example.com/foo transient get foo5 --network`
Then STDERR should be:
"""
Warning: Transient with key "foo5" is not set.
"""
When I try `wp --url=example.com/foo transient get foo6 --network`
Then STDERR should be:
"""
Warning: Transient with key "foo6" is not set.
"""
@skip-object-cache
Scenario: Deleting expired transients on multisite
Given a WP multisite install
And I run `wp site create --slug=foo`
And I run `wp transient set foo bar 600`
And I run `wp transient set foo2 bar2 600`
And I run `wp transient set foo3 bar3 600 --network`
And I run `wp transient set foo4 bar4 600 --network`
And I run `wp --url=example.com/foo transient set foo5 bar5 600 --network`
And I run `wp --url=example.com/foo transient set foo6 bar6 600 --network`
# Change timeout to be in the past.
And I run `wp option update _transient_timeout_foo 1321009871`
And I run `wp site option update _site_transient_timeout_foo3 1321009871`
And I run `wp --url=example.com/foo site option update _site_transient_timeout_foo5 1321009871`
When I run `wp transient delete --expired`
Then STDOUT should be:
"""
Success: 1 expired transient deleted from the database.
"""
When I try `wp transient get foo`
Then STDERR should be:
"""
Warning: Transient with key "foo" is not set.
"""
When I run `wp transient get foo2`
Then STDOUT should be:
"""
bar2
"""
# Check if option still exists as a get transient call will remove it.
When I run `wp site option get _site_transient_foo3`
Then STDOUT should be:
"""
bar3
"""
When I run `wp transient get foo4 --network`
Then STDOUT should be:
"""
bar4
"""
# Check if option still exists as a get transient call will remove it.
When I run `wp --url=example.com/foo site option get _site_transient_foo5`
Then STDOUT should be:
"""
bar5
"""
When I run `wp --url=example.com/foo transient get foo6 --network`
Then STDOUT should be:
"""
bar6
"""
When I run `wp transient delete --expired --network`
Then STDOUT should be:
"""
Success: 2 expired transients deleted from the database.
"""
When I try `wp transient get foo`
Then STDERR should be:
"""
Warning: Transient with key "foo" is not set.
"""
When I run `wp transient get foo2`
Then STDOUT should be:
"""
bar2
"""
When I try `wp transient get foo3 --network`
Then STDERR should be:
"""
Warning: Transient with key "foo3" is not set.
"""
When I run `wp transient get foo4 --network`
Then STDOUT should be:
"""
bar4
"""
When I try `wp --url=example.com/foo transient get foo5 --network`
Then STDERR should be:
"""
Warning: Transient with key "foo5" is not set.
"""
When I run `wp --url=example.com/foo transient get foo6 --network`
Then STDOUT should be:
"""
bar6
"""
@skip-object-cache
Scenario: List transients on single site
Given a WP install
And I run `wp transient set foo bar`
And I run `wp transient set foo2 bar2 610`
And I run `wp option update _transient_timeout_foo2 95649119999`
And I run `wp transient set foo3 bar3 300`
And I run `wp option update _transient_timeout_foo3 1321009871`
And I run `wp transient set foo4 bar4 --network`
And I run `wp transient set foo5 bar5 610 --network`
And I run `wp option update _site_transient_timeout_foo5 95649119999`
And I run `wp transient set foo6 bar6 300 --network`
And I run `wp option update _site_transient_timeout_foo6 1321009871`
When I run `wp transient list --format=csv`
Then STDOUT should contain:
"""
foo,bar,false
"""
And STDOUT should contain:
"""
foo2,bar2,95649119999
"""
And STDOUT should contain:
"""
foo3,bar3,1321009871
"""
When I run `wp transient list --format=csv --human-readable`
Then STDOUT should contain:
"""
foo,bar,"never expires"
"""
And STDOUT should contain:
"""
foo3,bar3,expired
"""
And STDOUT should not contain:
"""
foo2,bar2,95649119999
"""
When I run `wp transient list --network --format=csv`
Then STDOUT should contain:
"""
foo4,bar4,false
"""
And STDOUT should contain:
"""
foo5,bar5,95649119999
"""
And STDOUT should contain:
"""
foo6,bar6,1321009871
"""
@skip-object-cache
Scenario: List transients on multisite
Given a WP multisite install
# We set `WP_DEVELOPMENT_MODE` to stop WordPress from automatically creating
# additional transients which cause some steps to fail when testing.
And I run `wp config set WP_DEVELOPMENT_MODE all`
And I run `wp transient set foo bar`
And I run `wp transient set foo2 bar2 610`
And I run `wp option update _transient_timeout_foo2 95649119999`
And I run `wp transient set foo3 bar3 300`
And I run `wp option update _transient_timeout_foo3 1321009871`
And I run `wp transient set foo4 bar4 --network`
And I run `wp transient set foo5 bar5 610 --network`
And I run `wp site option update _site_transient_timeout_foo5 95649119999`
And I run `wp transient set foo6 bar6 300 --network`
And I run `wp site option update _site_transient_timeout_foo6 1321009871`
When I run `wp transient list --format=csv`
Then STDOUT should contain:
"""
foo,bar,false
"""
And STDOUT should contain:
"""
foo2,bar2,95649119999
"""
And STDOUT should contain:
"""
foo3,bar3,1321009871
"""
When I run `wp transient list --format=csv --human-readable`
Then STDOUT should contain:
"""
foo,bar,"never expires"
"""
And STDOUT should contain:
"""
foo3,bar3,expired
"""
And STDOUT should not contain:
"""
foo2,bar2,95649119999
"""
When I run `wp transient list --network --format=csv`
Then STDOUT should contain:
"""
foo4,bar4,false
"""
And STDOUT should contain:
"""
foo5,bar5,95649119999
"""
And STDOUT should contain:
"""
foo6,bar6,1321009871
"""
@skip-object-cache
Scenario: List transients with search and exclude pattern
Given a WP install
And I run `wp transient set foo bar`
And I run `wp transient set foo2 bar2`
And I run `wp transient set foo3 bar3`
And I run `wp transient set foo4 bar4 --network`
And I run `wp transient set foo5 bar5 --network`
When I run `wp transient list --format=csv --fields=name --search="foo"`
Then STDOUT should be:
"""
name
foo
"""
When I run `wp transient list --format=csv --fields=name --search="foo*"`
Then STDOUT should be:
"""
name
foo
foo2
foo3
"""
When I run `wp transient list --format=csv --fields=name --search="*oo"`
Then STDOUT should be:
"""
name
foo
"""
When I run `wp transient list --format=csv --fields=name --search="*oo*"`
Then STDOUT should be:
"""
name
foo
foo2
foo3
"""
When I run `wp transient list --format=csv --fields=name --search="*oo?"`
Then STDOUT should be:
"""
name
foo2
foo3
"""
When I run `wp transient list --format=csv --fields=name --search="foo?"`
Then STDOUT should be:
"""
name
foo2
foo3
"""
When I run `wp transient list --format=csv --fields=name --search="doesnotexist*"`
Then STDOUT should be:
"""
name
"""
When I run `wp transient list --format=csv --fields=name --search="foo*" --exclude="foo2"`
Then STDOUT should be:
"""
name
foo
foo3
"""
When I run `wp transient list --format=csv --fields=name --search="foo*" --exclude="*3"`
Then STDOUT should be:
"""
name
foo
foo2
"""
When I run `wp transient list --format=csv --fields=name --search="foo*" --exclude="foo?"`
Then STDOUT should be:
"""
name
foo
"""
When I run `wp transient list --format=csv --fields=name --search="foo*" --network`
Then STDOUT should be:
"""
name
foo4
foo5
"""
When I run `wp transient list --format=csv --fields=name --search="foo*" --exclude="foo5" --network`
Then STDOUT should be:
"""
name
foo4
"""
@require-object-cache
Scenario: Transient database operations warn when external object cache is active
Given a WP install
When I try `wp transient list --format=count`
Then STDERR should be:
"""
Warning: Transients are stored in an external object cache, and this command only shows those stored in the database.
"""
And STDOUT should be:
"""
0
"""
And the return code should be 0
When I try `wp transient delete --all`
Then STDERR should be:
"""
Warning: Transients are stored in an external object cache, and this command only deletes those stored in the database. You must flush the cache to delete all transients.
"""
And STDOUT should be:
"""
Success: No transients found.
"""
And the return code should be 0
When I try `wp transient delete --expired`
Then STDERR should be:
"""
Warning: Transients are stored in an external object cache, and this command only deletes those stored in the database. You must flush the cache to delete all transients.
"""
And STDOUT should be:
"""
Success: No expired transients found.
"""
And the return code should be 0