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 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package jsonrpc10
import (
"bytes"
"context"
"github.com/aws/aws-sdk-go-v2/aws"
protocoltesthttp "github.com/aws/aws-sdk-go-v2/internal/protocoltest"
"github.com/aws/aws-sdk-go-v2/internal/protocoltest/jsonrpc10/document"
"github.com/aws/aws-sdk-go-v2/internal/protocoltest/jsonrpc10/types"
smithydocument "github.com/aws/smithy-go/document"
"github.com/aws/smithy-go/middleware"
smithyprivateprotocol "github.com/aws/smithy-go/private/protocol"
"github.com/aws/smithy-go/ptr"
smithytesting "github.com/aws/smithy-go/testing"
smithytime "github.com/aws/smithy-go/time"
smithyhttp "github.com/aws/smithy-go/transport/http"
"github.com/google/go-cmp/cmp"
"github.com/google/go-cmp/cmp/cmpopts"
"io"
"io/ioutil"
"math"
"net/http"
"net/url"
"testing"
)
func TestClient_OperationWithDefaults_awsAwsjson10Serialize(t *testing.T) {
cases := map[string]struct {
Params *OperationWithDefaultsInput
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
}{
// Client populates default values in input.
"AwsJson10ClientPopulatesDefaultValuesInInput": {
Params: &OperationWithDefaultsInput{
Defaults: &types.Defaults{},
},
ExpectMethod: "POST",
ExpectURIPath: "/",
ExpectQuery: []smithytesting.QueryItem{},
ExpectHeader: http.Header{
"Content-Type": []string{"application/x-amz-json-1.0"},
},
BodyMediaType: "application/json",
BodyAssert: func(actual io.Reader) error {
return smithytesting.CompareJSONReaderBytes(actual, []byte(`{
"defaults": {
"defaultString": "hi",
"defaultBoolean": true,
"defaultList": [],
"defaultDocumentMap": {},
"defaultDocumentString": "hi",
"defaultDocumentBoolean": true,
"defaultDocumentList": [],
"defaultTimestamp": 0,
"defaultBlob": "YWJj",
"defaultByte": 1,
"defaultShort": 1,
"defaultInteger": 10,
"defaultLong": 100,
"defaultFloat": 1.0,
"defaultDouble": 1.0,
"defaultMap": {},
"defaultEnum": "FOO",
"defaultIntEnum": 1
}
}`))
},
},
// Client skips top level default values in input.
"AwsJson10ClientSkipsTopLevelDefaultValuesInInput": {
Params: &OperationWithDefaultsInput{},
ExpectMethod: "POST",
ExpectURIPath: "/",
ExpectQuery: []smithytesting.QueryItem{},
ExpectHeader: http.Header{
"Content-Type": []string{"application/x-amz-json-1.0"},
},
BodyMediaType: "application/json",
BodyAssert: func(actual io.Reader) error {
return smithytesting.CompareJSONReaderBytes(actual, []byte(`{
}`))
},
},
// Client uses explicitly provided member values over defaults
"AwsJson10ClientUsesExplicitlyProvidedMemberValuesOverDefaults": {
Params: &OperationWithDefaultsInput{
Defaults: &types.Defaults{
DefaultString: ptr.String("bye"),
DefaultBoolean: ptr.Bool(true),
DefaultList: []string{
"a",
},
DefaultDocumentMap: document.NewLazyDocument(map[string]interface{}{
"name": "Jack",
}),
DefaultDocumentString: document.NewLazyDocument("bye"),
DefaultDocumentBoolean: document.NewLazyDocument(true),
DefaultDocumentList: document.NewLazyDocument([]interface{}{
"b",
}),
DefaultNullDocument: document.NewLazyDocument("notNull"),
DefaultTimestamp: ptr.Time(smithytime.ParseEpochSeconds(1)),
DefaultBlob: []byte("hi"),
DefaultByte: ptr.Int8(2),
DefaultShort: ptr.Int16(2),
DefaultInteger: ptr.Int32(20),
DefaultLong: ptr.Int64(200),
DefaultFloat: ptr.Float32(2.0),
DefaultDouble: ptr.Float64(2.0),
DefaultMap: map[string]string{
"name": "Jack",
},
DefaultEnum: types.TestEnum("BAR"),
DefaultIntEnum: 2,
},
},
ExpectMethod: "POST",
ExpectURIPath: "/",
ExpectQuery: []smithytesting.QueryItem{},
ExpectHeader: http.Header{
"Content-Type": []string{"application/x-amz-json-1.0"},
},
BodyMediaType: "application/json",
BodyAssert: func(actual io.Reader) error {
return smithytesting.CompareJSONReaderBytes(actual, []byte(`{
"defaults": {
"defaultString": "bye",
"defaultBoolean": true,
"defaultList": ["a"],
"defaultDocumentMap": {"name": "Jack"},
"defaultDocumentString": "bye",
"defaultDocumentBoolean": true,
"defaultDocumentList": ["b"],
"defaultNullDocument": "notNull",
"defaultTimestamp": 1,
"defaultBlob": "aGk=",
"defaultByte": 2,
"defaultShort": 2,
"defaultInteger": 20,
"defaultLong": 200,
"defaultFloat": 2.0,
"defaultDouble": 2.0,
"defaultMap": {"name": "Jack"},
"defaultEnum": "BAR",
"defaultIntEnum": 2
}
}`))
},
},
}
for name, c := range cases {
t.Run(name, func(t *testing.T) {
if name == "AwsJson10ClientPopulatesDefaultValuesInInput" {
t.Skip("disabled test aws.protocoltests.json10#JsonRpc10 aws.protocoltests.json10#OperationWithDefaults")
}
if name == "AwsJson10ClientSkipsTopLevelDefaultValuesInInput" {
t.Skip("disabled test aws.protocoltests.json10#JsonRpc10 aws.protocoltests.json10#OperationWithDefaults")
}
if name == "AwsJson10ClientUsesExplicitlyProvidedMemberValuesOverDefaults" {
t.Skip("disabled test aws.protocoltests.json10#JsonRpc10 aws.protocoltests.json10#OperationWithDefaults")
}
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(),
Region: "us-west-2",
})
result, err := client.OperationWithDefaults(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)
}
}
})
}
}
func TestClient_OperationWithDefaults_awsAwsjson10Deserialize(t *testing.T) {
cases := map[string]struct {
StatusCode int
Header http.Header
BodyMediaType string
Body []byte
ExpectResult *OperationWithDefaultsOutput
}{
// Client populates default values when missing in response.
"AwsJson10ClientPopulatesDefaultsValuesWhenMissingInResponse": {
StatusCode: 200,
Header: http.Header{
"Content-Type": []string{"application/x-amz-json-1.0"},
},
BodyMediaType: "application/json",
Body: []byte(`{}`),
ExpectResult: &OperationWithDefaultsOutput{
DefaultString: ptr.String("hi"),
DefaultBoolean: ptr.Bool(true),
DefaultList: []string{},
DefaultDocumentMap: document.NewLazyDocument(map[string]interface{}{}),
DefaultDocumentString: document.NewLazyDocument("hi"),
DefaultDocumentBoolean: document.NewLazyDocument(true),
DefaultDocumentList: document.NewLazyDocument([]interface{}{}),
DefaultTimestamp: ptr.Time(smithytime.ParseEpochSeconds(0)),
DefaultBlob: []byte("abc"),
DefaultByte: ptr.Int8(1),
DefaultShort: ptr.Int16(1),
DefaultInteger: ptr.Int32(10),
DefaultLong: ptr.Int64(100),
DefaultFloat: ptr.Float32(1.0),
DefaultDouble: ptr.Float64(1.0),
DefaultMap: map[string]string{},
DefaultEnum: types.TestEnum("FOO"),
DefaultIntEnum: 1,
},
},
// Client ignores default values if member values are present in the response.
"AwsJson10ClientIgnoresDefaultValuesIfMemberValuesArePresentInResponse": {
StatusCode: 200,
Header: http.Header{
"Content-Type": []string{"application/x-amz-json-1.0"},
},
BodyMediaType: "application/json",
Body: []byte(`{
"defaultString": "bye",
"defaultBoolean": false,
"defaultList": ["a"],
"defaultDocumentMap": {"name": "Jack"},
"defaultDocumentString": "bye",
"defaultDocumentBoolean": false,
"defaultDocumentList": ["b"],
"defaultNullDocument": "notNull",
"defaultTimestamp": 2,
"defaultBlob": "aGk=",
"defaultByte": 2,
"defaultShort": 2,
"defaultInteger": 20,
"defaultLong": 200,
"defaultFloat": 2.0,
"defaultDouble": 2.0,
"defaultMap": {"name": "Jack"},
"defaultEnum": "BAR",
"defaultIntEnum": 2
}`),
ExpectResult: &OperationWithDefaultsOutput{
DefaultString: ptr.String("bye"),
DefaultBoolean: ptr.Bool(false),
DefaultList: []string{
"a",
},
DefaultDocumentMap: document.NewLazyDocument(map[string]interface{}{
"name": "Jack",
}),
DefaultDocumentString: document.NewLazyDocument("bye"),
DefaultDocumentBoolean: document.NewLazyDocument(false),
DefaultDocumentList: document.NewLazyDocument([]interface{}{
"b",
}),
DefaultNullDocument: document.NewLazyDocument("notNull"),
DefaultTimestamp: ptr.Time(smithytime.ParseEpochSeconds(2)),
DefaultBlob: []byte("hi"),
DefaultByte: ptr.Int8(2),
DefaultShort: ptr.Int16(2),
DefaultInteger: ptr.Int32(20),
DefaultLong: ptr.Int64(200),
DefaultFloat: ptr.Float32(2.0),
DefaultDouble: ptr.Float64(2.0),
DefaultMap: map[string]string{
"name": "Jack",
},
DefaultEnum: types.TestEnum("BAR"),
DefaultIntEnum: 2,
},
},
}
for name, c := range cases {
t.Run(name, func(t *testing.T) {
if name == "AwsJson10ClientPopulatesDefaultsValuesWhenMissingInResponse" {
t.Skip("disabled test aws.protocoltests.json10#JsonRpc10 aws.protocoltests.json10#OperationWithDefaults")
}
if name == "AwsJson10ClientIgnoresDefaultValuesIfMemberValuesArePresentInResponse" {
t.Skip("disabled test aws.protocoltests.json10#JsonRpc10 aws.protocoltests.json10#OperationWithDefaults")
}
serverURL := "http://localhost:8888/"
client := New(Options{
HTTPClient: smithyhttp.ClientDoFunc(func(r *http.Request) (*http.Response, error) {
headers := http.Header{}
for k, vs := range c.Header {
for _, v := range vs {
headers.Add(k, v)
}
}
if len(c.BodyMediaType) != 0 && len(headers.Values("Content-Type")) == 0 {
headers.Set("Content-Type", c.BodyMediaType)
}
response := &http.Response{
StatusCode: c.StatusCode,
Header: headers,
Request: r,
}
if len(c.Body) != 0 {
response.ContentLength = int64(len(c.Body))
response.Body = ioutil.NopCloser(bytes.NewReader(c.Body))
} else {
response.Body = http.NoBody
}
return response, nil
}),
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
}),
Region: "us-west-2",
})
var params OperationWithDefaultsInput
result, err := client.OperationWithDefaults(context.Background(), ¶ms)
if err != nil {
t.Fatalf("expect nil err, got %v", err)
}
if result == nil {
t.Fatalf("expect not nil result")
}
opts := cmp.Options{
cmpopts.IgnoreUnexported(
middleware.Metadata{},
),
cmp.FilterValues(func(x, y float64) bool {
return math.IsNaN(x) && math.IsNaN(y)
}, cmp.Comparer(func(_, _ interface{}) bool { return true })),
cmp.FilterValues(func(x, y float32) bool {
return math.IsNaN(float64(x)) && math.IsNaN(float64(y))
}, cmp.Comparer(func(_, _ interface{}) bool { return true })),
cmpopts.IgnoreTypes(smithydocument.NoSerde{}),
}
if err := smithytesting.CompareValues(c.ExpectResult, result, opts...); err != nil {
t.Errorf("expect c.ExpectResult value match:\n%v", err)
}
})
}
}
|