1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package docdb
import (
"context"
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/internal/awstesting/unit"
presignedurlcust "github.com/aws/aws-sdk-go-v2/service/internal/presigned-url"
"github.com/aws/smithy-go/middleware"
smithyhttp "github.com/aws/smithy-go/transport/http"
"net/http"
"strings"
"testing"
)
func TestClientCopyDBClusterSnapshot_presignURLCustomization(t *testing.T) {
cases := map[string]struct {
Input *CopyDBClusterSnapshotInput
ClientRegion string
ExpectPresignedURL string
ExpectPresignedURLDestinationRegion string
ExpectRequestURL string
ExpectErr string
}{
"have presigned URL no auto fill": {
Input: &CopyDBClusterSnapshotInput{
PreSignedUrl: aws.String("https://example.aws/signed-url"),
},
ClientRegion: "mock-region",
ExpectPresignedURL: "https://example.aws/signed-url",
ExpectRequestURL: "https://service.mock-region.amazonaws.com/",
},
"no source region no auto fill": {
Input: &CopyDBClusterSnapshotInput{},
ClientRegion: "mock-region",
ExpectRequestURL: "https://service.mock-region.amazonaws.com/",
},
"auto fill presign URL matching region": {
Input: &CopyDBClusterSnapshotInput{
SourceRegion: aws.String("mock-region"),
},
ClientRegion: "mock-region",
ExpectPresignedURL: "https://service.mock-region.amazonaws.com/",
ExpectPresignedURLDestinationRegion: "DestinationRegion=mock-region",
ExpectRequestURL: "https://service.mock-region.amazonaws.com/",
},
"auto fill presign URL different region": {
Input: &CopyDBClusterSnapshotInput{
SourceRegion: aws.String("mock-other-region"),
},
ClientRegion: "mock-region",
ExpectPresignedURL: "https://service.mock-other-region.amazonaws.com/",
ExpectPresignedURLDestinationRegion: "DestinationRegion=mock-region",
ExpectRequestURL: "https://service.mock-region.amazonaws.com/",
},
}
for name, c := range cases {
t.Run(name, func(t *testing.T) {
client := New(Options{
Region: c.ClientRegion,
Credentials: unit.StubCredentialsProvider{},
HTTPClient: smithyhttp.ClientDoFunc(func(r *http.Request) (*http.Response, error) {
if e, a := c.ExpectRequestURL, r.URL.String(); !strings.HasPrefix(a, e) {
t.Errorf("expect presigned URL to contain %v, got %v", e, a)
}
return smithyhttp.NopClient{}.Do(r)
}),
EndpointResolver: EndpointResolverFunc(
func(region string, options EndpointResolverOptions) (aws.Endpoint, error) {
return aws.Endpoint{
URL: "https://service." + region + ".amazonaws.com",
SigningRegion: c.ClientRegion,
}, nil
}),
})
_, err := client.CopyDBClusterSnapshot(context.Background(), c.Input,
func(o *Options) {
o.APIOptions = append(o.APIOptions, func(stack *middleware.Stack) (err error) {
_, err = stack.Initialize.Remove("OperationInputValidation")
if err != nil {
return err
}
return stack.Serialize.Add(middleware.SerializeMiddlewareFunc(t.Name(),
func(
ctx context.Context, in middleware.SerializeInput, next middleware.SerializeHandler,
) (
out middleware.SerializeOutput, metadata middleware.Metadata, err error,
) {
input, ok := in.Parameters.(*CopyDBClusterSnapshotInput)
if !ok {
t.Fatalf("expect CopyDBClusterSnapshotInput, got %T", in.Parameters)
}
// Switch based on if presign flow or not
if presignedurlcust.GetIsPresigning(ctx) {
// Presign Flow
if v := input.PreSignedUrl; v != nil {
t.Errorf("expect no presigned URL, got %v", *v)
}
if input.destinationRegion == nil {
t.Fatalf("expect destination region to be set")
}
if e, a := c.ClientRegion, *input.destinationRegion; e != a {
t.Errorf("expect %v destination region, got %v", e, a)
}
} else {
// Operation flow
if v := input.destinationRegion; v != nil {
t.Errorf("expect no destination region, got %v", *v)
}
if len(c.ExpectPresignedURL) != 0 {
if input.PreSignedUrl == nil {
t.Fatalf("expect presigned URL, got none")
}
if e, a := c.ExpectPresignedURL, *input.PreSignedUrl; !strings.HasPrefix(a, e) {
t.Errorf("expect presigned URL to contain %v, got %v", e, a)
}
if e, a := c.ExpectPresignedURLDestinationRegion, *input.PreSignedUrl; !strings.Contains(a, e) {
t.Errorf("expect presigned URL destination region to contain %v, got %v", e, a)
}
return next.HandleSerialize(ctx, in)
}
if v := input.PreSignedUrl; v != nil {
t.Errorf("expect no presigned url, got %v", *v)
}
}
return next.HandleSerialize(ctx, in)
},
), middleware.After)
})
},
)
if len(c.ExpectErr) != 0 {
if err == nil {
t.Fatalf("expect error, got none")
}
if e, a := c.ExpectErr, err.Error(); !strings.Contains(a, e) {
t.Fatalf("expect error to contain %v, got %v", e, a)
}
return
}
if err != nil {
t.Fatalf("expect no error, got %v", err)
}
})
}
}
|