Skip to content

Commit f2744b8

Browse files
committedJan 3, 2021
nothing to rebase
1 parent aec23e1 commit f2744b8

File tree

3 files changed

+43
-24
lines changed

3 files changed

+43
-24
lines changed
 

‎composer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
"rector/rector": "^0.9",
2525
"tracy/tracy": "^2.7",
2626
"phpstan/phpstan-phpunit": "^0.12",
27-
"symplify/phpstan-rules": "^9.0"
27+
"symplify/phpstan-rules": "^9.0",
28+
"ondram/ci-detector": "^3.5"
2829
},
2930
"autoload": {
3031
"psr-4": {

‎rector.php

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
declare(strict_types=1);
44

5+
use Rector\CodingStyle\Rector\ClassMethod\UnSpreadOperatorRector;
56
use Rector\Core\Configuration\Option;
67
use Rector\Privatization\Rector\ClassMethod\PrivatizeFinalClassMethodRector;
78
use Rector\Set\ValueObject\SetList;
@@ -27,5 +28,8 @@
2728

2829
$parameters->set(Option::SKIP, [
2930
PrivatizeFinalClassMethodRector::class => [__DIR__ . '/tests/GitWorkingCopyTest.php'],
31+
32+
// run after CI is setup
33+
UnSpreadOperatorRector::class,
3034
]);
3135
};

‎tests/GitWorkingCopyTest.php

+37-23
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
use GitWrapper\Tests\Source\StreamSuppressFilter;
1212
use GitWrapper\ValueObject\CommandName;
1313
use Iterator;
14-
use Nette\Utils\FileSystem;
1514
use Nette\Utils\Strings;
15+
use OndraM\CiDetector\CiDetector;
1616
use Symfony\Component\Process\Process;
1717

1818
final class GitWorkingCopyTest extends AbstractGitWrapperTestCase
@@ -76,7 +76,7 @@ protected function setUp(): void
7676
$git->config('user.name', self::CONFIG_NAME);
7777

7878
// Create the initial structure.
79-
FileSystem::write(self::DIRECTORY . '/change.me', "unchanged\n");
79+
$this->filesystem->dumpFile(self::DIRECTORY . '/change.me', "unchanged\n");
8080
$this->filesystem->touch(self::DIRECTORY . '/move.me');
8181
$this->filesystem->mkdir(self::DIRECTORY . '/a.directory', 0755);
8282
$this->filesystem->touch(self::DIRECTORY . '/a.directory/remove.me');
@@ -90,7 +90,7 @@ protected function setUp(): void
9090

9191
// Create a branch, add a file.
9292
$branch = 'test-branch';
93-
FileSystem::write(self::DIRECTORY . '/branch.txt', $branch . PHP_EOL);
93+
$this->filesystem->dumpFile(self::DIRECTORY . '/branch.txt', $branch . PHP_EOL);
9494
$git->checkoutNewBranch($branch);
9595
$git->add('branch.txt');
9696
$git->commit('Committed testing branch.');
@@ -153,7 +153,7 @@ public function testHasChanges(): void
153153
$gitWorkingCopy = $this->getWorkingCopy();
154154
$this->assertFalse($gitWorkingCopy->hasChanges());
155155

156-
FileSystem::write(self::WORKING_DIR . '/change.me', "changed\n");
156+
$this->filesystem->dumpFile(self::WORKING_DIR . '/change.me', "changed\n");
157157
$this->assertTrue($gitWorkingCopy->hasChanges());
158158
}
159159

