2022-02-23 15:58:18 +00:00
|
|
|
<?php declare(strict_types=1);
|
2020-08-12 18:30:58 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of Composer.
|
|
|
|
*
|
|
|
|
* (c) Nils Adermann <naderman@naderman.de>
|
|
|
|
* Jordi Boggiano <j.boggiano@seld.be>
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Composer\Test\Util;
|
|
|
|
|
|
|
|
use Composer\Util\Tar;
|
|
|
|
use Composer\Test\TestCase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author Wissem Riahi <wissemr@gmail.com>
|
|
|
|
*/
|
|
|
|
class TarTest extends TestCase
|
|
|
|
{
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testReturnsNullifTheTarIsNotFound(): void
|
2020-08-12 18:30:58 +00:00
|
|
|
{
|
|
|
|
$result = Tar::getComposerJson(__DIR__.'/Fixtures/Tar/invalid.zip');
|
|
|
|
|
2024-05-29 21:12:06 +00:00
|
|
|
self::assertNull($result);
|
2020-08-12 18:30:58 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testReturnsNullIfTheTarIsEmpty(): void
|
2020-08-12 18:30:58 +00:00
|
|
|
{
|
|
|
|
$result = Tar::getComposerJson(__DIR__.'/Fixtures/Tar/empty.tar.gz');
|
2024-05-29 21:12:06 +00:00
|
|
|
self::assertNull($result);
|
2020-08-12 18:30:58 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testThrowsExceptionIfTheTarHasNoComposerJson(): void
|
2020-08-12 18:30:58 +00:00
|
|
|
{
|
2021-12-09 19:55:26 +00:00
|
|
|
self::expectException('RuntimeException');
|
2020-08-12 18:30:58 +00:00
|
|
|
Tar::getComposerJson(__DIR__.'/Fixtures/Tar/nojson.tar.gz');
|
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testThrowsExceptionIfTheComposerJsonIsInASubSubfolder(): void
|
2020-08-12 18:30:58 +00:00
|
|
|
{
|
2021-12-09 19:55:26 +00:00
|
|
|
self::expectException('RuntimeException');
|
2020-08-12 18:30:58 +00:00
|
|
|
Tar::getComposerJson(__DIR__.'/Fixtures/Tar/subfolders.tar.gz');
|
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testReturnsComposerJsonInTarRoot(): void
|
2020-08-12 18:30:58 +00:00
|
|
|
{
|
|
|
|
$result = Tar::getComposerJson(__DIR__.'/Fixtures/Tar/root.tar.gz');
|
2024-05-29 21:12:06 +00:00
|
|
|
self::assertEquals("{\n \"name\": \"foo/bar\"\n}\n", $result);
|
2020-08-12 18:30:58 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testReturnsComposerJsonInFirstFolder(): void
|
2020-08-12 18:30:58 +00:00
|
|
|
{
|
|
|
|
$result = Tar::getComposerJson(__DIR__.'/Fixtures/Tar/folder.tar.gz');
|
2024-05-29 21:12:06 +00:00
|
|
|
self::assertEquals("{\n \"name\": \"foo/bar\"\n}\n", $result);
|
2020-08-12 18:30:58 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testMultipleTopLevelDirsIsInvalid(): void
|
2020-08-12 18:30:58 +00:00
|
|
|
{
|
2021-12-09 19:55:26 +00:00
|
|
|
self::expectException('RuntimeException');
|
2020-08-12 18:30:58 +00:00
|
|
|
Tar::getComposerJson(__DIR__.'/Fixtures/Tar/multiple.tar.gz');
|
|
|
|
}
|
|
|
|
}
|