2012-03-29 13:34:57 +00:00
< ? php
/*
* 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\Downloader ;
use Composer\Downloader\ZipDownloader ;
2017-03-14 22:43:48 +00:00
use Composer\Package\PackageInterface ;
2018-11-12 14:23:32 +00:00
use Composer\Test\TestCase ;
2015-12-14 14:35:27 +00:00
use Composer\Util\Filesystem ;
2018-10-31 11:44:54 +00:00
use Composer\Util\HttpDownloader ;
2019-01-17 16:12:33 +00:00
use Composer\Util\Loop ;
2012-03-29 13:34:57 +00:00
2016-01-21 12:01:55 +00:00
class ZipDownloaderTest extends TestCase
2012-03-29 13:34:57 +00:00
{
2015-12-14 14:35:27 +00:00
/**
* @ var string
*/
2015-12-14 15:50:04 +00:00
private $testDir ;
2019-01-07 15:22:41 +00:00
private $httpDownloader ;
2018-11-12 14:23:32 +00:00
private $io ;
private $config ;
2019-01-17 16:12:33 +00:00
private $package ;
2015-12-14 14:35:27 +00:00
2012-03-29 13:34:57 +00:00
public function setUp ()
{
2016-01-21 12:01:55 +00:00
$this -> testDir = $this -> getUniqueTmpDirectory ();
2018-04-12 08:24:56 +00:00
$this -> io = $this -> getMockBuilder ( 'Composer\IO\IOInterface' ) -> getMock ();
$this -> config = $this -> getMockBuilder ( 'Composer\Config' ) -> getMock ();
2018-10-31 11:44:54 +00:00
$dlConfig = $this -> getMockBuilder ( 'Composer\Config' ) -> getMock ();
$this -> httpDownloader = new HttpDownloader ( $this -> io , $dlConfig );
2019-01-17 16:12:33 +00:00
$this -> package = $this -> getMockBuilder ( 'Composer\Package\PackageInterface' ) -> getMock ();
2015-12-14 14:35:27 +00:00
}
public function tearDown ()
{
2015-12-14 15:50:04 +00:00
$fs = new Filesystem ;
$fs -> removeDirectory ( $this -> testDir );
2017-03-30 07:24:48 +00:00
$this -> setPrivateProperty ( 'hasZipArchive' , null );
2017-03-14 22:43:48 +00:00
}
public function setPrivateProperty ( $name , $value , $obj = null )
{
$reflectionClass = new \ReflectionClass ( 'Composer\Downloader\ZipDownloader' );
$reflectedProperty = $reflectionClass -> getProperty ( $name );
$reflectedProperty -> setAccessible ( true );
if ( $obj === null ) {
2018-11-12 14:23:32 +00:00
$reflectedProperty -> setValue ( $value );
2017-03-14 22:43:48 +00:00
} else {
2018-11-12 14:23:32 +00:00
$reflectedProperty -> setValue ( $obj , $value );
2017-03-14 22:43:48 +00:00
}
2012-03-29 13:34:57 +00:00
}
public function testErrorMessages ()
{
2017-02-13 14:54:55 +00:00
if ( ! class_exists ( 'ZipArchive' )) {
$this -> markTestSkipped ( 'zip extension missing' );
}
2020-03-28 19:38:50 +00:00
$this -> config -> expects ( $this -> any ())
2017-03-14 22:43:48 +00:00
-> method ( 'get' )
-> with ( 'vendor-dir' )
-> will ( $this -> returnValue ( $this -> testDir ));
2019-01-17 16:12:33 +00:00
$this -> package -> expects ( $this -> any ())
2012-03-29 13:34:57 +00:00
-> method ( 'getDistUrl' )
2013-07-01 23:45:43 +00:00
-> will ( $this -> returnValue ( $distUrl = 'file://' . __FILE__ ))
;
2019-01-17 16:12:33 +00:00
$this -> package -> expects ( $this -> any ())
2013-07-01 23:45:43 +00:00
-> method ( 'getDistUrls' )
-> will ( $this -> returnValue ( array ( $distUrl )))
2012-03-29 13:34:57 +00:00
;
2019-01-17 16:12:33 +00:00
$this -> package -> expects ( $this -> atLeastOnce ())
2014-05-07 16:25:28 +00:00
-> method ( 'getTransportOptions' )
2013-08-19 07:38:25 +00:00
-> will ( $this -> returnValue ( array ()))
2012-03-29 13:34:57 +00:00
;
2018-10-31 11:44:54 +00:00
$downloader = new ZipDownloader ( $this -> io , $this -> config , $this -> httpDownloader );
2017-03-14 22:43:48 +00:00
2012-03-29 13:34:57 +00:00
try {
2019-01-17 16:12:33 +00:00
$loop = new Loop ( $this -> httpDownloader );
2020-06-05 06:33:44 +00:00
$promise = $downloader -> download ( $this -> package , $path = sys_get_temp_dir () . '/composer-zip-test' );
2019-01-17 16:12:33 +00:00
$loop -> wait ( array ( $promise ));
$downloader -> install ( $this -> package , $path );
2012-03-29 13:34:57 +00:00
$this -> fail ( 'Download of invalid zip files should throw an exception' );
2017-03-14 22:43:48 +00:00
} catch ( \Exception $e ) {
2020-09-10 15:21:11 +00:00
$this -> assertStringContainsString ( 'is not a zip archive' , $e -> getMessage ());
2012-03-29 13:34:57 +00:00
}
}
2017-02-13 14:54:55 +00:00
2017-03-14 22:43:48 +00:00
public function testZipArchiveOnlyFailed ()
{
2020-09-10 15:21:11 +00:00
$this -> setExpectedException ( 'RuntimeException' , 'There was an error extracting the ZIP file' );
2017-12-19 10:07:09 +00:00
if ( ! class_exists ( 'ZipArchive' )) {
$this -> markTestSkipped ( 'zip extension missing' );
}
2017-03-30 07:24:48 +00:00
$this -> setPrivateProperty ( 'hasZipArchive' , true );
2018-10-31 11:44:54 +00:00
$downloader = new MockedZipDownloader ( $this -> io , $this -> config , $this -> httpDownloader );
2018-04-12 08:24:56 +00:00
$zipArchive = $this -> getMockBuilder ( 'ZipArchive' ) -> getMock ();
2017-03-14 22:43:48 +00:00
$zipArchive -> expects ( $this -> at ( 0 ))
-> method ( 'open' )
-> will ( $this -> returnValue ( true ));
$zipArchive -> expects ( $this -> at ( 1 ))
-> method ( 'extractTo' )
-> will ( $this -> returnValue ( false ));
$this -> setPrivateProperty ( 'zipArchiveObject' , $zipArchive , $downloader );
2020-06-05 12:05:19 +00:00
$promise = $downloader -> extract ( $this -> package , 'testfile.zip' , 'vendor/dir' );
$this -> wait ( $promise );
2017-02-13 14:54:55 +00:00
}
2017-04-08 18:47:46 +00:00
public function testZipArchiveExtractOnlyFailed ()
{
2020-09-10 15:21:11 +00:00
$this -> setExpectedException ( 'RuntimeException' , 'The archive may contain identical file names with different capitalization (which fails on case insensitive filesystems): Not a directory' );
2017-12-19 10:07:09 +00:00
if ( ! class_exists ( 'ZipArchive' )) {
$this -> markTestSkipped ( 'zip extension missing' );
}
2017-04-08 18:47:46 +00:00
$this -> setPrivateProperty ( 'hasZipArchive' , true );
2018-10-31 11:44:54 +00:00
$downloader = new MockedZipDownloader ( $this -> io , $this -> config , $this -> httpDownloader );
2018-04-12 08:24:56 +00:00
$zipArchive = $this -> getMockBuilder ( 'ZipArchive' ) -> getMock ();
2017-04-08 18:47:46 +00:00
$zipArchive -> expects ( $this -> at ( 0 ))
-> method ( 'open' )
-> will ( $this -> returnValue ( true ));
$zipArchive -> expects ( $this -> at ( 1 ))
-> method ( 'extractTo' )
-> will ( $this -> throwException ( new \ErrorException ( 'Not a directory' )));
$this -> setPrivateProperty ( 'zipArchiveObject' , $zipArchive , $downloader );
2020-06-05 12:05:19 +00:00
$promise = $downloader -> extract ( $this -> package , 'testfile.zip' , 'vendor/dir' );
$this -> wait ( $promise );
2017-04-08 18:47:46 +00:00
}
2017-03-14 22:43:48 +00:00
public function testZipArchiveOnlyGood ()
{
2017-12-19 10:07:09 +00:00
if ( ! class_exists ( 'ZipArchive' )) {
$this -> markTestSkipped ( 'zip extension missing' );
}
2017-03-30 07:24:48 +00:00
$this -> setPrivateProperty ( 'hasZipArchive' , true );
2018-10-31 11:44:54 +00:00
$downloader = new MockedZipDownloader ( $this -> io , $this -> config , $this -> httpDownloader );
2018-04-12 08:24:56 +00:00
$zipArchive = $this -> getMockBuilder ( 'ZipArchive' ) -> getMock ();
2017-03-14 22:43:48 +00:00
$zipArchive -> expects ( $this -> at ( 0 ))
-> method ( 'open' )
-> will ( $this -> returnValue ( true ));
$zipArchive -> expects ( $this -> at ( 1 ))
-> method ( 'extractTo' )
-> will ( $this -> returnValue ( true ));
$this -> setPrivateProperty ( 'zipArchiveObject' , $zipArchive , $downloader );
2020-06-05 12:05:19 +00:00
$promise = $downloader -> extract ( $this -> package , 'testfile.zip' , 'vendor/dir' );
$this -> wait ( $promise );
2017-02-13 14:54:55 +00:00
}
2017-03-14 22:43:48 +00:00
public function testSystemUnzipOnlyFailed ()
{
2020-09-10 15:21:11 +00:00
$this -> setExpectedException ( 'Exception' , 'Failed to extract : (1) unzip' );
2020-06-05 07:07:40 +00:00
$this -> setPrivateProperty ( 'isWindows' , false );
2017-03-30 07:24:48 +00:00
$this -> setPrivateProperty ( 'hasZipArchive' , false );
2021-06-02 13:00:31 +00:00
$this -> setPrivateProperty ( 'unzipCommands' , array ( array ( 'unzip' , 'unzip -qq %s -d %s' )));
2020-06-05 07:07:40 +00:00
$procMock = $this -> getMockBuilder ( 'Symfony\Component\Process\Process' ) -> disableOriginalConstructor () -> getMock ();
$procMock -> expects ( $this -> any ())
-> method ( 'getExitCode' )
-> will ( $this -> returnValue ( 1 ));
$procMock -> expects ( $this -> any ())
-> method ( 'isSuccessful' )
-> will ( $this -> returnValue ( false ));
$procMock -> expects ( $this -> any ())
-> method ( 'getErrorOutput' )
-> will ( $this -> returnValue ( 'output' ));
2018-04-12 08:24:56 +00:00
$processExecutor = $this -> getMockBuilder ( 'Composer\Util\ProcessExecutor' ) -> getMock ();
2017-03-14 22:43:48 +00:00
$processExecutor -> expects ( $this -> at ( 0 ))
2020-06-05 07:07:40 +00:00
-> method ( 'executeAsync' )
-> will ( $this -> returnValue ( \React\Promise\resolve ( $procMock )));
2017-03-14 22:43:48 +00:00
2020-06-04 13:30:20 +00:00
$downloader = new MockedZipDownloader ( $this -> io , $this -> config , $this -> httpDownloader , null , null , null , $processExecutor );
2020-06-05 07:07:40 +00:00
$promise = $downloader -> extract ( $this -> package , 'testfile.zip' , 'vendor/dir' );
2020-06-05 12:05:19 +00:00
$this -> wait ( $promise );
2017-02-13 14:54:55 +00:00
}
2017-03-14 22:43:48 +00:00
public function testSystemUnzipOnlyGood ()
{
2020-06-05 07:07:40 +00:00
$this -> setPrivateProperty ( 'isWindows' , false );
2017-03-30 07:24:48 +00:00
$this -> setPrivateProperty ( 'hasZipArchive' , false );
2021-06-02 13:00:31 +00:00
$this -> setPrivateProperty ( 'unzipCommands' , array ( array ( 'unzip' , 'unzip -qq %s -d %s' )));
2020-06-05 07:07:40 +00:00
$procMock = $this -> getMockBuilder ( 'Symfony\Component\Process\Process' ) -> disableOriginalConstructor () -> getMock ();
$procMock -> expects ( $this -> any ())
-> method ( 'getExitCode' )
-> will ( $this -> returnValue ( 0 ));
$procMock -> expects ( $this -> any ())
-> method ( 'isSuccessful' )
-> will ( $this -> returnValue ( true ));
$procMock -> expects ( $this -> any ())
-> method ( 'getErrorOutput' )
-> will ( $this -> returnValue ( 'output' ));
2018-04-12 08:24:56 +00:00
$processExecutor = $this -> getMockBuilder ( 'Composer\Util\ProcessExecutor' ) -> getMock ();
2017-03-14 22:43:48 +00:00
$processExecutor -> expects ( $this -> at ( 0 ))
2020-06-05 07:07:40 +00:00
-> method ( 'executeAsync' )
-> will ( $this -> returnValue ( \React\Promise\resolve ( $procMock )));
2017-03-14 22:43:48 +00:00
2020-06-04 13:30:20 +00:00
$downloader = new MockedZipDownloader ( $this -> io , $this -> config , $this -> httpDownloader , null , null , null , $processExecutor );
2020-06-05 12:05:19 +00:00
$promise = $downloader -> extract ( $this -> package , 'testfile.zip' , 'vendor/dir' );
$this -> wait ( $promise );
2017-02-13 14:54:55 +00:00
}
2017-03-14 22:43:48 +00:00
public function testNonWindowsFallbackGood ()
{
2017-12-19 10:07:09 +00:00
if ( ! class_exists ( 'ZipArchive' )) {
$this -> markTestSkipped ( 'zip extension missing' );
}
2017-03-30 07:24:48 +00:00
$this -> setPrivateProperty ( 'isWindows' , false );
$this -> setPrivateProperty ( 'hasZipArchive' , true );
2017-03-14 22:43:48 +00:00
2020-06-05 07:07:40 +00:00
$procMock = $this -> getMockBuilder ( 'Symfony\Component\Process\Process' ) -> disableOriginalConstructor () -> getMock ();
$procMock -> expects ( $this -> any ())
-> method ( 'getExitCode' )
-> will ( $this -> returnValue ( 1 ));
$procMock -> expects ( $this -> any ())
-> method ( 'isSuccessful' )
-> will ( $this -> returnValue ( false ));
$procMock -> expects ( $this -> any ())
-> method ( 'getErrorOutput' )
-> will ( $this -> returnValue ( 'output' ));
2018-04-12 08:24:56 +00:00
$processExecutor = $this -> getMockBuilder ( 'Composer\Util\ProcessExecutor' ) -> getMock ();
2017-03-14 22:43:48 +00:00
$processExecutor -> expects ( $this -> at ( 0 ))
2020-06-05 07:07:40 +00:00
-> method ( 'executeAsync' )
-> will ( $this -> returnValue ( \React\Promise\resolve ( $procMock )));
2017-03-14 22:43:48 +00:00
2018-04-12 08:24:56 +00:00
$zipArchive = $this -> getMockBuilder ( 'ZipArchive' ) -> getMock ();
2017-03-14 22:43:48 +00:00
$zipArchive -> expects ( $this -> at ( 0 ))
-> method ( 'open' )
-> will ( $this -> returnValue ( true ));
$zipArchive -> expects ( $this -> at ( 1 ))
-> method ( 'extractTo' )
-> will ( $this -> returnValue ( true ));
2020-06-04 13:30:20 +00:00
$downloader = new MockedZipDownloader ( $this -> io , $this -> config , $this -> httpDownloader , null , null , null , $processExecutor );
2017-03-14 22:43:48 +00:00
$this -> setPrivateProperty ( 'zipArchiveObject' , $zipArchive , $downloader );
2020-06-05 12:05:19 +00:00
$promise = $downloader -> extract ( $this -> package , 'testfile.zip' , 'vendor/dir' );
$this -> wait ( $promise );
2017-02-13 14:54:55 +00:00
}
2017-03-14 22:43:48 +00:00
public function testNonWindowsFallbackFailed ()
{
2020-09-10 15:21:11 +00:00
$this -> setExpectedException ( 'Exception' , 'There was an error extracting the ZIP file' );
2017-12-19 10:07:09 +00:00
if ( ! class_exists ( 'ZipArchive' )) {
$this -> markTestSkipped ( 'zip extension missing' );
}
2017-03-30 07:24:48 +00:00
$this -> setPrivateProperty ( 'isWindows' , false );
$this -> setPrivateProperty ( 'hasZipArchive' , true );
2017-03-14 22:43:48 +00:00
2020-06-05 12:05:19 +00:00
$procMock = $this -> getMockBuilder ( 'Symfony\Component\Process\Process' ) -> disableOriginalConstructor () -> getMock ();
$procMock -> expects ( $this -> any ())
-> method ( 'getExitCode' )
-> will ( $this -> returnValue ( 1 ));
$procMock -> expects ( $this -> any ())
-> method ( 'isSuccessful' )
-> will ( $this -> returnValue ( false ));
$procMock -> expects ( $this -> any ())
-> method ( 'getErrorOutput' )
-> will ( $this -> returnValue ( 'output' ));
2018-04-12 08:24:56 +00:00
$processExecutor = $this -> getMockBuilder ( 'Composer\Util\ProcessExecutor' ) -> getMock ();
2017-03-14 22:43:48 +00:00
$processExecutor -> expects ( $this -> at ( 0 ))
2020-06-05 12:05:19 +00:00
-> method ( 'executeAsync' )
-> will ( $this -> returnValue ( \React\Promise\resolve ( $procMock )));
2017-03-14 22:43:48 +00:00
2018-04-12 08:24:56 +00:00
$zipArchive = $this -> getMockBuilder ( 'ZipArchive' ) -> getMock ();
2017-03-14 22:43:48 +00:00
$zipArchive -> expects ( $this -> at ( 0 ))
-> method ( 'open' )
-> will ( $this -> returnValue ( true ));
$zipArchive -> expects ( $this -> at ( 1 ))
-> method ( 'extractTo' )
-> will ( $this -> returnValue ( false ));
2020-06-04 13:30:20 +00:00
$downloader = new MockedZipDownloader ( $this -> io , $this -> config , $this -> httpDownloader , null , null , null , $processExecutor );
2017-03-14 22:43:48 +00:00
$this -> setPrivateProperty ( 'zipArchiveObject' , $zipArchive , $downloader );
2020-06-05 12:05:19 +00:00
$promise = $downloader -> extract ( $this -> package , 'testfile.zip' , 'vendor/dir' );
$this -> wait ( $promise );
}
private function wait ( $promise )
{
if ( null === $promise ) {
return ;
}
$e = null ;
$promise -> then ( function () {
// noop
}, function ( $ex ) use ( & $e ) {
$e = $ex ;
});
if ( $e ) {
throw $e ;
}
2017-02-13 14:54:55 +00:00
}
2017-03-14 22:43:48 +00:00
}
2017-02-13 14:54:55 +00:00
2017-03-14 22:43:48 +00:00
class MockedZipDownloader extends ZipDownloader
{
2019-08-29 09:37:23 +00:00
public function download ( PackageInterface $package , $path , PackageInterface $prevPackage = null , $output = true )
2017-03-14 22:43:48 +00:00
{
2021-03-09 14:49:40 +00:00
return \React\Promise\resolve ();
2017-02-13 14:54:55 +00:00
}
2019-01-17 16:12:33 +00:00
public function install ( PackageInterface $package , $path , $output = true )
{
2021-03-09 14:49:40 +00:00
return \React\Promise\resolve ();
2019-01-17 16:12:33 +00:00
}
public function extract ( PackageInterface $package , $file , $path )
2017-03-14 22:43:48 +00:00
{
2020-06-05 07:07:40 +00:00
return parent :: extract ( $package , $file , $path );
2017-02-13 14:54:55 +00:00
}
2012-03-29 13:34:57 +00:00
}