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

79 lines
2.3 KiB
PHP
Raw Normal View History

2015-11-03 22:20:23 +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\XzDownloader;
use Composer\Test\TestCase;
use Composer\Util\Filesystem;
use Composer\Util\Platform;
2016-01-10 20:45:40 +00:00
use Composer\Util\RemoteFilesystem;
2015-11-03 22:20:23 +00:00
class XzDownloaderTest extends TestCase
2015-11-03 22:20:23 +00:00
{
/**
* @var Filesystem
*/
private $fs;
/**
* @var string
*/
2016-01-09 18:39:18 +00:00
private $testDir;
2015-11-03 22:20:23 +00:00
public function setUp()
{
if (Platform::isWindows()) {
2015-11-03 22:20:23 +00:00
$this->markTestSkipped('Skip test on Windows');
}
$this->testDir = $this->getUniqueTmpDirectory();
}
public function tearDown()
{
2015-12-14 15:50:04 +00:00
$this->fs = new Filesystem;
2016-01-09 18:39:18 +00:00
$this->fs->removeDirectory($this->testDir);
2015-11-03 22:20:23 +00:00
}
public function testErrorMessages()
{
$packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
2015-11-03 22:20:23 +00:00
$packageMock->expects($this->any())
->method('getDistUrl')
->will($this->returnValue($distUrl = 'file://'.__FILE__))
;
$packageMock->expects($this->any())
->method('getDistUrls')
->will($this->returnValue(array($distUrl)))
;
$packageMock->expects($this->atLeastOnce())
->method('getTransportOptions')
->will($this->returnValue(array()))
;
$io = $this->getMockBuilder('Composer\IO\IOInterface')->getMock();
$config = $this->getMockBuilder('Composer\Config')->getMock();
2015-11-03 22:20:23 +00:00
$config->expects($this->any())
->method('get')
->with('vendor-dir')
2016-01-09 18:39:18 +00:00
->will($this->returnValue($this->testDir));
2016-01-10 20:45:40 +00:00
$downloader = new XzDownloader($io, $config, null, null, null, new RemoteFilesystem($io));
2015-11-03 22:20:23 +00:00
try {
$downloader->download($packageMock, $this->getUniqueTmpDirectory());
2015-11-03 22:20:23 +00:00
$this->fail('Download of invalid tarball should throw an exception');
} catch (\RuntimeException $e) {
$this->assertRegexp('/(File format not recognized|Unrecognized archive format)/i', $e->getMessage());
2015-11-03 22:20:23 +00:00
}
}
}