@@ -199,7 +199,7 @@ public function testGitAdd(): void
199199
public function testGitApply(): void
200200
{
201201
$git = $this->getWorkingCopy();
202-
FileSystem::write(self::WORKING_DIR . '/patch.txt', self::PATCH);
202+
$this->filesystem->dumpFile(self::WORKING_DIR . '/patch.txt', self::PATCH);
203203
$git->apply('patch.txt');
204204

205205
$this->assertMatchesRegularExpression('#\?\?\\s+FileCreatedByPatch\\.txt#s', $git->getStatus());
@@ -267,7 +267,7 @@ public function testGitClean(): void
267267
{
268268
$git = $this->getWorkingCopy();
269269

270-
FileSystem::write(self::WORKING_DIR . '/untracked.file', "untracked\n");
270+
$this->filesystem->dumpFile(self::WORKING_DIR . '/untracked.file', "untracked\n");
271271

272272
$result = $git->clean('-d', '-f');
273273

@@ -285,7 +285,7 @@ public function testGitClean(): void
285285
public function testGitReset(): void
286286
{
287287
$git = $this->getWorkingCopy();
288-
FileSystem::write(self::WORKING_DIR . '/change.me', "changed\n");
288+
$this->filesystem->dumpFile(self::WORKING_DIR . '/change.me', "changed\n");
289289

290290
$this->assertTrue($git->hasChanges());
291291
$git->reset([
@@ -297,7 +297,7 @@ public function testGitReset(): void
297297
public function testGitStatus(): void
298298
{
299299
$git = $this->getWorkingCopy();
300-
FileSystem::write(self::WORKING_DIR . '/change.me', "changed\n");
300+
$this->filesystem->dumpFile(self::WORKING_DIR . '/change.me', "changed\n");
301301
$output = $git->status([
302302
's' => true,
303303
]);
@@ -340,7 +340,7 @@ public function testGitPullErrorWithEmptyErrorOutput(): void
340340
public function testGitDiff(): void
341341
{
342342
$git = $this->getWorkingCopy();
343-
FileSystem::write(self::WORKING_DIR . '/change.me', "changed\n");
343+
$this->filesystem->dumpFile(self::WORKING_DIR . '/change.me', "changed\n");
344344
$output = $git->diff();
345345

346346
$this->assertStringStartsWith('diff --git a/change.me b/change.me', $output);
@@ -385,7 +385,9 @@ public function testRebase(): void
385385
$output = $git->rebase('test-branch', [
386386
'onto' => 'master',
387387
]);
388-
$this->assertStringStartsWith('First, rewinding head', $output);
388+
389+
// nothing to rebase
390+
$this->assertSame('', $output);
389391
}
390392

391393
public function testMerge(): void
@@ -451,7 +453,7 @@ public function testLiveOutput(): void
451453
public function testCommitWithAuthor(): void
452454
{
453455
$git = $this->getWorkingCopy();
454-
FileSystem::write(self::WORKING_DIR . '/commit.txt', "created\n");
456+
$this->filesystem->dumpFile(self::WORKING_DIR . '/commit.txt', "created\n");
455457

456458
$this->assertTrue($git->hasChanges());
457459

@@ -488,7 +490,7 @@ public function testIsUpToDate(): void
488490
$this->assertTrue($git->isUpToDate());
489491

490492
// 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");
492494
$git->add('commit.txt');
493495
$git->commit([
494496
'm' => '1 commit ahead. Still up-to-date.',
@@ -512,7 +514,7 @@ public function testIsAhead(): void
512514
$this->assertFalse($git->isAhead());
513515

514516
// 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");
516518
$git->add('commit.txt');
517519
$git->commit([
518520
'm' => '1 commit ahead.',
@@ -554,7 +556,7 @@ public function testNeedsMerge(): void
554556

555557
// Create a new commit, so that the branch is also 1 commit ahead. Now a
556558
// merge is needed.
557-
FileSystem::write(self::WORKING_DIR . '/commit.txt', "created\n");
559+
$this->filesystem->dumpFile(self::WORKING_DIR . '/commit.txt', "created\n");
558560
$git->add('commit.txt');
559561
$git->commit([
560562
'm' => '1 commit ahead.',
@@ -825,13 +827,13 @@ private function createRemote(): void
825827
$git->config('user.name', self::CONFIG_NAME);
826828

827829
// 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");
829831
$git->add('*');
830832
$git->commit('Remote change.');
831833

832834
// Create a branch.
833835
$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);
835837
$git->checkoutNewBranch($branch);
836838
$git->add('*');
837839
$git->commit('Commit remote testing branch.');
@@ -840,17 +842,29 @@ private function createRemote(): void
840842
$git->tag('remote-tag');
841843
}
842844

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+
843858
private function restoreCurrentGitUserEmail(): void
844859
{
860+
// relevant only locally
861+
$ciDetector = new CiDetector();
862+
if ($ciDetector->isCiDetected()) {
863+
return;
864+
}
865+
845866
$gitWorkingCopy = $this->gitWrapper->workingCopy(self::REPO_DIR);
846867
$gitWorkingCopy->config('user.email', $this->currentUserEmail);
847868
$gitWorkingCopy->config('user.name', $this->currentUserName);
848869
}
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-
}
856870
}

0 commit comments

Comments
 (0)
Please sign in to comment.