OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
google
/
cloud-storage
/
tests
/
Unit
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:33:53 AM
rwxr-xr-x
📄
AclTest.php
3.22 KB
08/12/2024 10:33:53 AM
rw-r--r--
📄
BucketTest.php
23.21 KB
08/12/2024 10:33:53 AM
rw-r--r--
📄
ConformanceTest.php
6.93 KB
08/12/2024 10:33:53 AM
rw-r--r--
📁
Connection
-
08/12/2024 10:35:02 AM
rwxr-xr-x
📄
CreatedHmacKeyTest.php
1.45 KB
08/12/2024 10:33:53 AM
rw-r--r--
📄
EncryptionTraitTest.php
4.76 KB
08/12/2024 10:33:53 AM
rw-r--r--
📄
HmacKeyTest.php
3.91 KB
08/12/2024 10:33:53 AM
rw-r--r--
📄
LifecycleTest.php
6.48 KB
08/12/2024 10:33:53 AM
rw-r--r--
📄
NotificationTest.php
3.78 KB
08/12/2024 10:33:53 AM
rw-r--r--
📄
ObjectIteratorTest.php
1.3 KB
08/12/2024 10:33:53 AM
rw-r--r--
📄
ObjectPageIteratorTest.php
1.5 KB
08/12/2024 10:33:53 AM
rw-r--r--
📄
ReadStreamTest.php
2.33 KB
08/12/2024 10:33:54 AM
rw-r--r--
📄
RequesterPaysTest.php
14.85 KB
08/12/2024 10:33:54 AM
rw-r--r--
📄
SigningHelperTest.php
25.94 KB
08/12/2024 10:33:54 AM
rw-r--r--
📄
StorageClientTest.php
9.93 KB
08/12/2024 10:33:54 AM
rw-r--r--
📄
StorageObjectTest.php
35.64 KB
08/12/2024 10:33:54 AM
rw-r--r--
📄
StreamWrapperTest.php
17.01 KB
08/12/2024 10:33:54 AM
rw-r--r--
📄
WriteStreamTest.php
1.93 KB
08/12/2024 10:33:54 AM
rw-r--r--
📁
data
-
08/12/2024 10:35:02 AM
rwxr-xr-x
Editing: HmacKeyTest.php
Close
<?php /** * Copyright 2019 Google LLC * * 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\Storage\Tests\Unit; use Google\Cloud\Core\Testing\TestHelpers; use Google\Cloud\Storage\Connection\ConnectionInterface; use Google\Cloud\Storage\HmacKey; use PHPUnit\Framework\TestCase; use Prophecy\Argument; use Prophecy\PhpUnit\ProphecyTrait; /** * @group storage * @group storage-hmackey */ class HmacKeyTest extends TestCase { use ProphecyTrait; const PROJECT = 'project'; private $connection; private $key; private $metadata = [ 'accessId' => 'foo' ]; public function setUp(): void { $this->connection = $this->prophesize(ConnectionInterface::class); $this->key = TestHelpers::stub(HmacKey::class, [ $this->connection->reveal(), self::PROJECT, $this->metadata['accessId'], $this->metadata ], ['connection', 'info']); } public function testAccessId() { $this->assertEquals($this->metadata['accessId'], $this->key->accessId()); } public function testReload() { $this->connection->getHmacKey([ 'projectId' => self::PROJECT, 'accessId' => $this->metadata['accessId'] ])->shouldBeCalledTimes(2)->willReturn($this->metadata); $this->key->___setProperty('connection', $this->connection->reveal()); $this->assertEquals($this->metadata, $this->key->reload()); // Make sure reload() always runs a service call. $this->key->reload(); } public function testInfo() { $this->connection->getHmacKey([ 'projectId' => self::PROJECT, 'accessId' => $this->metadata['accessId'] ])->shouldBeCalledTimes(1)->willReturn($this->metadata); $this->key->___setProperty('connection', $this->connection->reveal()); $this->key->___setProperty('info', []); $this->assertEquals($this->metadata, $this->key->info()); // Test that the 2nd call uses cached result. $this->assertEquals($this->metadata, $this->key->info()); } public function testInfoCached() { $this->connection->getHmacKey(Argument::any()) ->shouldNotBeCalled(); $this->key->___setProperty('connection', $this->connection->reveal()); $this->assertEquals($this->metadata, $this->key->info()); } public function testUpdate() { $state = 'INACTIVE'; $newMetadata = array_merge($this->metadata, ['state' => $state]); $this->connection->updateHmacKey([ 'accessId' => $this->metadata['accessId'], 'projectId' => self::PROJECT, 'state' => $state ])->shouldBeCalled()->willReturn($newMetadata); $this->key->___setProperty('connection', $this->connection->reveal()); $res = $this->key->update($state); $this->assertEquals($newMetadata, $res); $this->assertEquals($newMetadata, $this->key->info()); } public function testDelete() { $this->connection->deleteHmacKey([ 'accessId' => $this->metadata['accessId'], 'projectId' => self::PROJECT ])->shouldBeCalled(); $this->key->___setProperty('connection', $this->connection->reveal()); $this->key->delete(); } }