123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <?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.
- */
- namespace Composer\Test\Util;
- use Composer\Config;
- use Composer\IO\NullIO;
- use Composer\Util\Platform;
- use Composer\Util\Svn;
- use Composer\Test\TestCase;
- class SvnTest extends 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));
- }
- public function testCredentialsFromConfigWithCacheCredentialsTrue()
- {
- $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);
- $svn->setCacheCredentials(true);
- $reflMethod = new \ReflectionMethod('Composer\\Util\\Svn', 'getCredentialString');
- $reflMethod->setAccessible(true);
- $this->assertEquals($this->getCmd(" --username 'foo' --password 'bar' "), $reflMethod->invoke($svn));
- }
- public function testCredentialsFromConfigWithCacheCredentialsFalse()
- {
- $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);
- $svn->setCacheCredentials(false);
- $reflMethod = new \ReflectionMethod('Composer\\Util\\Svn', 'getCredentialString');
- $reflMethod->setAccessible(true);
- $this->assertEquals($this->getCmd(" --no-auth-cache --username 'foo' --password 'bar' "), $reflMethod->invoke($svn));
- }
- private function getCmd($cmd)
- {
- return Platform::isWindows() ? strtr($cmd, "'", '"') : $cmd;
- }
- }
|