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;
|
|
|
|
use Composer\IO\NullIO;
|
|
|
|
|
|
|
|
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');
|
|
|
|
$console->expects($this->once())
|
|
|
|
->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');
|
|
|
|
$process->expects($this->once())
|
|
|
|
->method('execute')
|
|
|
|
->will($this->returnValue(1));
|
2012-03-24 23:29:14 +00:00
|
|
|
$process->expects($this->once())
|
|
|
|
->method('getErrorOutput')
|
|
|
|
->will($this->returnValue($output));
|
2012-03-09 16:41:56 +00:00
|
|
|
|
|
|
|
$svn = new SvnDriver('http://till:secret@corp.svn.local/repo', $console, $process);
|
2012-03-24 23:29:14 +00:00
|
|
|
$svn->getTags();
|
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)
|
|
|
|
{
|
|
|
|
if ($assertion === true) {
|
|
|
|
$this->assertTrue(SvnDriver::supports($url));
|
|
|
|
} else {
|
|
|
|
$this->assertFalse(SvnDriver::supports($url));
|
|
|
|
}
|
|
|
|
}
|
2012-03-02 19:19:50 +00:00
|
|
|
}
|