1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?php
- namespace Composer\Test\Util;
- use Composer\Config;
- use Composer\IO\NullIO;
- use Composer\Util\Svn;
- class SvnTest extends \PHPUnit_Framework_TestCase
- {
- /**
- * Test the credential string.
- *
- * @param string $url The SVN url.
- * @param string $expect The expectation for the test.
- *
- * @dataProvider urlProvider
- */
- public function testCredentials($url, $expect)
- {
- $svn = new Svn($url, new NullIO, new Config());
- $reflMethod = new \ReflectionMethod('Composer\\Util\\Svn', 'getCredentialString');
- $reflMethod->setAccessible(true);
- $this->assertEquals($expect, $reflMethod->invoke($svn));
- }
- /**
- * Provide some examples for {@self::testCredentials()}.
- *
- * @return array
- */
- public function urlProvider()
- {
- return array(
- array('http://till:test@svn.example.org/', $this->getCmd(" --username 'till' --password 'test' ")),
- array('http://svn.apache.org/', ''),
- array('svn://johndoe@example.org', $this->getCmd(" --username 'johndoe' --password '' ")),
- );
- }
- public function testInteractiveString()
- {
- $url = 'http://svn.example.org';
- $svn = new Svn($url, new NullIO(), new Config());
- $reflMethod = new \ReflectionMethod('Composer\\Util\\Svn', 'getCommand');
- $reflMethod->setAccessible(true);
- $this->assertEquals(
- $this->getCmd("svn ls --non-interactive 'http://svn.example.org'"),
- $reflMethod->invokeArgs($svn, array('svn ls', $url))
- );
- }
- public function testCredentialsFromConfig()
- {
- $url = 'http://svn.apache.org';
- $config = new Config();
- $config->merge(array(
- 'config' => array(
- 'http-basic' => array(
- 'svn.apache.org' => array('username' => 'foo', 'password' => 'bar')
- )
- )
- ));
- $svn = new Svn($url, new NullIO, $config);
- $reflMethod = new \ReflectionMethod('Composer\\Util\\Svn', 'getCredentialString');
- $reflMethod->setAccessible(true);
- $this->assertEquals($this->getCmd(" --username 'foo' --password 'bar' "), $reflMethod->invoke($svn));
- }
- private function getCmd($cmd)
- {
- if (defined('PHP_WINDOWS_VERSION_BUILD')) {
- return strtr($cmd, "'", '"');
- }
- return $cmd;
- }
- }
|