mirror of
https://github.com/Luzifer/cloudkeys-go.git
synced 2024-11-14 00:42:44 +00:00
82 lines
3 KiB
Go
82 lines
3 KiB
Go
|
package s3_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/aws/aws-sdk-go/aws"
|
||
|
"github.com/aws/aws-sdk-go/aws/awserr"
|
||
|
"github.com/aws/aws-sdk-go/internal/test/unit"
|
||
|
"github.com/aws/aws-sdk-go/service/s3"
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
var _ = unit.Imported
|
||
|
|
||
|
func TestSSECustomerKeyOverHTTPError(t *testing.T) {
|
||
|
s := s3.New(&aws.Config{DisableSSL: true})
|
||
|
req, _ := s.CopyObjectRequest(&s3.CopyObjectInput{
|
||
|
Bucket: aws.String("bucket"),
|
||
|
CopySource: aws.String("bucket/source"),
|
||
|
Key: aws.String("dest"),
|
||
|
SSECustomerKey: aws.String("key"),
|
||
|
})
|
||
|
err := req.Build()
|
||
|
|
||
|
assert.Error(t, err)
|
||
|
assert.Equal(t, "ConfigError", err.(awserr.Error).Code())
|
||
|
assert.Contains(t, err.(awserr.Error).Message(), "cannot send SSE keys over HTTP")
|
||
|
}
|
||
|
|
||
|
func TestCopySourceSSECustomerKeyOverHTTPError(t *testing.T) {
|
||
|
s := s3.New(&aws.Config{DisableSSL: true})
|
||
|
req, _ := s.CopyObjectRequest(&s3.CopyObjectInput{
|
||
|
Bucket: aws.String("bucket"),
|
||
|
CopySource: aws.String("bucket/source"),
|
||
|
Key: aws.String("dest"),
|
||
|
CopySourceSSECustomerKey: aws.String("key"),
|
||
|
})
|
||
|
err := req.Build()
|
||
|
|
||
|
assert.Error(t, err)
|
||
|
assert.Equal(t, "ConfigError", err.(awserr.Error).Code())
|
||
|
assert.Contains(t, err.(awserr.Error).Message(), "cannot send SSE keys over HTTP")
|
||
|
}
|
||
|
|
||
|
func TestComputeSSEKeys(t *testing.T) {
|
||
|
s := s3.New(nil)
|
||
|
req, _ := s.CopyObjectRequest(&s3.CopyObjectInput{
|
||
|
Bucket: aws.String("bucket"),
|
||
|
CopySource: aws.String("bucket/source"),
|
||
|
Key: aws.String("dest"),
|
||
|
SSECustomerKey: aws.String("key"),
|
||
|
CopySourceSSECustomerKey: aws.String("key"),
|
||
|
})
|
||
|
err := req.Build()
|
||
|
|
||
|
assert.NoError(t, err)
|
||
|
assert.Equal(t, "a2V5", req.HTTPRequest.Header.Get("x-amz-server-side-encryption-customer-key"))
|
||
|
assert.Equal(t, "a2V5", req.HTTPRequest.Header.Get("x-amz-copy-source-server-side-encryption-customer-key"))
|
||
|
assert.Equal(t, "PG4LipwVIkqCKLmpjKFTHQ==", req.HTTPRequest.Header.Get("x-amz-server-side-encryption-customer-key-md5"))
|
||
|
assert.Equal(t, "PG4LipwVIkqCKLmpjKFTHQ==", req.HTTPRequest.Header.Get("x-amz-copy-source-server-side-encryption-customer-key-md5"))
|
||
|
}
|
||
|
|
||
|
func TestComputeSSEKeysShortcircuit(t *testing.T) {
|
||
|
s := s3.New(nil)
|
||
|
req, _ := s.CopyObjectRequest(&s3.CopyObjectInput{
|
||
|
Bucket: aws.String("bucket"),
|
||
|
CopySource: aws.String("bucket/source"),
|
||
|
Key: aws.String("dest"),
|
||
|
SSECustomerKey: aws.String("key"),
|
||
|
CopySourceSSECustomerKey: aws.String("key"),
|
||
|
SSECustomerKeyMD5: aws.String("MD5"),
|
||
|
CopySourceSSECustomerKeyMD5: aws.String("MD5"),
|
||
|
})
|
||
|
err := req.Build()
|
||
|
|
||
|
assert.NoError(t, err)
|
||
|
assert.Equal(t, "a2V5", req.HTTPRequest.Header.Get("x-amz-server-side-encryption-customer-key"))
|
||
|
assert.Equal(t, "a2V5", req.HTTPRequest.Header.Get("x-amz-copy-source-server-side-encryption-customer-key"))
|
||
|
assert.Equal(t, "MD5", req.HTTPRequest.Header.Get("x-amz-server-side-encryption-customer-key-md5"))
|
||
|
assert.Equal(t, "MD5", req.HTTPRequest.Header.Get("x-amz-copy-source-server-side-encryption-customer-key-md5"))
|
||
|
}
|