OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
google
/
cloud-core
/
tests
/
Unit
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:33:49 AM
rwxr-xr-x
📄
AnonymousCredentialsTest.php
1.71 KB
08/12/2024 10:33:49 AM
rw-r--r--
📄
ApiHelperTraitTest.php
7.08 KB
08/12/2024 10:33:49 AM
rw-r--r--
📄
ArrayTraitTest.php
4.58 KB
08/12/2024 10:33:49 AM
rw-r--r--
📁
Batch
-
08/12/2024 10:36:17 AM
rwxr-xr-x
📄
BlobTest.php
1.28 KB
08/12/2024 10:33:49 AM
rw-r--r--
📄
CallTraitTest.php
1.56 KB
08/12/2024 10:33:49 AM
rw-r--r--
📄
ClientTraitTest.php
11.18 KB
08/12/2024 10:33:49 AM
rw-r--r--
📁
Compute
-
08/12/2024 10:36:37 AM
rwxr-xr-x
📄
ConcurrencyControlTraitTest.php
1.54 KB
08/12/2024 10:33:49 AM
rw-r--r--
📄
DetectProjectIdTraitTest.php
4.82 KB
08/12/2024 10:33:49 AM
rw-r--r--
📄
DurationTest.php
1.53 KB
08/12/2024 10:33:49 AM
rw-r--r--
📄
EmulatorTraitTest.php
2.3 KB
08/12/2024 10:33:49 AM
rw-r--r--
📁
Exception
-
08/12/2024 10:34:56 AM
rwxr-xr-x
📄
ExponentialBackoffTest.php
5.93 KB
08/12/2024 10:33:49 AM
rw-r--r--
📄
Fixtures.php
1.1 KB
08/12/2024 10:33:49 AM
rw-r--r--
📄
GeoPointTest.php
2.9 KB
08/12/2024 10:33:49 AM
rw-r--r--
📄
GrpcRequestWrapperTest.php
10.54 KB
08/12/2024 10:33:50 AM
rw-r--r--
📄
GrpcTraitTest.php
8.16 KB
08/12/2024 10:33:50 AM
rw-r--r--
📁
Iam
-
08/12/2024 10:34:57 AM
rwxr-xr-x
📄
Int64Test.php
1.24 KB
08/12/2024 10:33:50 AM
rw-r--r--
📁
Iterator
-
08/12/2024 10:34:57 AM
rwxr-xr-x
📄
JsonTraitTest.php
1.68 KB
08/12/2024 10:33:50 AM
rw-r--r--
📁
Lock
-
08/12/2024 10:34:57 AM
rwxr-xr-x
📁
Logger
-
08/12/2024 10:34:57 AM
rwxr-xr-x
📁
LongRunning
-
08/12/2024 10:34:58 AM
rwxr-xr-x
📁
Report
-
08/12/2024 10:34:58 AM
rwxr-xr-x
📄
RequestBuilderTest.php
4.74 KB
08/12/2024 10:33:50 AM
rw-r--r--
📄
RequestHandlerTest.php
10.55 KB
08/12/2024 10:33:50 AM
rw-r--r--
📄
RequestWrapperTest.php
32.14 KB
08/12/2024 10:33:50 AM
rw-r--r--
📄
RestTraitTest.php
8.72 KB
08/12/2024 10:33:50 AM
rw-r--r--
📄
RetryDeciderTraitTest.php
3.11 KB
08/12/2024 10:33:50 AM
rw-r--r--
📄
ServiceBuilderTest.php
6.54 KB
08/12/2024 10:33:50 AM
rw-r--r--
📄
ServicesNotFoundTest.php
3.25 KB
08/12/2024 10:33:50 AM
rw-r--r--
📁
Stubs
-
08/12/2024 10:34:58 AM
rwxr-xr-x
📄
SysvTraitTest.php
1.59 KB
08/12/2024 10:33:50 AM
rw-r--r--
📄
TimestampTest.php
7.54 KB
08/12/2024 10:33:50 AM
rw-r--r--
📄
TimestampTraitTest.php
2.27 KB
08/12/2024 10:33:50 AM
rw-r--r--
📁
Upload
-
08/12/2024 10:34:59 AM
rwxr-xr-x
📄
UriTraitTest.php
1.82 KB
08/12/2024 10:33:50 AM
rw-r--r--
📄
ValidateTraitTest.php
2 KB
08/12/2024 10:33:50 AM
rw-r--r--
📄
WhitelistTraitTest.php
1.47 KB
08/12/2024 10:33:50 AM
rw-r--r--
📁
fixtures
-
08/12/2024 10:34:56 AM
rwxr-xr-x
Editing: DetectProjectIdTraitTest.php
Close
<?php /** * Copyright 2024 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\Cloud\Core\Tests\Unit; use Google\ApiCore\CredentialsWrapper; use Google\ApiCore\ValidationException; use Google\Auth\ProjectIdProviderInterface; use Google\Cloud\Core\DetectProjectIdTrait; use Google\Cloud\Core\Exception\GoogleException; use Google\Cloud\Core\Testing\TestHelpers; use GuzzleHttp\Psr7\Response; use PHPUnit\Framework\TestCase; use Prophecy\PhpUnit\ProphecyTrait; /** * @group core * @group core-client-trait */ class DetectProjectIdTraitTest extends TestCase { use ProphecyTrait; private $impl; private $dependency; private $credentials; public function setUp(): void { $this->impl = TestHelpers::impl(DetectProjectIdTrait::class); $this->credentials = $this->prophesize(ProjectIdProviderInterface::class); } public function testDetectProjectIdFromCredentials() { $this->credentials->getProjectId()->willReturn('abc'); $projectId = $this->impl->call('detectProjectId', [[ 'credentials' => $this->credentials->reveal() ]]); $this->assertEquals('abc', $projectId); } public function testDetectProjectIdThrowsValidationExceptionOnNullProjectId() { $this->expectException(GoogleException::class); $this->credentials->getProjectId()->willReturn(null); $projectId = $this->impl->call('detectProjectId', [[ 'credentials' => $this->credentials->reveal(), 'projectIdRequired' => true ]]); } public function testDetectProjectIdWithNoProjectIdAvailable() { $this->expectException(GoogleException::class); $conf = $this->impl->call('detectProjectId', [[ 'projectIdRequired' => true, 'httpHandler' => function ($request, $options = []) { return new Response(500); } ]]); } public function testProjectIdFromEnv() { $projectId = 'project-from-env'; $originalOldEnv = getenv('GCLOUD_PROJECT'); $originalEnv = getenv('GOOGLE_CLOUD_PROJECT'); try { putenv('GOOGLE_CLOUD_PROJECT=' . $projectId); putenv('GCLOUD_PROJECT=invalid-value'); $res = $this->impl->call('detectProjectId', [[]]); $this->assertEquals($res, $projectId); } finally { if ($originalOldEnv === false) { putenv('GCLOUD_PROJECT'); } else { putenv('GCLOUD_PROJECT=' . $originalOldEnv); } if ($originalEnv === false) { putenv('GOOGLE_CLOUD_PROJECT'); } else { putenv('GOOGLE_CLOUD_PROJECT=' . $originalEnv); } } } public function testProjectIdFromOldEnv() { $projectId = 'project-from-env'; $originalEnv = getenv('GCLOUD_PROJECT'); $originalOldEnv = getenv('GCLOUD_PROJECT'); $originalEnv = getenv('GOOGLE_CLOUD_PROJECT'); try { putenv('GCLOUD_PROJECT=' . $projectId); putenv('GOOGLE_CLOUD_PROJECT'); $res = $this->impl->call('detectProjectId', [[]]); $this->assertEquals($res, $projectId); } finally { if ($originalOldEnv === false) { putenv('GCLOUD_PROJECT'); } else { putenv('GCLOUD_PROJECT=' . $originalOldEnv); } if ($originalEnv === false) { putenv('GOOGLE_CLOUD_PROJECT'); } else { putenv('GOOGLE_CLOUD_PROJECT=' . $originalEnv); } } } public function testDetectProjectIdEmulatorWithProjectId() { $projectId = 'emulator-project'; $res = $this->impl->call('detectProjectId', [[ 'hasEmulator' => true, 'projectId' => $projectId, ]]); $this->assertEquals($projectId, $res); } public function testDetectProjectIdEmulator() { $projectId = 'emulator-project'; $res = $this->impl->call('detectProjectId', [[ 'hasEmulator' => true ]]); $this->assertEquals($projectId, $res); } }