array( // 'configuration' => array( // // You can skip one or more keys. The defaults will be used. // 'access' => 'a different access key', // 'secret' => 'a different secret key', // 'region' => 'eu-west-1', // 'bucket' => 'different_example', // 'signature' => 'v2', // 'dualstack' => true, // 'path_access' => true, // 'ssl' => true, // // Only if you want to use a custom, non-Amazon endpoint // 'endpoint' => null, // ), // 'tests' => array( // // Use a start to run all tests // '*', // // Alternatively you can define single test classes: // 'SmallFiles', // // ..or specific tests: // array('SmallFiles', 'upload10KbRoot'), // ) // ), /**/ /** * These are the standard tests we run for each region and key pair. * * For all available regions please consult https://docs.aws.amazon.com/general/latest/gr/s3.html * * It is recommended to run against the following regions: * - eu-east-1 The original Amazon S3 region, it often has special meaning in APIs. * - eu-west-1 Ireland. The original EU region for S3, as a test for the non-default region. * - eu-central-1 Frankfurt. This region –like all newer regions– only allows v4 signatures! * - cn-north-1 Beijing, China. Requires running it from inside China. * - NON-AMAZON A custom endpoint for a third party, S3-compatible API. Ideally one for v2 and one for v4. * * Further to that test the following: * - Write-only, bucket-restricted keys * - Read/write, bucket-restricted keys * - Buckets with dots * - Buckets with uppercase letters * - Buckets with international letters * - Access from within EC2 */ 'Global key, v4, DNS, single stack' => [ 'configuration' => [ 'signature' => 'v4', 'dualstack' => false, 'path_access' => false, ], 'tests' => $standardTests, ], 'Global key, v4, DNS, dual stack' => [ 'configuration' => [ 'signature' => 'v4', 'dualstack' => true, 'path_access' => false, ], 'tests' => $standardTests, ], 'Global key, v4, path, single stack' => [ 'configuration' => [ 'signature' => 'v4', 'dualstack' => false, 'path_access' => true, ], 'tests' => $standardTests, ], 'Global key, v4, path, dual stack' => [ 'configuration' => [ 'signature' => 'v4', 'dualstack' => true, 'path_access' => true, ], 'tests' => $standardTests, ], 'Global key, v2, DNS, single stack' => [ 'configuration' => [ 'signature' => 'v2', 'dualstack' => false, 'path_access' => false, ], 'tests' => $standardTests, ], 'Global key, v2, DNS, dual stack' => [ 'configuration' => [ 'signature' => 'v2', 'dualstack' => true, 'path_access' => false, ], 'tests' => $standardTests, ], ];