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: AclTest.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\Storage\Tests\Snippet; use Google\Cloud\Core\Testing\Snippet\SnippetTestCase; use Google\Cloud\Core\Testing\TestHelpers; use Google\Cloud\Storage\Acl; use Google\Cloud\Storage\Connection\ConnectionInterface; use Prophecy\Argument; use Prophecy\PhpUnit\ProphecyTrait; /** * @group storage */ class AclTest extends SnippetTestCase { use ProphecyTrait; private $connection; private $acl; public function setUp(): void { $this->connection = $this->prophesize(ConnectionInterface::class); $this->acl = TestHelpers::stub(Acl::class, [ $this->connection->reveal(), 'bucketAccessControls', [] ]); } public function testClass() { $snippet = $this->snippetFromClass(Acl::class); $res = $snippet->invoke('acl'); $this->assertInstanceOf(Acl::class, $res->returnVal()); } public function testDelete() { $snippet = $this->snippetFromMethod(Acl::class, 'delete'); $snippet->addLocal('acl', $this->acl); $this->connection->deleteAcl(Argument::any()) ->shouldBeCalled(); $this->acl->___setProperty('connection', $this->connection->reveal()); $snippet->invoke(); } public function testGet() { $snippet = $this->snippetFromMethod(Acl::class, 'get'); $snippet->addLocal('acl', $this->acl); $this->connection->getAcl(Argument::any()) ->shouldBeCalled() ->willReturn('foo'); $this->acl->___setProperty('connection', $this->connection->reveal()); $res = $snippet->invoke('res'); $this->assertEquals('foo', $res->returnVal()); } public function testAdd() { $snippet = $this->snippetFromMethod(Acl::class, 'add'); $snippet->addLocal('acl', $this->acl); $this->connection->insertAcl(Argument::any()) ->shouldBecalled(); $this->acl->___setProperty('connection', $this->connection->reveal()); $snippet->invoke(); } public function testUpdate() { $snippet = $this->snippetFromMethod(Acl::class, 'update'); $snippet->addlocal('acl', $this->acl); $this->connection->patchAcl(Argument::any()) ->shouldBeCalled(); $this->acl->___setProperty('connection', $this->connection->reveal()); $snippet->invoke(); } }