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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package awsrestjson
import (
"context"
"github.com/aws/aws-sdk-go-v2/aws"
protocoltesthttp "github.com/aws/aws-sdk-go-v2/internal/protocoltest"
"github.com/aws/smithy-go/middleware"
smithyprivateprotocol "github.com/aws/smithy-go/private/protocol"
"github.com/aws/smithy-go/ptr"
smithyrand "github.com/aws/smithy-go/rand"
smithytesting "github.com/aws/smithy-go/testing"
smithytime "github.com/aws/smithy-go/time"
"io"
"net/http"
"net/url"
"testing"
)
func TestClient_HttpRequestWithLabels_awsRestjson1Serialize(t *testing.T) {
cases := map[string]struct {
Params *HttpRequestWithLabelsInput
ExpectMethod string
ExpectURIPath string
ExpectQuery []smithytesting.QueryItem
RequireQuery []string
ForbidQuery []string
ExpectHeader http.Header
RequireHeader []string
ForbidHeader []string
Host *url.URL
BodyMediaType string
BodyAssert func(io.Reader) error
}{
// Sends a GET request that uses URI label bindings
"RestJsonInputWithHeadersAndAllParams": {
Params: &HttpRequestWithLabelsInput{
String_: ptr.String("string"),
Short: ptr.Int16(1),
Integer: ptr.Int32(2),
Long: ptr.Int64(3),
Float: ptr.Float32(4.1),
Double: ptr.Float64(5.1),
Boolean: ptr.Bool(true),
Timestamp: ptr.Time(smithytime.ParseEpochSeconds(1576540098)),
},
ExpectMethod: "GET",
ExpectURIPath: "/HttpRequestWithLabels/string/1/2/3/4.1/5.1/true/2019-12-16T23%3A48%3A18Z",
ExpectQuery: []smithytesting.QueryItem{},
BodyAssert: func(actual io.Reader) error {
return smithytesting.CompareReaderEmpty(actual)
},
},
// Sends a GET request that uses URI label bindings
"RestJsonHttpRequestLabelEscaping": {
Params: &HttpRequestWithLabelsInput{
String_: ptr.String(" %:/?#[]@!$&'()*+,;=😹"),
Short: ptr.Int16(1),
Integer: ptr.Int32(2),
Long: ptr.Int64(3),
Float: ptr.Float32(4.1),
Double: ptr.Float64(5.1),
Boolean: ptr.Bool(true),
Timestamp: ptr.Time(smithytime.ParseEpochSeconds(1576540098)),
},
ExpectMethod: "GET",
ExpectURIPath: "/HttpRequestWithLabels/%20%25%3A%2F%3F%23%5B%5D%40%21%24%26%27%28%29%2A%2B%2C%3B%3D%F0%9F%98%B9/1/2/3/4.1/5.1/true/2019-12-16T23%3A48%3A18Z",
ExpectQuery: []smithytesting.QueryItem{},
BodyAssert: func(actual io.Reader) error {
return smithytesting.CompareReaderEmpty(actual)
},
},
}
for name, c := range cases {
t.Run(name, func(t *testing.T) {
actualReq := &http.Request{}
serverURL := "http://localhost:8888/"
if c.Host != nil {
u, err := url.Parse(serverURL)
if err != nil {
t.Fatalf("expect no error, got %v", err)
}
u.Path = c.Host.Path
u.RawPath = c.Host.RawPath
u.RawQuery = c.Host.RawQuery
serverURL = u.String()
}
client := New(Options{
APIOptions: []func(*middleware.Stack) error{
func(s *middleware.Stack) error {
s.Finalize.Clear()
s.Initialize.Remove(`OperationInputValidation`)
return nil
},
},
EndpointResolver: EndpointResolverFunc(func(region string, options EndpointResolverOptions) (e aws.Endpoint, err error) {
e.URL = serverURL
e.SigningRegion = "us-west-2"
return e, err
}),
HTTPClient: protocoltesthttp.NewClient(),
IdempotencyTokenProvider: smithyrand.NewUUIDIdempotencyToken(&smithytesting.ByteLoop{}),
Region: "us-west-2",
})
result, err := client.HttpRequestWithLabels(context.Background(), c.Params, func(options *Options) {
options.APIOptions = append(options.APIOptions, func(stack *middleware.Stack) error {
return smithyprivateprotocol.AddCaptureRequestMiddleware(stack, actualReq)
})
})
if err != nil {
t.Fatalf("expect nil err, got %v", err)
}
if result == nil {
t.Fatalf("expect not nil result")
}
if e, a := c.ExpectMethod, actualReq.Method; e != a {
t.Errorf("expect %v method, got %v", e, a)
}
if e, a := c.ExpectURIPath, actualReq.URL.RawPath; e != a {
t.Errorf("expect %v path, got %v", e, a)
}
queryItems := smithytesting.ParseRawQuery(actualReq.URL.RawQuery)
smithytesting.AssertHasQuery(t, c.ExpectQuery, queryItems)
smithytesting.AssertHasQueryKeys(t, c.RequireQuery, queryItems)
smithytesting.AssertNotHaveQueryKeys(t, c.ForbidQuery, queryItems)
smithytesting.AssertHasHeader(t, c.ExpectHeader, actualReq.Header)
smithytesting.AssertHasHeaderKeys(t, c.RequireHeader, actualReq.Header)
smithytesting.AssertNotHaveHeaderKeys(t, c.ForbidHeader, actualReq.Header)
if c.BodyAssert != nil {
if err := c.BodyAssert(actualReq.Body); err != nil {
t.Errorf("expect body equal, got %v", err)
}
}
})
}
}
|