OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
google
/
cloud-storage
/
tests
/
Snippet
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.05 KB
08/12/2024 10:33:51 AM
rw-r--r--
📄
BucketTest.php
29.03 KB
08/12/2024 10:33:51 AM
rw-r--r--
📄
CreatedHmacKeyTest.php
2.98 KB
08/12/2024 10:33:52 AM
rw-r--r--
📄
HmacKeyTest.php
3.68 KB
08/12/2024 10:33:52 AM
rw-r--r--
📄
LifecycleTest.php
6.95 KB
08/12/2024 10:33:52 AM
rw-r--r--
📄
NotificationTest.php
4.35 KB
08/12/2024 10:33:52 AM
rw-r--r--
📄
StorageClientTest.php
9.16 KB
08/12/2024 10:33:52 AM
rw-r--r--
📄
StorageObjectTest.php
24.24 KB
08/12/2024 10:33:52 AM
rw-r--r--
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\Snippet; use Google\Cloud\Core\Testing\Snippet\SnippetTestCase; use Google\Cloud\Core\Testing\TestHelpers; use Google\Cloud\Storage\Connection\ConnectionInterface; use Google\Cloud\Storage\HmacKey; use Prophecy\Argument; use Prophecy\PhpUnit\ProphecyTrait; /** * @group storage * @group storage-hmackey */ class HmacKeyTest extends SnippetTestCase { 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 ]); } public function testClass() { $snippet = $this->snippetFromClass(HmacKey::class); $snippet->addLocal('accessId', 'foo'); $res = $snippet->invoke('hmacKey'); $this->assertInstanceOf(HmacKey::class, $res->returnVal()); } public function testAccessId() { $snippet = $this->snippetFromMethod(HmacKey::class, 'accessId'); $snippet->addLocal('hmacKey', $this->key); $res = $snippet->invoke('accessId'); $this->assertEquals($this->metadata['accessId'], $res->returnVal()); } public function testReload() { $newMetadata = array_merge($this->metadata, ['foo' => 'bar']); $this->connection->getHmacKey(Argument::any())->willReturn($newMetadata); $this->key->___setProperty('connection', $this->connection->reveal()); $snippet = $this->snippetFromMethod(HmacKey::class, 'reload'); $snippet->addLocal('hmacKey', $this->key); $res = $snippet->invoke('keyMetadata'); $this->assertEquals($newMetadata, $res->returnVal()); } public function testInfo() { $snippet = $this->snippetFromMethod(HmacKey::class, 'info'); $snippet->addLocal('hmacKey', $this->key); $this->assertEquals($this->metadata, $snippet->invoke('keyMetadata')->returnVal()); } public function testUpdate() { $this->connection->updateHmacKey(Argument::withEntry('state', 'INACTIVE')) ->willReturn($this->metadata) ->shouldBeCalled(); $this->key->___setProperty('connection', $this->connection->reveal()); $snippet = $this->snippetFromMethod(HmacKey::class, 'update'); $snippet->addLocal('hmacKey', $this->key); $snippet->invoke(); } public function testDelete() { $this->connection->deleteHmacKey(Argument::any()) ->willReturn(null) ->shouldBeCalled(); $this->key->___setProperty('connection', $this->connection->reveal()); $snippet = $this->snippetFromMethod(HmacKey::class, 'delete'); $snippet->addLocal('hmacKey', $this->key); $snippet->invoke(); } }