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: RequestBuilderTest.php
Close
<?php /** * Copyright 2016 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\Cloud\Core\RequestBuilder; use Google\Cloud\Core\Testing\TestHelpers; use InvalidArgumentException; use PHPUnit\Framework\TestCase; /** * @group core */ class RequestBuilderTest extends TestCase { public function setUp(): void { $this->builder = new RequestBuilder( Fixtures::SERVICE_FIXTURE(), 'http://www.example.com/' ); } public function testBuildsRequest() { $parameters = [ 'queryParam' => 'query', 'pathParam' => 'path', 'referenceProp' => 'reference', 'repeatedParam' => ['foo','bar'] ]; $request = $this->builder->build('myResource', 'myMethod', $parameters); $uri = $request->getUri(); $this->assertEquals('/path', $uri->getPath()); $this->assertEquals('queryParam=query&repeatedParam=foo&repeatedParam=bar', $uri->getQuery()); $this->assertEquals('{"referenceProp":"reference"}', (string) $request->getBody()); } public function testBuildsNestedRequest() { $builder = new RequestBuilder( Fixtures::SERVICE_FIXTURE(), 'http://www.example.com/', ['resources', 'projects', 'otherThing'] ); $parameters = [ 'queryParam' => 'query', 'pathParam' => 'path', 'referenceProp' => 'reference' ]; $request = $builder->build('myOtherResource', 'myOtherMethod', $parameters); $uri = $request->getUri(); $this->assertEquals('/path', $uri->getPath()); $this->assertEquals('queryParam=query', $uri->getQuery()); $this->assertEquals('{"referenceProp":"reference"}', (string) $request->getBody()); } public function testBuildsNestedRequestWithStringSplitting() { $builder = new RequestBuilder( Fixtures::SERVICE_FIXTURE(), 'http://www.example.com/', ['resources', 'projects', 'otherThing'] ); $parameters = [ 'queryParam' => 'query', 'pathParam' => 'path', 'referenceProp' => 'reference' ]; $request = $builder->build( 'myOtherResource.resources.evenMoreNestedThing', 'evenMoreNestedResource', $parameters ); $uri = $request->getUri(); $this->assertEquals('/path', $uri->getPath()); $this->assertEquals('queryParam=query', $uri->getQuery()); $this->assertEquals('{"referenceProp":"reference"}', (string) $request->getBody()); } /** * @dataProvider basePaths */ public function testAppendsBasePathToApiEndpoint($basePath, $baseUri, $expectedBaseUri) { $builder = TestHelpers::stub(RequestBuilder::class, [ $basePath ? Fixtures::SERVICE_FIXTURE_BASEPATH() : Fixtures::SERVICE_FIXTURE(), $baseUri ], ['service']); if ($basePath) { $service = $builder->___getProperty('service'); $service['basePath'] = $basePath; $builder->___setProperty('service', $service); } $request = $builder->build( 'myResource', 'myMethod', ['pathParam' => 'path'] ); $uri = $request->getUri(); $this->assertEquals($expectedBaseUri . 'path', (string) $request->getUri()); } public function basePaths() { return [ [false, 'http://example.com', 'http://example.com/'], [true, 'http://example.com', 'http://example.com/basepath/v1/'], [true, 'http://example.com/', 'http://example.com/basepath/v1/'], [true, 'http://example.com/otherbase/v1/', 'http://example.com/otherbase/v1/'], [false, 'http://example.com/otherbase/v1/', 'http://example.com/otherbase/v1/'], ]; } public function testThrowsExceptionWithNonExistantMethod() { $this->expectException(InvalidArgumentException::class); $this->builder->build('myResource', 'doesntExist'); } }