object = new Git(true); $this->testDir = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'gittempdir_' . random_int(0, mt_getrandmax()); unset($_SESSION['git_location']); unset($_SESSION['is_git_revision']); $this->cwd = is_string(getcwd()) ? getcwd() : './'; mkdir($this->testDir); chdir((string) $this->testDir); } /** * Tears down the fixture, for example, closes a network connection. * This method is called after a test is executed. */ protected function tearDown(): void { chdir((string) $this->cwd); rmdir($this->testDir); parent::tearDown(); unset($this->object); } /** * Test for isGitRevision */ public function testIsGitRevision(): void { $_SESSION['git_location'] = '.cachedgitlocation'; $_SESSION['is_git_revision'] = true; $git_location = ''; $this->assertTrue($this->object->isGitRevision($git_location)); $this->assertFalse($this->object->hasGitInformation()); $this->assertEquals('.cachedgitlocation', $git_location); } /** * Test for isGitRevision */ public function testIsGitRevisionSkipped(): void { $this->object = new Git(false); $this->assertFalse( $this->object->isGitRevision($git_location) ); } /** * Test for isGitRevision * * @group git-revision */ public function testIsGitRevisionLocalGitDir(): void { $this->assertFalse( $this->object->isGitRevision() ); $this->assertFalse($this->object->hasGitInformation()); unset($_SESSION['git_location']); unset($_SESSION['is_git_revision']); mkdir('.git'); $this->assertFalse( $this->object->isGitRevision() ); $this->assertFalse($this->object->hasGitInformation()); unset($_SESSION['git_location']); unset($_SESSION['is_git_revision']); file_put_contents('.git/config', ''); $this->assertTrue($this->object->isGitRevision()); $this->assertFalse($this->object->hasGitInformation()); unlink('.git/config'); rmdir('.git'); } /** * Test for isGitRevision * * @group git-revision */ public function testIsGitRevisionExternalGitDir(): void { file_put_contents('.git', 'gitdir: ./.customgitdir'); $this->assertFalse( $this->object->isGitRevision() ); $this->assertFalse($this->object->hasGitInformation()); unset($_SESSION['git_location']); unset($_SESSION['is_git_revision']); mkdir('.customgitdir'); $this->assertTrue($this->object->isGitRevision()); $this->assertFalse($this->object->hasGitInformation()); unset($_SESSION['git_location']); unset($_SESSION['is_git_revision']); file_put_contents('.git', 'random data here'); $this->assertFalse( $this->object->isGitRevision() ); $this->assertFalse($this->object->hasGitInformation()); unlink('.git'); rmdir('.customgitdir'); } /** * Test for checkGitRevision packs folder * * @group git-revision */ public function testCheckGitRevisionPacksFolder(): void { mkdir('.git'); file_put_contents('.git/config', ''); $commit = $this->object->checkGitRevision(); $this->assertNull($commit); $this->assertFalse($this->object->hasGitInformation()); file_put_contents('.git/HEAD', 'ref: refs/remotes/origin/master'); $commit = $this->object->checkGitRevision(); $this->assertNull($commit); file_put_contents( '.git/packed-refs', '# pack-refs with: peeled fully-peeled sorted' . PHP_EOL . 'c1f2ff2eb0c3fda741f859913fd589379f4e4a8f refs/tags/4.3.10' . PHP_EOL . '^6f2e60343b0a324c65f2d1411bf4bd03e114fb98' . PHP_EOL . '17bf8b7309919f8ac593d7c563b31472780ee83b refs/remotes/origin/master' . PHP_EOL ); mkdir('.git/objects/pack', 0777, true);//default = 0777, recursive mode $commit = $this->object->checkGitRevision(); if ( $commit === null && ! isset($_SESSION['PMA_VERSION_REMOTECOMMIT_17bf8b7309919f8ac593d7c563b31472780ee83b']) ) { $this->markTestSkipped('Unable to get remote commit information.'); } $this->assertIsArray($commit); $this->assertArrayHasKey('hash', $commit); $this->assertEquals('17bf8b7309919f8ac593d7c563b31472780ee83b', $commit['hash']); $this->assertArrayHasKey('branch', $commit); $this->assertEquals('master', $commit['branch']); $this->assertArrayHasKey('message', $commit); $this->assertIsString($commit['message']); $this->assertArrayHasKey('is_remote_commit', $commit); $this->assertIsBool($commit['is_remote_commit']); $this->assertArrayHasKey('is_remote_branch', $commit); $this->assertIsBool($commit['is_remote_branch']); $this->assertArrayHasKey('author', $commit); $this->assertIsArray($commit['author']); $this->assertArrayHasKey('name', $commit['author']); $this->assertArrayHasKey('email', $commit['author']); $this->assertArrayHasKey('date', $commit['author']); $this->assertIsString($commit['author']['name']); $this->assertIsString($commit['author']['email']); $this->assertIsString($commit['author']['date']); $this->assertArrayHasKey('committer', $commit); $this->assertIsArray($commit['committer']); $this->assertArrayHasKey('name', $commit['committer']); $this->assertArrayHasKey('email', $commit['committer']); $this->assertArrayHasKey('date', $commit['committer']); $this->assertIsString($commit['committer']['name']); $this->assertIsString($commit['committer']['email']); $this->assertIsString($commit['committer']['date']); rmdir('.git/objects/pack'); rmdir('.git/objects'); unlink('.git/packed-refs'); unlink('.git/HEAD'); unlink('.git/config'); rmdir('.git'); } /** * Test for checkGitRevision packs folder * * @group git-revision */ public function testCheckGitRevisionRefFile(): void { mkdir('.git'); file_put_contents('.git/config', ''); $commit = $this->object->checkGitRevision(); $this->assertNull($commit); $this->assertFalse($this->object->hasGitInformation()); file_put_contents('.git/HEAD', 'ref: refs/remotes/origin/master'); mkdir('.git/refs/remotes/origin', 0777, true); file_put_contents('.git/refs/remotes/origin/master', 'c1f2ff2eb0c3fda741f859913fd589379f4e4a8f'); mkdir('.git/objects/pack', 0777, true);//default = 0777, recursive mode $commit = $this->object->checkGitRevision(); $this->assertNull($commit); $this->assertFalse($this->object->hasGitInformation()); unlink('.git/refs/remotes/origin/master'); rmdir('.git/refs/remotes/origin'); rmdir('.git/refs/remotes'); rmdir('.git/refs'); rmdir('.git/objects/pack'); rmdir('.git/objects'); unlink('.git/HEAD'); unlink('.git/config'); rmdir('.git'); } /** * Test for checkGitRevision with packs as file * * @group git-revision */ public function testCheckGitRevisionPacksFile(): void { mkdir('.git'); file_put_contents('.git/config', ''); $commit = $this->object->checkGitRevision(); $this->assertNull($commit); $this->assertFalse($this->object->hasGitInformation()); file_put_contents('.git/HEAD', 'ref: refs/remotes/origin/master'); $commit = $this->object->checkGitRevision(); $this->assertNull($commit); file_put_contents( '.git/packed-refs', '# pack-refs with: peeled fully-peeled sorted' . PHP_EOL . 'c1f2ff2eb0c3fda741f859913fd589379f4e4a8f refs/tags/4.3.10' . PHP_EOL . '^6f2e60343b0a324c65f2d1411bf4bd03e114fb98' . PHP_EOL . '17bf8b7309919f8ac593d7c563b31472780ee83b refs/remotes/origin/master' . PHP_EOL ); mkdir('.git/objects/info', 0777, true); file_put_contents( '.git/objects/info/packs', 'P pack-faea49765800da462c70bea555848cc8c7a1c28d.pack' . PHP_EOL . ' pack-.pack' . PHP_EOL . PHP_EOL . 'P pack-420568bae521465fd11863bff155a2b2831023.pack' . PHP_EOL . PHP_EOL ); $commit = $this->object->checkGitRevision(); if ( $commit === null && ! isset($_SESSION['PMA_VERSION_REMOTECOMMIT_17bf8b7309919f8ac593d7c563b31472780ee83b']) ) { $this->markTestSkipped('Unable to get remote commit information.'); } $this->assertIsArray($commit); $this->assertArrayHasKey('hash', $commit); $this->assertEquals('17bf8b7309919f8ac593d7c563b31472780ee83b', $commit['hash']); $this->assertArrayHasKey('branch', $commit); $this->assertEquals('master', $commit['branch']); $this->assertArrayHasKey('message', $commit); $this->assertIsString($commit['message']); $this->assertArrayHasKey('is_remote_commit', $commit); $this->assertIsBool($commit['is_remote_commit']); $this->assertArrayHasKey('is_remote_branch', $commit); $this->assertIsBool($commit['is_remote_branch']); $this->assertArrayHasKey('author', $commit); $this->assertIsArray($commit['author']); $this->assertArrayHasKey('name', $commit['author']); $this->assertArrayHasKey('email', $commit['author']); $this->assertArrayHasKey('date', $commit['author']); $this->assertIsString($commit['author']['name']); $this->assertIsString($commit['author']['email']); $this->assertIsString($commit['author']['date']); $this->assertArrayHasKey('committer', $commit); $this->assertIsArray($commit['committer']); $this->assertArrayHasKey('name', $commit['committer']); $this->assertArrayHasKey('email', $commit['committer']); $this->assertArrayHasKey('date', $commit['committer']); $this->assertIsString($commit['committer']['name']); $this->assertIsString($commit['committer']['email']); $this->assertIsString($commit['committer']['date']); unlink('.git/objects/info/packs'); rmdir('.git/objects/info'); rmdir('.git/objects'); unlink('.git/packed-refs'); unlink('.git/HEAD'); unlink('.git/config'); rmdir('.git'); } /** * Test for checkGitRevision */ public function testCheckGitRevisionSkipped(): void { $this->object = new Git(false); $commit = $this->object->checkGitRevision(); $this->assertNull($commit); $this->assertFalse($this->object->hasGitInformation()); } /** * Test for git infos in session */ public function testSessionCacheGitFolder(): void { $_SESSION['git_location'] = 'customdir/.git'; $_SESSION['is_git_revision'] = true; $gitFolder = ''; $this->assertTrue($this->object->isGitRevision($gitFolder)); $this->assertEquals($gitFolder, 'customdir/.git'); } /** * Test that git folder is not looked up if cached value is false */ public function testSessionCacheGitFolderNotRevisionNull(): void { $_SESSION['is_git_revision'] = false; $_SESSION['git_location'] = null; $gitFolder = 'defaultvaluebyref'; $this->assertFalse($this->object->isGitRevision($gitFolder)); // Assert that the value is replaced by cached one $this->assertEquals($gitFolder, null); } /** * Test that git folder is not looked up if cached value is false */ public function testSessionCacheGitFolderNotRevisionString(): void { $_SESSION['is_git_revision'] = false; $_SESSION['git_location'] = 'randomdir/.git'; $gitFolder = 'defaultvaluebyref'; $this->assertFalse($this->object->isGitRevision($gitFolder)); // Assert that the value is replaced by cached one $this->assertEquals($gitFolder, 'randomdir/.git'); } /** * Test that we can extract values from Git objects */ public function testExtractDataFormTextBody(): void { $extractedData = $this->callFunction( $this->object, Git::class, 'extractDataFormTextBody', [ [ 'tree ed7fec263e1813887001855ddca9293479289180', 'parent 90543399991cdb294185f90e8ae1a45e059c31ab', 'author William Desportes 1657717000 +0200', 'committer William Desportes 1657717000 +0200', 'gpgsig -----BEGIN PGP SIGNATURE-----', ' ', ' iQIzBAABCgAdFiEExNkf3872tKPGU\/14kKDvG4JRqIkFAmLOwQgACgkQkKDvG4JR', ' qIn8Kg\/+Os5e3bFLEtd3q\/w3e4IfvR64rdadA4IUugd4pJvGqJHleJNBQ8PNqwjR', ' 9W0S9PQXAsul0XW5YtuLmBMGFFQDOab2ieix9CVA1w0D7quVQR8uLNb1Gln28NuS', ' 6b24Q4cAQlp5uOoKT3ohRBUtGmu8SXF8Q\/5BwPY1AuL1LqY6w6EwSsInPXK1Yq3r', ' RShxRXDhonKx3NqoCdRkWmAKkQrztWGGBI7mBG\/\/X0F4hSjsuwdpHBsl6yyri9p2', ' bJbyAI+xQ+rBHb0iFIoLbxj6G1EkEmpISl+4980uef24SwMVk9ZOfH8cAgBZ62Mf', ' xJ3f99ujhD9dvwCQivOwcEav+fPObiLC0EzfoqZgB7rTQdxUIu7WRpShZGwfuiEv', ' sBmvQcnZptYHi0Kk78fdzISCQcPBgCw0gGcv+yLOE3HuQ24B+ncCusYdxyJQqMSc', ' pm9vVHpwioufy5c7aBa05K7f2b1AhiZeVpT2t\/rboIYlIhQGY9uRNGX44Qtt6Oeb', ' G6aU8O7gS5+Wsj00K+uSvUE\/znxx7Ad0zVuFQGUAhd3cDp9T09+FIr4TOE+3Z4Pk', ' PlssVGVBdbaNaI0\/eV6fTa6B0hMH9mhmZhtHLXdsTw5xVySz7by5DZqZldydSFtk', ' tVuUPxykK6F0qY79IPBH8Unx8egIlSzKWfP0JpRd+otemBnTKWg=', ' =BVHc', ' -----END PGP SIGNATURE-----', '', 'Remove ignore config.inc.php for psalm because it fails the CI', '', 'Signed-off-by: William Desportes ', '', ], ] ); $this->assertSame([ [ 'name' => 'William Desportes', 'email' => 'williamdes@wdes.fr', 'date' => '2022-07-13 12:56:40 +0200', ], [ 'name' => 'William Desportes', 'email' => 'williamdes@wdes.fr', 'date' => '2022-07-13 12:56:40 +0200', ], 'Remove ignore config.inc.php for psalm because ' . 'it fails the CI Signed-off-by: William Desportes ', ], $extractedData); } }