11
11
use GitWrapper \Tests \Source \StreamSuppressFilter ;
12
12
use GitWrapper \ValueObject \CommandName ;
13
13
use Iterator ;
14
- use Nette \Utils \FileSystem ;
15
14
use Nette \Utils \Strings ;
15
+ use OndraM \CiDetector \CiDetector ;
16
16
use Symfony \Component \Process \Process ;
17
17
18
18
final class GitWorkingCopyTest extends AbstractGitWrapperTestCase
@@ -76,7 +76,7 @@ protected function setUp(): void
76
76
$ git ->config ('user.name ' , self ::CONFIG_NAME );
77
77
78
78
// Create the initial structure.
79
- FileSystem:: write (self ::DIRECTORY . '/change.me ' , "unchanged \n" );
79
+ $ this -> filesystem -> dumpFile (self ::DIRECTORY . '/change.me ' , "unchanged \n" );
80
80
$ this ->filesystem ->touch (self ::DIRECTORY . '/move.me ' );
81
81
$ this ->filesystem ->mkdir (self ::DIRECTORY . '/a.directory ' , 0755 );
82
82
$ this ->filesystem ->touch (self ::DIRECTORY . '/a.directory/remove.me ' );
@@ -90,7 +90,7 @@ protected function setUp(): void
90
90
91
91
// Create a branch, add a file.
92
92
$ branch = 'test-branch ' ;
93
- FileSystem:: write (self ::DIRECTORY . '/branch.txt ' , $ branch . PHP_EOL );
93
+ $ this -> filesystem -> dumpFile (self ::DIRECTORY . '/branch.txt ' , $ branch . PHP_EOL );
94
94
$ git ->checkoutNewBranch ($ branch );
95
95
$ git ->add ('branch.txt ' );
96
96
$ git ->commit ('Committed testing branch. ' );
@@ -153,7 +153,7 @@ public function testHasChanges(): void
153
153
$ gitWorkingCopy = $ this ->getWorkingCopy ();
154
154
$ this ->assertFalse ($ gitWorkingCopy ->hasChanges ());
155
155
156
- FileSystem:: write (self ::WORKING_DIR . '/change.me ' , "changed \n" );
156
+ $ this -> filesystem -> dumpFile (self ::WORKING_DIR . '/change.me ' , "changed \n" );
157
157
$ this ->assertTrue ($ gitWorkingCopy ->hasChanges ());
158
158
}
159
159
@@ -199,7 +199,7 @@ public function testGitAdd(): void
199
199
public function testGitApply (): void
200
200
{
201
201
$ git = $ this ->getWorkingCopy ();
202
- FileSystem:: write (self ::WORKING_DIR . '/patch.txt ' , self ::PATCH );
202
+ $ this -> filesystem -> dumpFile (self ::WORKING_DIR . '/patch.txt ' , self ::PATCH );
203
203
$ git ->apply ('patch.txt ' );
204
204
205
205
$ this ->assertMatchesRegularExpression ('#\?\? \\s+FileCreatedByPatch \\.txt#s ' , $ git ->getStatus ());
@@ -267,7 +267,7 @@ public function testGitClean(): void
267
267
{
268
268
$ git = $ this ->getWorkingCopy ();
269
269
270
- FileSystem:: write (self ::WORKING_DIR . '/untracked.file ' , "untracked \n" );
270
+ $ this -> filesystem -> dumpFile (self ::WORKING_DIR . '/untracked.file ' , "untracked \n" );
271
271
272
272
$ result = $ git ->clean ('-d ' , '-f ' );
273
273
@@ -285,7 +285,7 @@ public function testGitClean(): void
285
285
public function testGitReset (): void
286
286
{
287
287
$ git = $ this ->getWorkingCopy ();
288
- FileSystem:: write (self ::WORKING_DIR . '/change.me ' , "changed \n" );
288
+ $ this -> filesystem -> dumpFile (self ::WORKING_DIR . '/change.me ' , "changed \n" );
289
289
290
290
$ this ->assertTrue ($ git ->hasChanges ());
291
291
$ git ->reset ([
@@ -297,7 +297,7 @@ public function testGitReset(): void
297
297
public function testGitStatus (): void
298
298
{
299
299
$ git = $ this ->getWorkingCopy ();
300
- FileSystem:: write (self ::WORKING_DIR . '/change.me ' , "changed \n" );
300
+ $ this -> filesystem -> dumpFile (self ::WORKING_DIR . '/change.me ' , "changed \n" );
301
301
$ output = $ git ->status ([
302
302
's ' => true ,
303
303
]);
@@ -340,7 +340,7 @@ public function testGitPullErrorWithEmptyErrorOutput(): void
340
340
public function testGitDiff (): void
341
341
{
342
342
$ git = $ this ->getWorkingCopy ();
343
- FileSystem:: write (self ::WORKING_DIR . '/change.me ' , "changed \n" );
343
+ $ this -> filesystem -> dumpFile (self ::WORKING_DIR . '/change.me ' , "changed \n" );
344
344
$ output = $ git ->diff ();
345
345
346
346
$ this ->assertStringStartsWith ('diff --git a/change.me b/change.me ' , $ output );
@@ -385,7 +385,9 @@ public function testRebase(): void
385
385
$ output = $ git ->rebase ('test-branch ' , [
386
386
'onto ' => 'master ' ,
387
387
]);
388
- $ this ->assertStringStartsWith ('First, rewinding head ' , $ output );
388
+
389
+ // nothing to rebase
390
+ $ this ->assertSame ('' , $ output );
389
391
}
390
392
391
393
public function testMerge (): void
@@ -451,7 +453,7 @@ public function testLiveOutput(): void
451
453
public function testCommitWithAuthor (): void
452
454
{
453
455
$ git = $ this ->getWorkingCopy ();
454
- FileSystem:: write (self ::WORKING_DIR . '/commit.txt ' , "created \n" );
456
+ $ this -> filesystem -> dumpFile (self ::WORKING_DIR . '/commit.txt ' , "created \n" );
455
457
456
458
$ this ->assertTrue ($ git ->hasChanges ());
457
459
@@ -488,7 +490,7 @@ public function testIsUpToDate(): void
488
490
$ this ->assertTrue ($ git ->isUpToDate ());
489
491
490
492
// If we create a new commit, we are still up-to-date.
491
- FileSystem:: write (self ::WORKING_DIR . '/commit.txt ' , "created \n" );
493
+ $ this -> filesystem -> dumpFile (self ::WORKING_DIR . '/commit.txt ' , "created \n" );
492
494
$ git ->add ('commit.txt ' );
493
495
$ git ->commit ([
494
496
'm ' => '1 commit ahead. Still up-to-date. ' ,
@@ -512,7 +514,7 @@ public function testIsAhead(): void
512
514
$ this ->assertFalse ($ git ->isAhead ());
513
515
514
516
// Create a new commit, so that the branch is 1 commit ahead.
515
- FileSystem:: write (self ::WORKING_DIR . '/commit.txt ' , "created \n" );
517
+ $ this -> filesystem -> dumpFile (self ::WORKING_DIR . '/commit.txt ' , "created \n" );
516
518
$ git ->add ('commit.txt ' );
517
519
$ git ->commit ([
518
520
'm ' => '1 commit ahead. ' ,
@@ -554,7 +556,7 @@ public function testNeedsMerge(): void
554
556
555
557
// Create a new commit, so that the branch is also 1 commit ahead. Now a
556
558
// merge is needed.
557
- FileSystem:: write (self ::WORKING_DIR . '/commit.txt ' , "created \n" );
559
+ $ this -> filesystem -> dumpFile (self ::WORKING_DIR . '/commit.txt ' , "created \n" );
558
560
$ git ->add ('commit.txt ' );
559
561
$ git ->commit ([
560
562
'm ' => '1 commit ahead. ' ,
@@ -825,13 +827,13 @@ private function createRemote(): void
825
827
$ git ->config ('user.name ' , self ::CONFIG_NAME );
826
828
827
829
// Make a change to the remote repo.
828
- FileSystem:: write (self ::REMOTE_REPO_DIR . '/remote.file ' , "remote code \n" );
830
+ $ this -> filesystem -> dumpFile (self ::REMOTE_REPO_DIR . '/remote.file ' , "remote code \n" );
829
831
$ git ->add ('* ' );
830
832
$ git ->commit ('Remote change. ' );
831
833
832
834
// Create a branch.
833
835
$ branch = 'remote-branch ' ;
834
- FileSystem:: write (self ::REMOTE_REPO_DIR . '/remote-branch.txt ' , $ branch . PHP_EOL );
836
+ $ this -> filesystem -> dumpFile (self ::REMOTE_REPO_DIR . '/remote-branch.txt ' , $ branch . PHP_EOL );
835
837
$ git ->checkoutNewBranch ($ branch );
836
838
$ git ->add ('* ' );
837
839
$ git ->commit ('Commit remote testing branch. ' );
@@ -840,17 +842,29 @@ private function createRemote(): void
840
842
$ git ->tag ('remote-tag ' );
841
843
}
842
844
845
+ private function storeCurrentGitUserEmail (GitWorkingCopy $ gitWorkingCopy ): void
846
+ {
847
+ // relevant only locally
848
+ $ ciDetector = new CiDetector ();
849
+ if ($ ciDetector ->isCiDetected ()) {
850
+ return ;
851
+ }
852
+
853
+ // prevent local user.* override
854
+ $ this ->currentUserEmail = $ gitWorkingCopy ->config ('user.email ' );
855
+ $ this ->currentUserName = $ gitWorkingCopy ->config ('user.name ' );
856
+ }
857
+
843
858
private function restoreCurrentGitUserEmail (): void
844
859
{
860
+ // relevant only locally
861
+ $ ciDetector = new CiDetector ();
862
+ if ($ ciDetector ->isCiDetected ()) {
863
+ return ;
864
+ }
865
+
845
866
$ gitWorkingCopy = $ this ->gitWrapper ->workingCopy (self ::REPO_DIR );
846
867
$ gitWorkingCopy ->config ('user.email ' , $ this ->currentUserEmail );
847
868
$ gitWorkingCopy ->config ('user.name ' , $ this ->currentUserName );
848
869
}
849
-
850
- private function storeCurrentGitUserEmail (GitWorkingCopy $ git ): void
851
- {
852
- // prevent local user.* override
853
- $ this ->currentUserEmail = $ git ->config ('user.email ' );
854
- $ this ->currentUserName = $ git ->config ('user.name ' );
855
- }
856
870
}
0 commit comments