Sha256: 162c4e9bffda449c9afeaa771dbbc8ebc1a16ed4d502318e8aa23edab43672df

Contents?: true

Size: 1.48 KB

Versions: 8

Compression:

Stored size: 1.48 KB

Contents

# language: en
@s3 @buckets
Feature: S3 Buckets

  Scenario: CRUD buckets using the classic endpoint
    Given I am using the S3 "us-east-1" region
    When I create a bucket
    Then the bucket should exist
    When I delete the bucket
    Then the bucket should not exist

  Scenario: CRUD buckets using a regional endpoint
    Given I am using the S3 "us-west-2" region
    When I create a bucket
    Then the bucket should exist
    When I delete the bucket
    Then the bucket should not exist

  Scenario: Access bucket following 307 redirects
    Given I am using the S3 "us-east-1" region
    When I create a bucket with the location constraint "EU"
    Then the bucket should have a location constraint of "EU"

  Scenario: Working with bucket names that contain '.'
    Given I am using the S3 "https://s3.amazonaws.com" endpoint
    When I create a bucket with a DNS compatible name that contains a dot
    Then I should be able to delete the bucket

  Scenario: Working with bucket names that contain '.'
    Given I am using the S3 "http://s3.amazonaws.com" endpoint
    When I create a bucket with a DNS compatible name that contains a dot
    Then I should be able to delete the bucket

  @force_path_style
  Scenario: Operating on a bucket/object using path style
    Given I force path style requests
    And I create a DNS compatible bucket
    When I put "abc" to the key "object-key"
    Then the bucket name should be in the request path
    And the bucket name should not be in the request host

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
aws-sdk-core-2.0.0.rc12 features/s3/buckets.feature
aws-sdk-core-2.0.0.rc11 features/s3/buckets.feature
aws-sdk-core-2.0.0.rc10 features/s3/buckets.feature
aws-sdk-core-2.0.0.rc9 features/s3/buckets.feature
aws-sdk-core-2.0.0.rc8 features/s3/buckets.feature
aws-sdk-core-2.0.0.rc7 features/s3/buckets.feature
aws-sdk-core-2.0.0.rc6 features/s3/buckets.feature
aws-sdk-core-2.0.0.rc5 features/s3/buckets.feature