1
0
Fork 0
composer/tests/Composer/Test/Repository/Vcs/SvnDriverTest.php

104 lines
4.0 KiB
PHP
Raw Normal View History

<?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;
use Composer\Repository\Vcs\SvnDriver;
2012-04-25 15:35:47 +00:00
use Composer\Config;
use Composer\Test\TestCase;
use Composer\Util\Filesystem;
use Composer\Test\Mock\ProcessExecutorMock;
class SvnDriverTest extends TestCase
{
2021-10-16 08:16:06 +00:00
/**
* @var string
*/
protected $home;
2021-10-16 08:16:06 +00:00
/**
* @var Config
*/
protected $config;
2021-12-08 16:03:05 +00:00
public function setUp(): void
{
$this->home = $this->getUniqueTmpDirectory();
$this->config = new Config();
$this->config->merge(array(
'config' => array(
'home' => $this->home,
),
));
}
protected function tearDown(): void
{
parent::tearDown();
$fs = new Filesystem();
$fs->removeDirectory($this->home);
}
2012-03-24 23:29:14 +00:00
public function testWrongCredentialsInUrl()
{
2021-12-09 19:55:26 +00:00
self::expectException('RuntimeException');
self::expectExceptionMessage("Repository https://till:secret@corp.svn.local/repo could not be processed, wrong credentials provided (svn: OPTIONS of 'https://corp.svn.local/repo': authorization failed: Could not authenticate to server: rejected Basic challenge (https://corp.svn.local/))");
$console = $this->getMockBuilder('Composer\IO\IOInterface')->getMock();
$httpDownloader = $this->getMockBuilder('Composer\Util\HttpDownloader')->disableOriginalConstructor()->getMock();
2017-03-08 14:07:29 +00:00
$output = "svn: OPTIONS of 'https://corp.svn.local/repo':";
$output .= " authorization failed: Could not authenticate to server:";
$output .= " rejected Basic challenge (https://corp.svn.local/)";
$process = $this->getProcessExecutorMock();
$process->expects(array(
array('cmd' => "svn ls --verbose --non-interactive --username 'till' --password 'secret' -- 'https://till:secret@corp.svn.local/repo/trunk'", 'return' => 1, 'stderr' => $output),
array('cmd' => "svn ls --verbose --non-interactive --username 'till' --password 'secret' -- 'https://till:secret@corp.svn.local/repo/trunk'", 'return' => 1, 'stderr' => $output),
array('cmd' => "svn ls --verbose --non-interactive --username 'till' --password 'secret' -- 'https://till:secret@corp.svn.local/repo/trunk'", 'return' => 1, 'stderr' => $output),
array('cmd' => "svn ls --verbose --non-interactive --username 'till' --password 'secret' -- 'https://till:secret@corp.svn.local/repo/trunk'", 'return' => 1, 'stderr' => $output),
array('cmd' => "svn ls --verbose --non-interactive --username 'till' --password 'secret' -- 'https://till:secret@corp.svn.local/repo/trunk'", 'return' => 1, 'stderr' => $output),
array('cmd' => "svn ls --verbose --non-interactive --username 'till' --password 'secret' -- 'https://till:secret@corp.svn.local/repo/trunk'", 'return' => 1, 'stderr' => $output),
array('cmd' => 'svn --version', 'return' => 0, 'stdout' => '1.2.3'),
), true);
2012-08-31 06:12:20 +00:00
$repoConfig = array(
'url' => 'https://till:secret@corp.svn.local/repo',
2012-08-31 06:12:20 +00:00
);
$svn = new SvnDriver($repoConfig, $console, $this->config, $httpDownloader, $process);
2012-04-29 18:43:56 +00:00
$svn->initialize();
}
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),
array('svn://example.org', true),
array('svn+ssh://example.org', true),
);
}
/**
* @dataProvider supportProvider
*
* @param string $url
* @param bool $assertion
*/
public function testSupport($url, $assertion)
{
$config = new Config();
$result = SvnDriver::supports($this->getMockBuilder('Composer\IO\IOInterface')->getMock(), $config, $url);
$this->assertEquals($assertion, $result);
}
}