OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
aws-ses
/
vendor
/
aws
/
aws-sdk-php
/
tests
/
S3
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/14/2024 10:55:48 AM
rwxr-xr-x
📄
AmbiguousSuccessParserTest.php
3.68 KB
08/14/2024 10:52:45 AM
rw-r--r--
📄
ApplyChecksumMiddlewareTest.php
7.42 KB
08/14/2024 10:52:45 AM
rw-r--r--
📄
BatchDeleteTest.php
6.73 KB
08/14/2024 10:52:45 AM
rw-r--r--
📄
BucketEndpointArnMiddlewareTest.php
21.78 KB
08/14/2024 10:52:45 AM
rw-r--r--
📄
BucketEndpointMiddlewareTest.php
6.02 KB
08/14/2024 10:52:45 AM
rw-r--r--
📁
Crypto
-
08/14/2024 10:55:48 AM
rwxr-xr-x
📁
Exception
-
08/14/2024 10:55:49 AM
rwxr-xr-x
📄
GetBucketLocationParserTest.php
1.34 KB
08/14/2024 10:52:45 AM
rw-r--r--
📄
MultipartCopyTest.php
4.94 KB
08/14/2024 10:52:46 AM
rw-r--r--
📄
MultipartUploaderTest.php
12.52 KB
08/14/2024 10:52:46 AM
rw-r--r--
📄
ObjectCopierTest.php
15.15 KB
08/14/2024 10:52:46 AM
rw-r--r--
📄
ObjectUploaderTest.php
11.32 KB
08/14/2024 10:52:46 AM
rw-r--r--
📄
PermanentRedirectMiddlewareTest.php
982 bytes
08/14/2024 10:52:46 AM
rw-r--r--
📄
PostObjectTest.php
3.52 KB
08/14/2024 10:52:46 AM
rw-r--r--
📄
PostObjectV4Test.php
11.12 KB
08/14/2024 10:52:46 AM
rw-r--r--
📄
PutObjectUrlMiddlewareTest.php
2 KB
08/14/2024 10:52:46 AM
rw-r--r--
📁
RegionalEndpoint
-
08/14/2024 10:55:49 AM
rwxr-xr-x
📄
RetryableMalformedResponseParserTest.php
934 bytes
08/14/2024 10:52:46 AM
rw-r--r--
📄
S3ClientTest.php
92.05 KB
08/14/2024 10:52:46 AM
rw-r--r--
📄
S3EndpointMiddlewareTest.php
30.05 KB
08/14/2024 10:52:46 AM
rw-r--r--
📄
S3MultiRegionClientTest.php
24.99 KB
08/14/2024 10:52:46 AM
rw-r--r--
📄
S3UriParserTest.php
7.45 KB
08/14/2024 10:52:46 AM
rw-r--r--
📄
SSECMiddlewareTest.php
2.91 KB
08/14/2024 10:52:46 AM
rw-r--r--
📄
StreamWrapperPathStyleTest.php
30.16 KB
08/14/2024 10:52:46 AM
rw-r--r--
📄
StreamWrapperTest.php
36.33 KB
08/14/2024 10:52:46 AM
rw-r--r--
📄
StreamWrapperV2ExistenceTest.php
32.63 KB
08/14/2024 10:52:46 AM
rw-r--r--
📄
TransferTest.php
14.24 KB
08/14/2024 10:52:47 AM
rw-r--r--
📁
UseArnRegion
-
08/14/2024 10:55:49 AM
rwxr-xr-x
📄
ValidateResponseChecksumParserTest.php
5.45 KB
08/14/2024 10:52:47 AM
rw-r--r--
📁
fixtures
-
08/14/2024 11:03:22 AM
rwxr-xr-x
📄
sig_hack.php
226 bytes
08/14/2024 10:52:46 AM
rw-r--r--
📁
test_cases
-
08/14/2024 10:55:49 AM
rwxr-xr-x
Editing: RetryableMalformedResponseParserTest.php
Close
<?php namespace Aws\Test\S3; use Aws\Api\Parser\Exception\ParserException; use Aws\CommandInterface; use Aws\S3\Exception\S3Exception; use Aws\S3\RetryableMalformedResponseParser; use Psr\Http\Message\ResponseInterface; use Yoast\PHPUnitPolyfills\TestCases\TestCase; class RetryableMalformedResponseParserTest extends TestCase { public function testConvertsParserExceptionsToRetryableExceptions() { $this->expectExceptionMessage("Sorry!"); $this->expectException(\Aws\S3\Exception\S3Exception::class); $parser = function () { throw new ParserException('Sorry!'); }; $instance = new RetryableMalformedResponseParser( $parser, S3Exception::class ); $instance( $this->getMockBuilder(CommandInterface::class)->getMock(), $this->getMockBuilder(ResponseInterface::class)->getMock() ); } }