19
19
use Composer \Util \Filesystem ;
20
20
use Composer \Util \ProcessExecutor ;
21
21
use Composer \Util \RemoteFilesystem ;
22
+ use Fxp \Composer \AssetPlugin \Repository \AssetRepositoryManager ;
22
23
use Fxp \Composer \AssetPlugin \Repository \Vcs \GitHubDriver ;
23
24
24
25
/**
@@ -33,6 +34,11 @@ class GitHubDriverTest extends \PHPUnit_Framework_TestCase
33
34
*/
34
35
private $ config ;
35
36
37
+ /**
38
+ * @var AssetRepositoryManager|\PHPUnit_Framework_MockObject_MockObject
39
+ */
40
+ private $ assetRepositoryManager ;
41
+
36
42
public function setUp ()
37
43
{
38
44
$ this ->config = new Config ();
@@ -42,6 +48,9 @@ public function setUp()
42
48
'cache-repo-dir ' => sys_get_temp_dir ().'/composer-test-cache ' ,
43
49
),
44
50
));
51
+
52
+ $ this ->assetRepositoryManager = $ this ->getMockBuilder (AssetRepositoryManager::class)
53
+ ->disableOriginalConstructor ()->getMock ();
45
54
}
46
55
47
56
public function tearDown ()
@@ -141,6 +150,7 @@ public function testPrivateRepository($type, $filename)
141
150
$ repoConfig = array (
142
151
'url ' => $ repoUrl ,
143
152
'asset-type ' => $ type ,
153
+ 'asset-repository-manager ' => $ this ->assetRepositoryManager ,
144
154
'filename ' => $ filename ,
145
155
'package-name ' => $ packageName ,
146
156
);
@@ -193,6 +203,7 @@ public function testPublicRepository($type, $filename)
193
203
$ repoConfig = array (
194
204
'url ' => $ repoUrl ,
195
205
'asset-type ' => $ type ,
206
+ 'asset-repository-manager ' => $ this ->assetRepositoryManager ,
196
207
'filename ' => $ filename ,
197
208
'package-name ' => $ packageName ,
198
209
);
@@ -259,6 +270,7 @@ public function testPublicRepository2($type, $filename)
259
270
$ repoConfig = array (
260
271
'url ' => $ repoUrl ,
261
272
'asset-type ' => $ type ,
273
+ 'asset-repository-manager ' => $ this ->assetRepositoryManager ,
262
274
'filename ' => $ filename ,
263
275
'package-name ' => $ packageName ,
264
276
);
@@ -374,6 +386,7 @@ public function testPrivateRepositoryNoInteraction($type, $filename)
374
386
$ repoConfig = array (
375
387
'url ' => $ repoUrl ,
376
388
'asset-type ' => $ type ,
389
+ 'asset-repository-manager ' => $ this ->assetRepositoryManager ,
377
390
'filename ' => $ filename ,
378
391
'package-name ' => $ packageName ,
379
392
);
@@ -422,6 +435,7 @@ public function testGetComposerInformationWithGitDriver($type, $filename)
422
435
$ repoConfig = array (
423
436
'url ' => $ repoUrl ,
424
437
'asset-type ' => $ type ,
438
+ 'asset-repository-manager ' => $ this ->assetRepositoryManager ,
425
439
'filename ' => $ filename ,
426
440
'no-api ' => true ,
427
441
);
@@ -474,6 +488,7 @@ public function testGetComposerInformationWithCodeCache($type, $filename)
474
488
$ repoConfig = array (
475
489
'url ' => $ repoUrl ,
476
490
'asset-type ' => $ type ,
491
+ 'asset-repository-manager ' => $ this ->assetRepositoryManager ,
477
492
'filename ' => $ filename ,
478
493
'package-name ' => $ packageName ,
479
494
);
@@ -516,6 +531,7 @@ public function testGetComposerInformationWithFilesystemCache($type, $filename)
516
531
$ repoConfig = array (
517
532
'url ' => $ repoUrl ,
518
533
'asset-type ' => $ type ,
534
+ 'asset-repository-manager ' => $ this ->assetRepositoryManager ,
519
535
'filename ' => $ filename ,
520
536
'package-name ' => $ packageName ,
521
537
);
@@ -571,6 +587,7 @@ public function testGetComposerInformationWithEmptyContent($type, $filename)
571
587
$ repoConfig = array (
572
588
'url ' => $ repoUrl ,
573
589
'asset-type ' => $ type ,
590
+ 'asset-repository-manager ' => $ this ->assetRepositoryManager ,
574
591
'filename ' => $ filename ,
575
592
'package-name ' => $ packageName ,
576
593
);
@@ -622,6 +639,7 @@ public function testGetComposerInformationWithRuntimeException($type, $filename)
622
639
$ repoConfig = array (
623
640
'url ' => $ repoUrl ,
624
641
'asset-type ' => $ type ,
642
+ 'asset-repository-manager ' => $ this ->assetRepositoryManager ,
625
643
'filename ' => $ filename ,
626
644
'package-name ' => $ packageName ,
627
645
);
@@ -674,6 +692,7 @@ public function testGetComposerInformationWithTransportException($type, $filenam
674
692
$ repoConfig = array (
675
693
'url ' => $ repoUrl ,
676
694
'asset-type ' => $ type ,
695
+ 'asset-repository-manager ' => $ this ->assetRepositoryManager ,
677
696
'filename ' => $ filename ,
678
697
'package-name ' => $ packageName ,
679
698
);
@@ -736,6 +755,7 @@ public function testRedirectUrlRepository($type, $filename)
736
755
$ repoConfig = array (
737
756
'url ' => $ repoUrl ,
738
757
'asset-type ' => $ type ,
758
+ 'asset-repository-manager ' => $ this ->assetRepositoryManager ,
739
759
'filename ' => $ filename ,
740
760
'package-name ' => $ packageName ,
741
761
);
@@ -836,6 +856,7 @@ public function testRedirectUrlWithNonexistentRepository($type, $filename)
836
856
$ repoConfig = array (
837
857
'url ' => $ repoUrl ,
838
858
'asset-type ' => $ type ,
859
+ 'asset-repository-manager ' => $ this ->assetRepositoryManager ,
839
860
'filename ' => $ filename ,
840
861
'package-name ' => $ packageName ,
841
862
);
@@ -892,6 +913,7 @@ public function testRedirectUrlRepositoryWithCache($type, $filename)
892
913
$ repoConfig = array (
893
914
'url ' => $ repoUrl ,
894
915
'asset-type ' => $ type ,
916
+ 'asset-repository-manager ' => $ this ->assetRepositoryManager ,
895
917
'filename ' => $ filename ,
896
918
'package-name ' => $ packageName ,
897
919
);
@@ -977,6 +999,7 @@ public function testGetBranchesWithGitDriver($type, $filename, array $branches,
977
999
$ repoConfig = array (
978
1000
'url ' => $ repoUrl ,
979
1001
'asset-type ' => $ type ,
1002
+ 'asset-repository-manager ' => $ this ->assetRepositoryManager ,
980
1003
'filename ' => $ filename ,
981
1004
'no-api ' => true ,
982
1005
);
@@ -1050,6 +1073,7 @@ public function testGetBranches($type, $filename, array $branches)
1050
1073
$ repoConfig = array (
1051
1074
'url ' => $ repoUrl ,
1052
1075
'asset-type ' => $ type ,
1076
+ 'asset-repository-manager ' => $ this ->assetRepositoryManager ,
1053
1077
'filename ' => $ filename ,
1054
1078
'package-name ' => $ packageName ,
1055
1079
);
@@ -1086,6 +1110,7 @@ public function testNoApi($type, $filename, array $branches, array $gitBranches)
1086
1110
$ repoConfig = array (
1087
1111
'url ' => $ repoUrl ,
1088
1112
'asset-type ' => $ type ,
1113
+ 'asset-repository-manager ' => $ this ->assetRepositoryManager ,
1089
1114
'filename ' => $ filename ,
1090
1115
'package-name ' => $ packageName ,
1091
1116
'vcs-driver-options ' => array (
0 commit comments