Mise à jour des librairies
This commit is contained in:
42
vendor/google/auth/tests/Credentials/InsecureCredentialsTest.php
vendored
Normal file
42
vendor/google/auth/tests/Credentials/InsecureCredentialsTest.php
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2018 Google Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
namespace Google\Auth\Tests;
|
||||
|
||||
use Google\Auth\Credentials\InsecureCredentials;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class InsecureCredentialsTest extends TestCase
|
||||
{
|
||||
public function testFetchAuthToken()
|
||||
{
|
||||
$insecure = new InsecureCredentials();
|
||||
$this->assertEquals(['access_token' => ''], $insecure->fetchAuthToken());
|
||||
}
|
||||
|
||||
public function testGetCacheKey()
|
||||
{
|
||||
$insecure = new InsecureCredentials();
|
||||
$this->assertNull($insecure->getCacheKey());
|
||||
}
|
||||
|
||||
public function testGetLastReceivedToken()
|
||||
{
|
||||
$insecure = new InsecureCredentials();
|
||||
$this->assertEquals(['access_token' => ''], $insecure->getLastReceivedToken());
|
||||
}
|
||||
}
|
||||
@@ -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