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: NotificationTest.php
Close
<?php /** * Copyright 2017 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\PubSub\PubSubClient; use Google\Cloud\PubSub\Topic; use Google\Cloud\Storage\Acl; use Google\Cloud\Storage\Bucket; use Google\Cloud\Storage\Connection\Rest; use Google\Cloud\Storage\Notification; use Prophecy\Argument; use Prophecy\PhpUnit\ProphecyTrait; /** * @group storage */ class NotificationTest extends SnippetTestCase { use ProphecyTrait; const BUCKET = 'my-bucket'; const NOTIFICATION_ID = '1234'; private $connection; private $notification; public function setUp(): void { $this->connection = $this->prophesize(Rest::class); $this->notification = TestHelpers::stub(Notification::class, [ $this->connection->reveal(), self::NOTIFICATION_ID, self::BUCKET ]); } public function testClass() { $snippet = $this->snippetFromClass(Notification::class); $res = $snippet->invoke('notification'); $this->assertInstanceOf(Notification::class, $res->returnVal()); } public function testExists() { $snippet = $this->snippetFromMethod(Notification::class, 'exists'); $snippet->addLocal('notification', $this->notification); $this->connection->getNotification(Argument::any()) ->shouldBeCalled(); $this->notification->___setProperty('connection', $this->connection->reveal()); $res = $snippet->invoke(); $this->assertEquals('Notification exists!', $res->output()); } public function testDelete() { $snippet = $this->snippetFromMethod(Notification::class, 'delete'); $snippet->addLocal('notification', $this->notification); $this->connection->deleteNotification(Argument::any()) ->shouldBeCalled(); $this->notification->___setProperty('connection', $this->connection->reveal()); $snippet->invoke(); } public function testInfo() { $snippet = $this->snippetFromMethod(Notification::class, 'info'); $snippet->addLocal('notification', $this->notification); $topic = 'my-topic'; $this->connection->getNotification(Argument::any()) ->shouldBeCalled() ->willReturn([ 'topic' => $topic ]); $this->notification->___setProperty('connection', $this->connection->reveal()); $res = $snippet->invoke(); $this->assertEquals($topic, $res->output()); } public function testReload() { $snippet = $this->snippetFromMethod(Notification::class, 'reload'); $snippet->addLocal('notification', $this->notification); $topic = 'my-topic'; $this->connection->getNotification(Argument::any()) ->shouldBeCalled() ->willReturn([ 'topic' => $topic ]); $this->notification->___setProperty('connection', $this->connection->reveal()); $res = $snippet->invoke(); $this->assertEquals($topic, $res->output()); } public function testId() { $snippet = $this->snippetFromMethod(Notification::class, 'id'); $snippet->addLocal('notification', $this->notification); $res = $snippet->invoke(); $this->assertEquals(self::NOTIFICATION_ID, $res->output()); } public function testIdentity() { $snippet = $this->snippetFromMethod(Notification::class, 'identity'); $snippet->addLocal('notification', $this->notification); $res = $snippet->invoke(); $this->assertEquals(self::BUCKET, $res->output()); } }