Mise à jour des librairies

This commit is contained in:
lars
2019-03-10 23:30:23 +01:00
parent 2040b7be39
commit 7df3d72953
3603 changed files with 233169 additions and 107764 deletions

View 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());
}
}

View File

@@ -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'));
}

View File

@@ -0,0 +1,6 @@
{
"client_id": "764086051850-6qr4p6gpi6hn506pt8ejuq83di341hur.apps.googleusercontent.com",
"client_secret": "dummy_client_secret",
"refresh_token": "dummy_refresh_token",
"type": "authorized_user"
}

View File

@@ -0,0 +1,6 @@
{
"client_id": "valid.apps.googleusercontent.com",
"client_secret": "dummy_client_secret",
"refresh_token": "dummy_refresh_token",
"type": "authorized_user"
}