Mise à jour des librairies
This commit is contained in:
@@ -99,7 +99,7 @@ class URCConstructorTest extends TestCase
|
||||
*/
|
||||
public function testFailsToInitalizeFromANonExistentFile()
|
||||
{
|
||||
$keyFile = __DIR__ . '/../fixtures' . '/does-not-exist-private.json';
|
||||
$keyFile = __DIR__ . '/../fixtures/does-not-exist-private.json';
|
||||
new UserRefreshCredentials('scope/1', $keyFile);
|
||||
}
|
||||
|
||||
@@ -110,6 +110,27 @@ class URCConstructorTest extends TestCase
|
||||
new UserRefreshCredentials('scope/1', $keyFile)
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @expectedException PHPUnit_Framework_Error_Warning
|
||||
*/
|
||||
public function testGcloudWarning()
|
||||
{
|
||||
putenv('SUPPRESS_GCLOUD_CREDS_WARNING=false');
|
||||
$keyFile = __DIR__ . '/../fixtures2/gcloud.json';
|
||||
$this->assertNotNull(
|
||||
new UserRefreshCredentials('scope/1', $keyFile)
|
||||
);
|
||||
}
|
||||
|
||||
public function testValid3LOauthCreds()
|
||||
{
|
||||
putenv('SUPPRESS_GCLOUD_CREDS_WARNING=false');
|
||||
$keyFile = __DIR__ . '/../fixtures2/valid_oauth_creds.json';
|
||||
$this->assertNotNull(
|
||||
new UserRefreshCredentials('scope/1', $keyFile)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class URCFromEnvTest extends TestCase
|
||||
@@ -129,14 +150,14 @@ class URCFromEnvTest extends TestCase
|
||||
*/
|
||||
public function testFailsIfEnvSpecifiesNonExistentFile()
|
||||
{
|
||||
$keyFile = __DIR__ . '/../fixtures' . '/does-not-exist-private.json';
|
||||
$keyFile = __DIR__ . '/../fixtures/does-not-exist-private.json';
|
||||
putenv(UserRefreshCredentials::ENV_VAR . '=' . $keyFile);
|
||||
UserRefreshCredentials::fromEnv('a scope');
|
||||
}
|
||||
|
||||
public function testSucceedIfFileExists()
|
||||
{
|
||||
$keyFile = __DIR__ . '/../fixtures2' . '/private.json';
|
||||
$keyFile = __DIR__ . '/../fixtures2/private.json';
|
||||
putenv(UserRefreshCredentials::ENV_VAR . '=' . $keyFile);
|
||||
$this->assertNotNull(ApplicationDefaultCredentials::getCredentials('a scope'));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user