-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage-install.feature
More file actions
1434 lines (1274 loc) · 44.7 KB
/
package-install.feature
File metadata and controls
1434 lines (1274 loc) · 44.7 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
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Feature: Install WP-CLI packages
Background:
When I run `wp package path`
Then save STDOUT as {PACKAGE_PATH}
Scenario: Install a package with an http package index url in package composer.json
Given an empty directory
And a composer.json file:
"""
{
"repositories": {
"test" : {
"type": "path",
"url": "./dummy-package/"
},
"wp-cli": {
"type": "composer",
"url": "http://wp-cli.org/package-index/"
}
}
}
"""
And a dummy-package/composer.json file:
"""
{
"name": "wp-cli/restful",
"description": "This is a dummy package we will install instead of actually installing the real package. This prevents the test from hanging indefinitely for some reason, even though it passes. The 'name' must match a real package as it is checked against the package index."
}
"""
When I run `WP_CLI_PACKAGES_DIR=. wp package install wp-cli/restful`
Then STDOUT should contain:
"""
Updating package index repository url...
"""
And STDOUT should contain:
"""
Success: Package installed
"""
And the composer.json file should contain:
"""
"url": "https://wp-cli.org/package-index/"
"""
And the composer.json file should not contain:
"""
"url": "http://wp-cli.org/package-index/"
"""
And the composer.json file should contain:
"""
"canonical": false
"""
When I run `WP_CLI_PACKAGES_DIR=. wp package is-installed wp-cli/restful`
Then the return code should be 0
And STDERR should be empty
And STDOUT should be empty
Scenario: Install a package updates the package index repository to be non-canonical
Given an empty directory
And a composer.json file:
"""
{
"repositories": {
"test" : {
"type": "path",
"url": "./dummy-package/"
},
"wp-cli": {
"type": "composer",
"url": "https://wp-cli.org/package-index/"
}
}
}
"""
And a dummy-package/composer.json file:
"""
{
"name": "wp-cli/restful",
"description": "This is a dummy package we will install instead of actually installing the real package. This prevents the test from hanging indefinitely for some reason, even though it passes. The 'name' must match a real package as it is checked against the package index."
}
"""
When I run `WP_CLI_PACKAGES_DIR=. wp package install wp-cli/restful`
Then STDOUT should contain:
"""
Success: Package installed
"""
And the composer.json file should contain:
"""
"canonical": false
"""
@require-php-5.6
Scenario: Install a package with 'wp-cli/wp-cli' as a dependency
Given a WP install
When I run `wp package install wp-cli-test/test-command:v0.2.0`
Then STDOUT should contain:
"""
Success: Package installed
"""
And STDOUT should not contain:
"""
requires wp-cli/wp-cli
"""
When I run `wp package is-installed wp-cli-test/test-command`
Then the return code should be 0
And STDERR should be empty
And STDOUT should be empty
When I run `wp test-command`
Then STDOUT should contain:
"""
Version C.
"""
# The package requires PHP 7.4
@require-php-7.4 @github-api
Scenario: Install a package with a dependency
Given an empty directory
When I run `wp package install https://github.com/swissspidy/validate-readme-command.git`
Then STDOUT should contain:
"""
Success: Package installed.
"""
And the {PACKAGE_PATH}/vendor/swissspidy directory should contain:
"""
validate-readme-command
"""
And the {PACKAGE_PATH}/vendor/michelf directory should contain:
"""
php-markdown
"""
When I run `wp package is-installed swissspidy/validate-readme-command`
Then the return code should be 0
And STDERR should be empty
And STDOUT should be empty
When I run `wp package list --fields=name`
Then STDOUT should be a table containing rows:
| name |
| swissspidy/validate-readme-command |
And STDOUT should not contain:
"""
michelf
"""
When I run `wp package uninstall swissspidy/validate-readme-command`
Then STDOUT should contain:
"""
Removing require statement for package 'swissspidy/validate-readme-command' from
"""
And STDOUT should contain:
"""
Success: Uninstalled package.
"""
And the {PACKAGE_PATH}/vendor directory should not contain:
"""
swissspidy
"""
When I try `wp package is-installed swissspidy/validate-readme-command`
Then the return code should be 1
And STDERR should be empty
And STDOUT should be empty
@github-api
Scenario: Install a package from a Git URL
Given an empty directory
When I try `wp package install git@github.com:wp-cli-test/repository-name.git`
Then the return code should be 0
And STDERR should contain:
"""
Warning: Package name mismatch...Updating from git name 'wp-cli-test/repository-name' to composer.json name 'wp-cli-test/package-name'.
"""
And STDOUT should contain:
"""
Success: Package installed.
"""
And the {PACKAGE_PATH}composer.json file should contain:
"""
"wp-cli-test/package-name": "dev-master"
"""
When I run `wp package is-installed wp-cli-test/package-name`
Then the return code should be 0
And STDERR should be empty
And STDOUT should be empty
When I try `wp package install git@github.com:wp-cli.git`
Then STDERR should contain:
"""
Error: Couldn't parse package name from expected path '<name>/<package>'.
"""
When I run `wp package install git@github.com:wp-cli/google-sitemap-generator-cli.git`
Then STDOUT should contain:
"""
Installing package wp-cli/google-sitemap-generator-cli (dev-main)
"""
# This path is sometimes changed on Macs to prefix with /private
And STDOUT should contain:
"""
{PACKAGE_PATH}composer.json to require the package...
"""
And STDOUT should contain:
"""
Registering git@github.com:wp-cli/google-sitemap-generator-cli.git as a VCS repository...
Using Composer to install the package...
"""
And STDOUT should contain:
"""
Success: Package installed.
"""
When I run `wp package is-installed wp-cli/google-sitemap-generator-cli`
Then the return code should be 0
And STDERR should be empty
And STDOUT should be empty
When I run `wp package list --fields=name`
Then STDOUT should be a table containing rows:
| name |
| wp-cli/google-sitemap-generator-cli |
When I run `wp google-sitemap`
Then STDOUT should contain:
"""
usage: wp google-sitemap rebuild
"""
When I run `wp package uninstall wp-cli/google-sitemap-generator-cli`
Then STDOUT should contain:
"""
Removing require statement for package 'wp-cli/google-sitemap-generator-cli' from
"""
And STDOUT should contain:
"""
Removing repository details from
"""
And the {PACKAGE_PATH}composer.json file should not contain:
"""
"wp-cli/google-sitemap-generator-cli": "dev-master"
"""
And the {PACKAGE_PATH}composer.json file should not contain:
"""
"url": "git@github.com:wp-cli/google-sitemap-generator-cli.git"
"""
And STDOUT should contain:
"""
Success: Uninstalled package.
"""
When I try `wp package is-installed wp-cli/google-sitemap-generator-cli`
Then the return code should be 1
And STDERR should be empty
And STDOUT should be empty
When I run `wp package list --fields=name`
Then STDOUT should not contain:
"""
wp-cli/google-sitemap-generator-cli
"""
@github-api
Scenario: Install a package from a Git URL with a version suffix
Given an empty directory
When I run `wp package install https://github.com/wp-cli/google-sitemap-generator-cli.git:dev-main`
Then STDOUT should contain:
"""
Installing package wp-cli/google-sitemap-generator-cli (dev-main)
"""
And STDOUT should contain:
"""
Registering https://github.com/wp-cli/google-sitemap-generator-cli.git as a VCS repository...
"""
And STDOUT should contain:
"""
Success: Package installed.
"""
When I run `wp package uninstall wp-cli/google-sitemap-generator-cli`
Then STDOUT should contain:
"""
Success: Uninstalled package.
"""
@github-api
Scenario: Install a package from a Git URL without .git suffix
Given an empty directory
When I run `wp package install https://github.com/wp-cli/google-sitemap-generator-cli`
Then STDOUT should contain:
"""
Installing package wp-cli/google-sitemap-generator-cli
"""
And STDOUT should contain:
"""
Registering https://github.com/wp-cli/google-sitemap-generator-cli.git as a VCS repository...
"""
And STDOUT should contain:
"""
Success: Package installed.
"""
When I run `wp package uninstall wp-cli/google-sitemap-generator-cli`
Then STDOUT should contain:
"""
Success: Uninstalled package.
"""
@github-api
Scenario: Install a package from a Git URL without .git suffix but with a version suffix
Given an empty directory
When I run `wp package install https://github.com/wp-cli/google-sitemap-generator-cli:dev-main`
Then STDOUT should contain:
"""
Installing package wp-cli/google-sitemap-generator-cli (dev-main)
"""
And STDOUT should contain:
"""
Registering https://github.com/wp-cli/google-sitemap-generator-cli.git as a VCS repository...
"""
And STDOUT should contain:
"""
Success: Package installed.
"""
When I run `wp package uninstall wp-cli/google-sitemap-generator-cli`
Then STDOUT should contain:
"""
Success: Uninstalled package.
"""
@github-api
Scenario: Install a package from a GitHub SSH URL without .git suffix
Given an empty directory
When I run `wp package install git@github.com:wp-cli/google-sitemap-generator-cli`
Then STDOUT should contain:
"""
Installing package wp-cli/google-sitemap-generator-cli
"""
And STDOUT should contain:
"""
Registering git@github.com:wp-cli/google-sitemap-generator-cli.git as a VCS repository...
"""
And STDOUT should contain:
"""
Success: Package installed.
"""
When I run `wp package uninstall wp-cli/google-sitemap-generator-cli`
Then STDOUT should contain:
"""
Success: Uninstalled package.
"""
@gitlab-api
Scenario: Install a package from a GitLab URL without .git suffix and nested groups
Given an empty directory
When I try `wp package install https://gitlab.com/wp-cli/wp-cli-test/test-command`
Then STDOUT should contain:
"""
Installing package wp-cli-test/test-command
"""
And STDOUT should contain:
"""
Registering https://gitlab.com/wp-cli/wp-cli-test/test-command.git as a VCS repository...
"""
And STDOUT should contain:
"""
Success: Package installed.
"""
And STDERR should contain:
"""
Could not guess stable version from GitHub repository, falling back to master branch
"""
When I run `wp package uninstall wp-cli-test/test-command`
Then STDOUT should contain:
"""
Success: Uninstalled package.
"""
@github-api
Scenario: Install a package from a Git URL with mixed-case git name but lowercase composer.json name
Given an empty directory
When I try `wp package install https://github.com/CapitalWPCLI/examplecommand.git`
Then the return code should be 0
And STDERR should contain:
"""
Warning: Package name mismatch...Updating from git name 'CapitalWPCLI/examplecommand' to composer.json name 'capitalwpcli/examplecommand'.
"""
And STDOUT should contain:
"""
Installing package capitalwpcli/examplecommand (dev-master)
"""
# This path is sometimes changed on Macs to prefix with /private
And STDOUT should contain:
"""
{PACKAGE_PATH}composer.json to require the package...
"""
And STDOUT should contain:
"""
Registering https://github.com/CapitalWPCLI/examplecommand.git as a VCS repository...
Using Composer to install the package...
"""
And STDOUT should contain:
"""
Success: Package installed.
"""
And the {PACKAGE_PATH}composer.json file should contain:
"""
"capitalwpcli/examplecommand"
"""
And the {PACKAGE_PATH}composer.json file should not contain:
"""
"CapitalWPCLI/examplecommand"
"""
When I run `wp package is-installed capitalwpcli/examplecommand`
Then the return code should be 0
And STDERR should be empty
And STDOUT should be empty
When I run `wp package list --fields=name`
Then STDOUT should be a table containing rows:
| name |
| capitalwpcli/examplecommand |
When I run `wp hello-world`
Then STDOUT should contain:
"""
Success: Hello world.
"""
@github-api
Scenario: Install a package from a Git URL with mixed-case git name and the same mixed-case composer.json name
Given an empty directory
When I run `wp package install https://github.com/gitlost/TestMixedCaseCommand.git`
Then STDERR should be empty
And STDOUT should contain:
"""
Success: Package installed.
"""
And the contents of the {PACKAGE_PATH}composer.json file should match /\"gitlost\/(?:TestMixedCaseCommand|testmixedcasecommand)\"/
When I run `wp package is-installed gitlost/TestMixedCaseCommand`
Then the return code should be 0
And STDERR should be empty
And STDOUT should be empty
When I run `wp package list --fields=name`
Then STDOUT should be a table containing rows:
| name |
| gitlost/TestMixedCaseCommand |
When I run `wp TestMixedCaseCommand`
Then STDOUT should contain:
"""
Success: Test Mixed Case Command Name
"""
@github-api @shortened
Scenario: Install a package from Git using a shortened package identifier
Given an empty directory
When I run `wp package install wp-cli-test/github-test-command`
Then STDOUT should contain:
"""
Installing package wp-cli-test/github-test-command (dev-master)
"""
# This path is sometimes changed on Macs to prefix with /private
And STDOUT should contain:
"""
{PACKAGE_PATH}composer.json to require the package...
"""
And STDOUT should contain:
"""
Registering https://github.com/wp-cli-test/github-test-command.git as a VCS repository...
Using Composer to install the package...
"""
And STDOUT should contain:
"""
Success: Package installed.
"""
When I run `wp package is-installed wp-cli-test/github-test-command`
Then the return code should be 0
And STDERR should be empty
And STDOUT should be empty
When I run `wp package list --fields=name,version`
Then STDOUT should be a table containing rows:
| name | version |
| wp-cli-test/github-test-command | dev-master |
When I run `wp test-command`
Then STDOUT should contain:
"""
Success: Version E.
"""
When I run `wp package uninstall wp-cli-test/github-test-command`
Then STDOUT should contain:
"""
Removing require statement for package 'wp-cli-test/github-test-command' from
"""
And STDOUT should contain:
"""
Success: Uninstalled package.
"""
When I try `wp package is-installed wp-cli-test/github-test-command`
Then the return code should be 1
And STDERR should be empty
And STDOUT should be empty
When I run `wp package list --fields=name`
Then STDOUT should not contain:
"""
wp-cli-test/github-test-command
"""
@github-api @shortened
Scenario: Install a package from Git using a shortened package identifier with a version requirement
Given an empty directory
When I try `wp package install wp-cli-test/github-test-command:^0`
Then STDOUT should contain:
"""
Installing package wp-cli-test/github-test-command (^0)
"""
# This path is sometimes changed on Macs to prefix with /private
And STDOUT should contain:
"""
{PACKAGE_PATH}composer.json to require the package...
"""
And STDOUT should contain:
"""
Registering https://github.com/wp-cli-test/github-test-command.git as a VCS repository...
Using Composer to install the package...
"""
And STDOUT should contain:
"""
Success: Package installed.
"""
When I run `wp package is-installed wp-cli-test/github-test-command`
Then the return code should be 0
And STDERR should be empty
And STDOUT should be empty
When I run `wp package list --fields=name,version`
Then STDOUT should be a table containing rows:
| name | version |
| wp-cli-test/github-test-command | v0.2.0 |
When I run `wp test-command`
Then STDOUT should contain:
"""
Success: Version C.
"""
When I run `wp package uninstall wp-cli-test/github-test-command`
Then STDOUT should contain:
"""
Removing require statement for package 'wp-cli-test/github-test-command' from
"""
And STDOUT should contain:
"""
Success: Uninstalled package.
"""
When I try `wp package is-installed wp-cli-test/github-test-command`
Then the return code should be 1
And STDERR should be empty
And STDOUT should be empty
When I run `wp package list --fields=name`
Then STDOUT should not contain:
"""
wp-cli-test/github-test-command
"""
@github-api @shortened
Scenario: Install a package from Git using a shortened package identifier with a specific version
Given an empty directory
# Need to specify actual tag.
When I try `wp package install wp-cli-test/github-test-command:0.1.0`
Then STDERR should contain:
"""
Warning: Couldn't download composer.json file from 'https://raw.githubusercontent.com/wp-cli-test/github-test-command/0.1.0/composer.json' (HTTP code 404).
"""
When I run `wp package install wp-cli-test/github-test-command:v0.1.0`
Then STDOUT should contain:
"""
Installing package wp-cli-test/github-test-command (v0.1.0)
"""
# This path is sometimes changed on Macs to prefix with /private
And STDOUT should contain:
"""
{PACKAGE_PATH}composer.json to require the package...
"""
And STDOUT should contain:
"""
Registering https://github.com/wp-cli-test/github-test-command.git as a VCS repository...
Using Composer to install the package...
"""
And STDOUT should contain:
"""
Success: Package installed.
"""
When I run `wp package is-installed wp-cli-test/github-test-command`
Then the return code should be 0
And STDERR should be empty
And STDOUT should be empty
When I run `wp package list --fields=name,version`
Then STDOUT should be a table containing rows:
| name | version |
| wp-cli-test/github-test-command | v0.1.0 |
When I run `wp test-command`
Then STDOUT should contain:
"""
Success: Version A.
"""
When I run `wp package uninstall wp-cli-test/github-test-command`
Then STDOUT should contain:
"""
Removing require statement for package 'wp-cli-test/github-test-command' from
"""
And STDOUT should contain:
"""
Success: Uninstalled package.
"""
When I try `wp package is-installed wp-cli-test/github-test-command`
Then the return code should be 1
And STDERR should be empty
And STDOUT should be empty
When I run `wp package list --fields=name`
Then STDOUT should not contain:
"""
wp-cli-test/github-test-command
"""
@github-api @shortened
Scenario: Install a package from Git using a shortened package identifier and a specific commit hash
Given an empty directory
When I run `wp package install wp-cli-test/github-test-command:dev-master#bcfac95e2193e9f5f8fbd3004fab9d902a5e4de3`
Then STDOUT should contain:
"""
Installing package wp-cli-test/github-test-command (dev-master#bcfac95e2193e9f5f8fbd3004fab9d902a5e4de3)
"""
# This path is sometimes changed on Macs to prefix with /private
And STDOUT should contain:
"""
{PACKAGE_PATH}composer.json to require the package...
"""
And STDOUT should contain:
"""
Registering https://github.com/wp-cli-test/github-test-command.git as a VCS repository...
Using Composer to install the package...
"""
And STDOUT should contain:
"""
Success: Package installed.
"""
When I run `wp package is-installed wp-cli-test/github-test-command`
Then the return code should be 0
And STDERR should be empty
And STDOUT should be empty
When I run `wp package list --fields=name,version`
Then STDOUT should be a table containing rows:
| name | version |
| wp-cli-test/github-test-command | dev-master |
When I run `wp test-command`
Then STDOUT should contain:
"""
Success: Version B.
"""
When I run `wp package uninstall wp-cli-test/github-test-command`
Then STDOUT should contain:
"""
Removing require statement for package 'wp-cli-test/github-test-command' from
"""
And STDOUT should contain:
"""
Success: Uninstalled package.
"""
When I try `wp package is-installed wp-cli-test/github-test-command`
Then the return code should be 1
And STDERR should be empty
And STDOUT should be empty
When I run `wp package list --fields=name`
Then STDOUT should not contain:
"""
wp-cli-test/github-test-command
"""
@github-api @shortened
Scenario: Install a package from Git using a shortened package identifier and a branch
Given an empty directory
When I run `wp package install wp-cli-test/github-test-command:dev-custom-branch`
Then STDOUT should contain:
"""
Installing package wp-cli-test/github-test-command (dev-custom-branch)
"""
# This path is sometimes changed on Macs to prefix with /private
And STDOUT should contain:
"""
{PACKAGE_PATH}composer.json to require the package...
"""
And STDOUT should contain:
"""
Registering https://github.com/wp-cli-test/github-test-command.git as a VCS repository...
Using Composer to install the package...
"""
And STDOUT should contain:
"""
Success: Package installed.
"""
When I run `wp package is-installed wp-cli-test/github-test-command`
Then the return code should be 0
And STDERR should be empty
And STDOUT should be empty
When I run `wp package list --fields=name,version`
Then STDOUT should be a table containing rows:
| name | version |
| wp-cli-test/github-test-command | dev-custom-branch |
When I run `wp test-command`
Then STDOUT should contain:
"""
Success: Version D.
"""
When I run `wp package uninstall wp-cli-test/github-test-command`
Then STDOUT should contain:
"""
Removing require statement for package 'wp-cli-test/github-test-command' from
"""
And STDOUT should contain:
"""
Success: Uninstalled package.
"""
When I try `wp package is-installed wp-cli-test/github-test-command`
Then the return code should be 1
And STDERR should be empty
And STDOUT should be empty
When I run `wp package list --fields=name`
Then STDOUT should not contain:
"""
wp-cli-test/github-test-command
"""
@github-api
Scenario: Install a package from the wp-cli package index with a mixed-case name
Given an empty directory
# Install and uninstall with case-sensitive name
When I try `wp package install GeekPress/wp-rocket-cli`
Then STDERR should contain:
"""
Warning: Package name mismatch...Updating from git name 'GeekPress/wp-rocket-cli' to composer.json name 'wp-media/wp-rocket-cli'.
"""
And STDOUT should match /Installing package wp-media\/wp-rocket-cli \(dev-/
# This path is sometimes changed on Macs to prefix with /private
And STDOUT should contain:
"""
{PACKAGE_PATH}composer.json to require the package...
"""
And STDOUT should contain:
"""
Using Composer to install the package...
"""
And STDOUT should contain:
"""
Success: Package installed.
"""
And the contents of the {PACKAGE_PATH}composer.json file should match /"wp-media\/wp-rocket-cli"/
When I run `wp package is-installed wp-media/wp-rocket-cli`
Then the return code should be 0
And STDERR should be empty
And STDOUT should be empty
When I run `wp package list --fields=name`
Then STDOUT should be a table containing rows:
| name |
| wp-media/wp-rocket-cli |
When I run `wp help rocket`
Then STDOUT should contain:
"""
wp rocket
"""
When I try `wp package uninstall GeekPress/wp-rocket-cli`
Then STDOUT should contain:
"""
Removing require statement for package 'wp-media/wp-rocket-cli' from
"""
And STDOUT should contain:
"""
Success: Uninstalled package.
"""
And STDERR should contain:
"""
Warning: Package name mismatch...Updating from git name 'GeekPress/wp-rocket-cli' to composer.json name 'wp-media/wp-rocket-cli'.
"""
And the {PACKAGE_PATH}composer.json file should not contain:
"""
rocket
"""
When I try `wp package is-installed wp-media/wp-rocket-cli`
Then the return code should be 1
And STDERR should be empty
And STDOUT should be empty
# Install with lowercase name (for BC - no warning) and uninstall with lowercase name (for BC and convenience)
When I run `wp package install geekpress/wp-rocket-cli`
Then STDERR should be empty
And STDOUT should match /Installing package (?:GeekPress|geekpress)\/wp-rocket-cli \(dev-/
# This path is sometimes changed on Macs to prefix with /private
And STDOUT should contain:
"""
{PACKAGE_PATH}composer.json to require the package...
"""
And STDOUT should contain:
"""
Using Composer to install the package...
"""
And STDOUT should contain:
"""
Success: Package installed.
"""
And the contents of the {PACKAGE_PATH}composer.json file should match /("?:GeekPress|geekpress)\/wp-rocket-cli"/
When I run `wp package is-installed geekpress/wp-rocket-cli`
Then the return code should be 0
And STDERR should be empty
And STDOUT should be empty
When I run `wp package list --fields=name`
Then STDOUT should be a table containing rows:
| name |
| geekpress/wp-rocket-cli |
When I run `wp help rocket`
Then STDOUT should contain:
"""
wp rocket
"""
When I run `wp package uninstall geekpress/wp-rocket-cli`
Then STDOUT should contain:
"""
Removing require statement for package 'geekpress/wp-rocket-cli' from
"""
And STDOUT should contain:
"""
Success: Uninstalled package.
"""
And the {PACKAGE_PATH}composer.json file should not contain:
"""
rocket
"""
When I try `wp package is-installed geekpress/wp-rocket-cli`
Then the return code should be 1
And STDERR should be empty
And STDOUT should be empty
@github-api
Scenario: Install a package with a composer.json that differs between versions
Given an empty directory
When I run `wp package install wp-cli-test/version-composer-json-different:v1.0.0`
Then STDOUT should contain:
"""
Installing package wp-cli-test/version-composer-json-different (v1.0.0)
"""
# This path is sometimes changed on Macs to prefix with /private
And STDOUT should contain:
"""
{PACKAGE_PATH}composer.json to require the package...
"""
And STDOUT should contain:
"""
Success: Package installed.
"""
And the {PACKAGE_PATH}/vendor/wp-cli-test/version-composer-json-different/composer.json file should exist
And the {PACKAGE_PATH}/vendor/wp-cli-test/version-composer-json-different/composer.json file should contain:
"""
1.0.0
"""
And the {PACKAGE_PATH}/vendor/wp-cli-test/version-composer-json-different/composer.json file should not contain:
"""
1.0.1
"""
And the {PACKAGE_PATH}/vendor/wp-cli/profile-command directory should not exist
When I run `wp package install wp-cli-test/version-composer-json-different:v1.0.1`
Then STDOUT should contain:
"""
Installing package wp-cli-test/version-composer-json-different (v1.0.1)
"""
# This path is sometimes changed on Macs to prefix with /private
And STDOUT should contain:
"""
{PACKAGE_PATH}composer.json to require the package...
"""
And STDOUT should contain:
"""
Success: Package installed.
"""
And the {PACKAGE_PATH}/vendor/wp-cli-test/version-composer-json-different/composer.json file should exist
And the {PACKAGE_PATH}/vendor/wp-cli-test/version-composer-json-different/composer.json file should contain:
"""
1.0.1
"""
And the {PACKAGE_PATH}/vendor/wp-cli-test/version-composer-json-different/composer.json file should not contain:
"""
1.0.0
"""
And the {PACKAGE_PATH}/vendor/wp-cli/profile-command directory should exist
Scenario: Install a package from a local zip
Given an empty directory
And I run `curl -sS -L -o google-sitemap-generator-cli.zip https://github.com/wp-cli/google-sitemap-generator-cli/archive/master.zip`
When I run `wp package install google-sitemap-generator-cli.zip`
Then STDOUT should contain:
"""
Installing package wp-cli/google-sitemap-generator-cli
"""
# This path is sometimes changed on Macs to prefix with /private
And STDOUT should contain:
"""
{PACKAGE_PATH}composer.json to require the package...
"""
And STDOUT should contain:
"""
Registering {PACKAGE_PATH}local/wp-cli-google-sitemap-generator-cli as a path repository...
Using Composer to install the package...
"""
And STDOUT should contain:
"""
Success: Package installed.
"""
When I run `wp package is-installed wp-cli/google-sitemap-generator-cli`
Then the return code should be 0
And STDERR should be empty
And STDOUT should be empty
When I run `wp package list --fields=name`
Then STDOUT should be a table containing rows:
| name |
| wp-cli/google-sitemap-generator-cli |
When I run `wp google-sitemap`
Then STDOUT should contain:
"""
usage: wp google-sitemap rebuild
"""
When I run `wp package uninstall wp-cli/google-sitemap-generator-cli`
Then STDOUT should contain:
"""