OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
aws-ses
/
vendor
/
aws
/
aws-crt-php
/
tests
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/14/2024 10:51:37 AM
rwxr-xr-x
📄
CoreTest.php
709 bytes
08/14/2024 10:50:19 AM
rw-r--r--
📄
CrcTest.php
2.7 KB
08/14/2024 10:50:19 AM
rw-r--r--
📄
CredentialsTest.php
1.93 KB
08/14/2024 10:50:19 AM
rw-r--r--
📄
ErrorTest.php
594 bytes
08/14/2024 10:50:19 AM
rw-r--r--
📄
EventLoopGroupTest.php
758 bytes
08/14/2024 10:50:19 AM
rw-r--r--
📄
HttpMessageTest.php
3.06 KB
08/14/2024 10:50:19 AM
rw-r--r--
📄
LogTest.php
705 bytes
08/14/2024 10:50:19 AM
rw-r--r--
📄
SigningTest.php
7.83 KB
08/14/2024 10:50:19 AM
rw-r--r--
📄
StreamTest.php
1.45 KB
08/14/2024 10:50:19 AM
rw-r--r--
📄
common.inc
911 bytes
08/14/2024 10:50:19 AM
rw-r--r--
Editing: StreamTest.php
Close
<?php /** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ use AWS\CRT\IO\InputStream as InputStream; require_once('common.inc'); final class InputStreamTest extends CrtTestCase { const MEM_STREAM_CONTENTS = "THIS IS A TEST"; private function getMemoryStream() { $stream = fopen("php://memory", 'r+'); fputs($stream, self::MEM_STREAM_CONTENTS); rewind($stream); return $stream; } public function testMemoryStream() { $mem_stream = $this->getMemoryStream(); $stream = new InputStream($mem_stream); $this->assertNotNull($stream, "Failed to create InputStream from PHP memory stream"); $this->assertEquals(strlen(self::MEM_STREAM_CONTENTS), $stream->length(), "Stream length doesn't match source buffer"); $this->assertEquals(self::MEM_STREAM_CONTENTS, $stream->read(), "Stream doesn't match source buffer"); $this->assertTrue($stream->eof(), "Stream is not EOF after reading"); $this->assertEquals(0, $stream->seek(0, InputStream::SEEK_BEGIN), "Unable to rewind stream"); $this->assertFalse($stream->eof(), "Stream is EOF after rewinding"); $this->assertEquals(0, $stream->seek(0, InputStream::SEEK_END), "Unable to seek to end of stream"); $this->assertTrue($stream->eof(), "Stream is not EOF after seeking to end"); $stream = null; } }