* trim the testcase: no need to inject nullio
parent
8d80969f26
commit
25e8ecc5ba
|
@ -31,32 +31,18 @@ class SvnDriverTest extends \PHPUnit_Framework_TestCase
|
||||||
{
|
{
|
||||||
$nullIO = new \Composer\IO\NullIO;
|
$nullIO = new \Composer\IO\NullIO;
|
||||||
|
|
||||||
$input = new \Symfony\Component\Console\Input\ArrayInput(array('install'));
|
|
||||||
$output = new \Symfony\Component\Console\Output\NullOutput;
|
|
||||||
$helper = new \Symfony\Component\Console\Helper\HelperSet;
|
|
||||||
|
|
||||||
$consoleInteractiveIO = new \Composer\IO\ConsoleIO($input, $output, $helper);
|
|
||||||
|
|
||||||
return array(
|
return array(
|
||||||
array(
|
array(
|
||||||
'http://till:test@svn.example.org/',
|
'http://till:test@svn.example.org/',
|
||||||
" --no-auth-cache --username 'till' --password 'test' ",
|
" --no-auth-cache --username 'till' --password 'test' ",
|
||||||
$nullIO,
|
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'http://svn.apache.org/',
|
'http://svn.apache.org/',
|
||||||
'',
|
'',
|
||||||
$nullIO,
|
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'svn://johndoe@example.org',
|
'svn://johndoe@example.org',
|
||||||
" --no-auth-cache --username 'johndoe' --password '' ",
|
" --no-auth-cache --username 'johndoe' --password '' ",
|
||||||
$nullIO,
|
|
||||||
),
|
|
||||||
array(
|
|
||||||
'https://till:secret@corp.svn.local/project1',
|
|
||||||
" --username 'till' --password 'secret' ",
|
|
||||||
$consoleInteractiveIO,
|
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -66,13 +52,12 @@ class SvnDriverTest extends \PHPUnit_Framework_TestCase
|
||||||
*
|
*
|
||||||
* @param string $url The SVN url.
|
* @param string $url The SVN url.
|
||||||
* @param string $expect The expectation for the test.
|
* @param string $expect The expectation for the test.
|
||||||
* @param string $ioClass The IO interface.
|
|
||||||
*
|
*
|
||||||
* @dataProvider urlProvider
|
* @dataProvider urlProvider
|
||||||
*/
|
*/
|
||||||
public function testCredentials($url, $expect, \Composer\IO\IOInterface $io)
|
public function testCredentials($url, $expect)
|
||||||
{
|
{
|
||||||
$svn = new SvnDriver($url, $io);
|
$svn = new SvnDriver($url, new \Composer\IO\NullIO);
|
||||||
|
|
||||||
$this->assertEquals($expect, $svn->getSvnCredentialString());
|
$this->assertEquals($expect, $svn->getSvnCredentialString());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue