Added cacheCredentials config flag for saved SVN credentials to control the --no-auth-cache flag
Example config: { "http-basic": { "svn.example.com": { "username": "user", "password": "password", "cacheCredentials": false } } }pull/3272/head
parent
d79f2b0fd3
commit
b132e4eae0
|
@ -295,6 +295,10 @@ class Svn
|
|||
$this->credentials['username'] = $authConfig[$host]['username'];
|
||||
$this->credentials['password'] = $authConfig[$host]['password'];
|
||||
|
||||
if (array_key_exists('cacheCredentials', $authConfig[$host])) {
|
||||
$this->cacheCredentials = (bool) $authConfig[$host]['cacheCredentials'];
|
||||
}
|
||||
|
||||
return $this->hasAuth = true;
|
||||
}
|
||||
|
||||
|
|
|
@ -72,6 +72,48 @@ class SvnTest extends \PHPUnit_Framework_TestCase
|
|||
$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', 'cacheCredentials' => true)
|
||||
)
|
||||
)
|
||||
)
|
||||
);
|
||||
|
||||
$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 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', 'cacheCredentials' => false)
|
||||
)
|
||||
)
|
||||
)
|
||||
);
|
||||
|
||||
$svn = new Svn($url, new NullIO, $config);
|
||||
$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)
|
||||
{
|
||||
if (defined('PHP_WINDOWS_VERSION_BUILD')) {
|
||||
|
|
Loading…
Reference in New Issue