1
0
Fork 0
composer/tests/Composer/Test/Downloader/ZipDownloaderTest.php

80 lines
2.3 KiB
PHP
Raw Normal View History

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;
use Composer\Util\Filesystem;
2012-03-29 13:34:57 +00:00
class ZipDownloaderTest extends \PHPUnit_Framework_TestCase
{
/**
* @var string
*/
2015-12-14 15:50:04 +00:00
private $testDir;
2012-03-29 13:34:57 +00:00
public function setUp()
{
if (!class_exists('ZipArchive')) {
$this->markTestSkipped('zip extension missing');
}
2015-12-14 15:50:04 +00:00
$this->testDir = sys_get_temp_dir().'/composer-zip-test-vendor';
}
public function tearDown()
{
2015-12-14 15:50:04 +00:00
$fs = new Filesystem;
$fs->removeDirectory($this->testDir);
2012-03-29 13:34:57 +00:00
}
public function testErrorMessages()
{
$packageMock = $this->getMock('Composer\Package\PackageInterface');
$packageMock->expects($this->any())
->method('getDistUrl')
->will($this->returnValue($distUrl = 'file://'.__FILE__))
;
$packageMock->expects($this->any())
->method('getDistUrls')
->will($this->returnValue(array($distUrl)))
2012-03-29 13:34:57 +00:00
;
$packageMock->expects($this->atLeastOnce())
->method('getTransportOptions')
->will($this->returnValue(array()))
2012-03-29 13:34:57 +00:00
;
$io = $this->getMock('Composer\IO\IOInterface');
$config = $this->getMock('Composer\Config');
$config->expects($this->at(0))
->method('get')
->with('disable-tls')
->will($this->returnValue(false));
$config->expects($this->at(1))
->method('get')
->with('cafile')
->will($this->returnValue(null));
$config->expects($this->at(2))
2013-06-19 08:05:21 +00:00
->method('get')
->with('vendor-dir')
2015-12-14 15:50:04 +00:00
->will($this->returnValue($this->testDir));
$downloader = new ZipDownloader($io, $config);
2012-03-29 13:34:57 +00:00
try {
$downloader->download($packageMock, sys_get_temp_dir().'/composer-zip-test');
$this->fail('Download of invalid zip files should throw an exception');
} catch (\UnexpectedValueException $e) {
$this->assertContains('is not a zip archive', $e->getMessage());
}
}
}