OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
zzaws-ses
/
vendor
/
aws
/
aws-sdk-php
/
features
/
crt
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/14/2024 08:01:24 AM
rwxr-xr-x
📄
cloudfront-kvs.feature
226 bytes
08/14/2024 07:58:15 AM
rw-r--r--
📄
eventbridge.feature
280 bytes
08/14/2024 07:58:15 AM
rw-r--r--
📄
mrap.feature
1.94 KB
08/14/2024 07:58:15 AM
rw-r--r--
Editing: mrap.feature
Close
@crt @integ @mrap Feature: Multi-Region Access Points Scenario: Upload an object via PutObject using sigv4a Given I have a s3 client and I have a file And I upload the file to my multi-region access point Then I can confirm the object exists Scenario: Use the listObjects api to view accessPoint objects Given I have a s3 client and I have multi-region access point Then I can confirm my access point has at least one object Scenario: Update an object via PutObject using sigv4a Given I have a s3 client and I have multi-region access point When I use the PutObject operation and update the file to have a body of "test" Then I can confirm the object has been updated Scenario: Get an object with a sigv4a pre-signed request Given I have a s3 client and I have multi-region access point Given I have uploaded an object to S3 with a key of `mrap-test` and a body of `test` When I create a pre-signed request for a "GetObject" command with: | key | value | | Key | mrap-test | Then the contents of the response to the presigned request should be "test" Scenario: Put an object with a sigv4a pre-signed request Given I have a s3 client and I have multi-region access point Given I create a pre-signed request for a "PutObject" command with: | key | value | | Key | foo.bar | | Body | xxx_yyy_zzz | And I send the pre-signed request When I create a pre-signed request for a "GetObject" command with: | key | value | | Key | foo.bar | Then the contents of the response to the presigned request should be "xxx_yyy_zzz" Scenario: Delete an object via DeleteObject using sigv4a Given I have a s3 client and I have multi-region access point Then I can confirm the object exists When I delete the object Then I can confirm the object has been deleted