2011-12-03 19:44:00 +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\Repository;
|
|
|
|
|
|
|
|
use Composer\Downloader\Util\Filesystem;
|
|
|
|
use Composer\Test\TestCase;
|
|
|
|
|
|
|
|
class FilesystemTest extends TestCase
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @dataProvider providePathCouplesAsCode
|
|
|
|
*/
|
2011-12-03 22:21:10 +00:00
|
|
|
public function testFindShortestPathCode($a, $b, $directory, $expected)
|
2011-12-03 19:44:00 +00:00
|
|
|
{
|
|
|
|
$fs = new Filesystem;
|
2011-12-03 22:21:10 +00:00
|
|
|
$this->assertEquals($expected, $fs->findShortestPathCode($a, $b, $directory));
|
2011-12-03 19:44:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function providePathCouplesAsCode()
|
|
|
|
{
|
|
|
|
return array(
|
2011-12-03 22:21:10 +00:00
|
|
|
array('/foo/bar', '/foo/bar', false, "__FILE__"),
|
|
|
|
array('/foo/bar', '/foo/baz', false, "__DIR__.'/baz'"),
|
|
|
|
array('/foo/bin/run', '/foo/vendor/acme/bin/run', false, "dirname(__DIR__).'/vendor/acme/bin/run'"),
|
|
|
|
array('/foo/bin/run', '/foo/vendor/acme/bin/run', false, "dirname(__DIR__).'/vendor/acme/bin/run'"),
|
|
|
|
array('/foo/bin/run', '/bar/bin/run', false, "'/bar/bin/run'"),
|
|
|
|
array('c:/bin/run', 'c:/vendor/acme/bin/run', false, "dirname(__DIR__).'/vendor/acme/bin/run'"),
|
|
|
|
array('c:\\bin\\run', 'c:/vendor/acme/bin/run', false, "dirname(__DIR__).'/vendor/acme/bin/run'"),
|
|
|
|
array('c:/bin/run', 'd:/vendor/acme/bin/run', false, "'d:/vendor/acme/bin/run'"),
|
|
|
|
array('c:\\bin\\run', 'd:/vendor/acme/bin/run', false, "'d:/vendor/acme/bin/run'"),
|
|
|
|
array('/foo/bar', '/foo/bar', true, "__DIR__"),
|
|
|
|
array('/foo/bar', '/foo/baz', true, "dirname(__DIR__).'/baz'"),
|
|
|
|
array('/foo/bin/run', '/foo/vendor/acme/bin/run', true, "dirname(dirname(__DIR__)).'/vendor/acme/bin/run'"),
|
|
|
|
array('/foo/bin/run', '/foo/vendor/acme/bin/run', true, "dirname(dirname(__DIR__)).'/vendor/acme/bin/run'"),
|
|
|
|
array('/foo/bin/run', '/bar/bin/run', true, "'/bar/bin/run'"),
|
|
|
|
array('c:/bin/run', 'c:/vendor/acme/bin/run', true, "dirname(dirname(__DIR__)).'/vendor/acme/bin/run'"),
|
|
|
|
array('c:\\bin\\run', 'c:/vendor/acme/bin/run', true, "dirname(dirname(__DIR__)).'/vendor/acme/bin/run'"),
|
|
|
|
array('c:/bin/run', 'd:/vendor/acme/bin/run', true, "'d:/vendor/acme/bin/run'"),
|
|
|
|
array('c:\\bin\\run', 'd:/vendor/acme/bin/run', true, "'d:/vendor/acme/bin/run'"),
|
|
|
|
array('C:/Temp/test', 'C:\Temp', true, "dirname(__DIR__)"),
|
|
|
|
array('C:/Temp', 'C:\Temp\test', true, "__DIR__ . '/test'"),
|
2011-12-04 21:40:30 +00:00
|
|
|
array('/tmp/test', '/tmp', true, "dirname(__DIR__)"),
|
|
|
|
array('/tmp', '/tmp/test', true, "__DIR__ . '/test'"),
|
2011-12-18 20:10:10 +00:00
|
|
|
array('C:/Temp', 'c:\Temp\test', true, "__DIR__ . '/test'"),
|
2011-12-03 19:44:00 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providePathCouples
|
|
|
|
*/
|
|
|
|
public function testFindShortestPath($a, $b, $expected)
|
|
|
|
{
|
|
|
|
$fs = new Filesystem;
|
|
|
|
$this->assertEquals($expected, $fs->findShortestPath($a, $b));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function providePathCouples()
|
|
|
|
{
|
|
|
|
return array(
|
|
|
|
array('/foo/bar', '/foo/bar', "./bar"),
|
|
|
|
array('/foo/bar', '/foo/baz', "./baz"),
|
|
|
|
array('/foo/bin/run', '/foo/vendor/acme/bin/run', "../vendor/acme/bin/run"),
|
|
|
|
array('/foo/bin/run', '/foo/vendor/acme/bin/run', "../vendor/acme/bin/run"),
|
|
|
|
array('/foo/bin/run', '/bar/bin/run', "/bar/bin/run"),
|
|
|
|
array('c:/bin/run', 'c:/vendor/acme/bin/run', "../vendor/acme/bin/run"),
|
|
|
|
array('c:\\bin\\run', 'c:/vendor/acme/bin/run', "../vendor/acme/bin/run"),
|
|
|
|
array('c:/bin/run', 'd:/vendor/acme/bin/run', "d:/vendor/acme/bin/run"),
|
|
|
|
array('c:\\bin\\run', 'd:/vendor/acme/bin/run', "d:/vendor/acme/bin/run"),
|
2011-12-04 21:40:30 +00:00
|
|
|
array('C:/Temp/test', 'C:\Temp', "./"),
|
|
|
|
array('/tmp/test', '/tmp', "./"),
|
|
|
|
array('C:/Temp/test/sub', 'C:\Temp', "../"),
|
|
|
|
array('/tmp/test/sub', '/tmp', "../"),
|
|
|
|
array('/tmp', '/tmp/test', "test"),
|
2011-12-03 22:21:10 +00:00
|
|
|
array('C:/Temp', 'C:\Temp\test', "test"),
|
2011-12-18 20:10:10 +00:00
|
|
|
array('C:/Temp', 'c:\Temp\test', "test"),
|
2011-12-03 19:44:00 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|