2012-03-02 19:19:50 +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.
|
|
|
|
*/
|
|
|
|
|
2012-03-02 21:08:40 +00:00
|
|
|
namespace Composer\Test\Repository\Vcs;
|
2012-03-02 19:19:50 +00:00
|
|
|
|
|
|
|
use Composer\Repository\Vcs\SvnDriver;
|
2012-04-25 15:35:47 +00:00
|
|
|
use Composer\Config;
|
2012-03-02 19:19:50 +00:00
|
|
|
|
|
|
|
class SvnDriverTest extends \PHPUnit_Framework_TestCase
|
|
|
|
{
|
2012-03-09 16:41:56 +00:00
|
|
|
/**
|
2012-03-24 23:29:14 +00:00
|
|
|
* @expectedException RuntimeException
|
2012-03-09 16:41:56 +00:00
|
|
|
*/
|
2012-03-24 23:29:14 +00:00
|
|
|
public function testWrongCredentialsInUrl()
|
2012-03-09 16:41:56 +00:00
|
|
|
{
|
|
|
|
$console = $this->getMock('Composer\IO\IOInterface');
|
2013-06-15 00:16:24 +00:00
|
|
|
$console->expects($this->exactly(6))
|
2012-03-09 16:41:56 +00:00
|
|
|
->method('isInteractive')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
|
|
|
|
$output = "svn: OPTIONS of 'http://corp.svn.local/repo':";
|
|
|
|
$output .= " authorization failed: Could not authenticate to server:";
|
|
|
|
$output .= " rejected Basic challenge (http://corp.svn.local/)";
|
|
|
|
|
|
|
|
$process = $this->getMock('Composer\Util\ProcessExecutor');
|
2012-10-03 09:13:17 +00:00
|
|
|
$process->expects($this->at(1))
|
2012-03-09 16:41:56 +00:00
|
|
|
->method('execute')
|
|
|
|
->will($this->returnValue(1));
|
2013-06-15 00:16:24 +00:00
|
|
|
$process->expects($this->exactly(7))
|
2012-03-24 23:29:14 +00:00
|
|
|
->method('getErrorOutput')
|
|
|
|
->will($this->returnValue($output));
|
2012-10-03 09:13:17 +00:00
|
|
|
$process->expects($this->at(2))
|
|
|
|
->method('execute')
|
|
|
|
->will($this->returnValue(0));
|
2012-03-09 16:41:56 +00:00
|
|
|
|
2012-06-18 13:35:00 +00:00
|
|
|
$config = new Config();
|
|
|
|
$config->merge(array(
|
|
|
|
'config' => array(
|
|
|
|
'home' => sys_get_temp_dir() . '/composer-test',
|
|
|
|
),
|
|
|
|
));
|
2012-08-31 06:12:20 +00:00
|
|
|
$repoConfig = array(
|
|
|
|
'url' => 'http://till:secret@corp.svn.local/repo',
|
|
|
|
);
|
|
|
|
|
|
|
|
$svn = new SvnDriver($repoConfig, $console, $config, $process);
|
2012-04-29 18:43:56 +00:00
|
|
|
$svn->initialize();
|
2012-03-09 16:41:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-08 17:19:31 +00:00
|
|
|
private function getCmd($cmd)
|
|
|
|
{
|
|
|
|
if (defined('PHP_WINDOWS_VERSION_BUILD')) {
|
|
|
|
return strtr($cmd, "'", '"');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $cmd;
|
|
|
|
}
|
2012-03-12 20:27:22 +00:00
|
|
|
|
|
|
|
public static function supportProvider()
|
|
|
|
{
|
|
|
|
return array(
|
|
|
|
array('http://svn.apache.org', true),
|
2012-03-18 15:35:09 +00:00
|
|
|
array('https://svn.sf.net', true),
|
2012-03-12 20:27:22 +00:00
|
|
|
array('svn://example.org', true),
|
|
|
|
array('svn+ssh://example.org', true),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider supportProvider
|
|
|
|
*/
|
|
|
|
public function testSupport($url, $assertion)
|
|
|
|
{
|
2013-10-28 19:57:02 +00:00
|
|
|
$config = new Config();
|
2013-10-29 15:00:00 +00:00
|
|
|
$result = SvnDriver::supports($this->getMock('Composer\IO\IOInterface'), $config, $url);
|
2013-10-28 19:57:02 +00:00
|
|
|
$this->assertEquals($assertion, $result);
|
2012-03-12 20:27:22 +00:00
|
|
|
}
|
2012-03-02 19:19:50 +00:00
|
|
|
}
|