OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
google
/
cloud-storage
/
tests
/
System
/
StreamWrapper
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:35:01 AM
rwxr-xr-x
📄
AppendTest.php
3.34 KB
08/12/2024 10:35:01 AM
rw-r--r--
📄
DirectoryTest.php
4.98 KB
08/12/2024 10:35:01 AM
rw-r--r--
📄
FlushTest.php
4.46 KB
08/12/2024 10:35:01 AM
rw-r--r--
📄
ImageTest.php
2.19 KB
08/12/2024 10:35:01 AM
rw-r--r--
📄
ReadTest.php
1.76 KB
08/12/2024 10:35:01 AM
rw-r--r--
📄
RenameTest.php
1.73 KB
08/12/2024 10:35:01 AM
rw-r--r--
📄
StreamWrapperTestCase.php
1.41 KB
08/12/2024 10:35:02 AM
rw-r--r--
📄
UrlStatTest.php
2.92 KB
08/12/2024 10:35:02 AM
rw-r--r--
📄
WriteTest.php
2.25 KB
08/12/2024 10:35:02 AM
rw-r--r--
Editing: UrlStatTest.php
Close
<?php /** * Copyright 2017 Google Inc. All Rights Reserved. * * 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\System\StreamWrapper; /** * @group storage * @group storage-stream-wrapper * @group storage-stream-wrapper-urlstat */ class UrlStatTest extends StreamWrapperTestCase { protected static $fileUrl; protected static $dirUrl; public static function setUpBeforeClass(): void { parent::setUpBeforeClass(); self::$fileUrl = self::generateUrl(self::$object->name()); self::$dirUrl = self::generateUrl('some_folder/'); mkdir(self::$dirUrl); } public function testUrlStatFile() { $stat = stat(self::$fileUrl); $this->assertEquals(33206, $stat['mode']); } public function testUrlStatDirectory() { $stat = stat(self::$dirUrl); $this->assertEquals(16895, $stat['mode']); } public function testStatOnOpenFileForWrite() { $fd = fopen(self::$fileUrl, 'w'); $stat = fstat($fd); $this->assertEquals(33206, $stat['mode']); } public function testStatOnOpenFileForRead() { $fd = fopen(self::$fileUrl, 'r'); $stat = fstat($fd); $this->assertEquals(33206, $stat['mode']); } public function testIsWritable() { $this->assertTrue(is_writable(self::$dirUrl)); $this->assertTrue(is_writable(self::$fileUrl)); } public function testIsReadable() { $this->assertTrue(is_readable(self::$dirUrl)); $this->assertTrue(is_readable(self::$fileUrl)); } public function testFileExists() { $this->assertFileExists(self::$dirUrl); $this->assertFileExists(self::$fileUrl); } public function testIsLink() { $this->assertFalse(is_link(self::$dirUrl)); $this->assertFalse(is_link(self::$fileUrl)); } public function testIsExecutable() { $this->assertTrue(is_executable(self::$dirUrl)); $this->assertFalse(is_executable(self::$fileUrl)); } public function testIsFile() { $this->assertTrue(is_file(self::$fileUrl)); $this->assertFalse(is_file(self::$dirUrl)); } public function testIsDir() { $this->assertTrue(is_dir(self::$dirUrl)); $this->assertFalse(is_dir(self::$fileUrl)); } }