|
|
@@ -0,0 +1,1482 @@
|
|
|
+package query_test
|
|
|
+
|
|
|
+import (
|
|
|
+ "bytes"
|
|
|
+ "encoding/json"
|
|
|
+ "encoding/xml"
|
|
|
+ "io"
|
|
|
+ "io/ioutil"
|
|
|
+ "net/http"
|
|
|
+ "net/url"
|
|
|
+ "testing"
|
|
|
+ "time"
|
|
|
+
|
|
|
+ "github.com/aws/aws-sdk-go/aws"
|
|
|
+ "github.com/aws/aws-sdk-go/internal/protocol/query"
|
|
|
+ "github.com/aws/aws-sdk-go/internal/protocol/xml/xmlutil"
|
|
|
+ "github.com/aws/aws-sdk-go/internal/signer/v4"
|
|
|
+ "github.com/aws/aws-sdk-go/internal/util"
|
|
|
+ "github.com/stretchr/testify/assert"
|
|
|
+)
|
|
|
+
|
|
|
+var _ bytes.Buffer // always import bytes
|
|
|
+var _ http.Request
|
|
|
+var _ json.Marshaler
|
|
|
+var _ time.Time
|
|
|
+var _ xmlutil.XMLNode
|
|
|
+var _ xml.Attr
|
|
|
+var _ = ioutil.Discard
|
|
|
+var _ = util.Trim("")
|
|
|
+var _ = url.Values{}
|
|
|
+var _ = io.EOF
|
|
|
+
|
|
|
+type InputService1ProtocolTest struct {
|
|
|
+ *aws.Service
|
|
|
+}
|
|
|
+
|
|
|
+// New returns a new InputService1ProtocolTest client.
|
|
|
+func NewInputService1ProtocolTest(config *aws.Config) *InputService1ProtocolTest {
|
|
|
+ service := &aws.Service{
|
|
|
+ Config: aws.DefaultConfig.Merge(config),
|
|
|
+ ServiceName: "inputservice1protocoltest",
|
|
|
+ APIVersion: "2014-01-01",
|
|
|
+ }
|
|
|
+ service.Initialize()
|
|
|
+
|
|
|
+ // Handlers
|
|
|
+ service.Handlers.Sign.PushBack(v4.Sign)
|
|
|
+ service.Handlers.Build.PushBack(query.Build)
|
|
|
+ service.Handlers.Unmarshal.PushBack(query.Unmarshal)
|
|
|
+ service.Handlers.UnmarshalMeta.PushBack(query.UnmarshalMeta)
|
|
|
+ service.Handlers.UnmarshalError.PushBack(query.UnmarshalError)
|
|
|
+
|
|
|
+ return &InputService1ProtocolTest{service}
|
|
|
+}
|
|
|
+
|
|
|
+// newRequest creates a new request for a InputService1ProtocolTest operation and runs any
|
|
|
+// custom request initialization.
|
|
|
+func (c *InputService1ProtocolTest) newRequest(op *aws.Operation, params, data interface{}) *aws.Request {
|
|
|
+ req := aws.NewRequest(c.Service, op, params, data)
|
|
|
+
|
|
|
+ return req
|
|
|
+}
|
|
|
+
|
|
|
+const opInputService1TestCaseOperation1 = "OperationName"
|
|
|
+
|
|
|
+// InputService1TestCaseOperation1Request generates a request for the InputService1TestCaseOperation1 operation.
|
|
|
+func (c *InputService1ProtocolTest) InputService1TestCaseOperation1Request(input *InputService1TestShapeInputShape) (req *aws.Request, output *InputService1TestShapeInputService1TestCaseOperation1Output) {
|
|
|
+ op := &aws.Operation{
|
|
|
+ Name: opInputService1TestCaseOperation1,
|
|
|
+ }
|
|
|
+
|
|
|
+ if input == nil {
|
|
|
+ input = &InputService1TestShapeInputShape{}
|
|
|
+ }
|
|
|
+
|
|
|
+ req = c.newRequest(op, input, output)
|
|
|
+ output = &InputService1TestShapeInputService1TestCaseOperation1Output{}
|
|
|
+ req.Data = output
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func (c *InputService1ProtocolTest) InputService1TestCaseOperation1(input *InputService1TestShapeInputShape) (*InputService1TestShapeInputService1TestCaseOperation1Output, error) {
|
|
|
+ req, out := c.InputService1TestCaseOperation1Request(input)
|
|
|
+ err := req.Send()
|
|
|
+ return out, err
|
|
|
+}
|
|
|
+
|
|
|
+type InputService1TestShapeInputService1TestCaseOperation1Output struct {
|
|
|
+ metadataInputService1TestShapeInputService1TestCaseOperation1Output `json:"-" xml:"-"`
|
|
|
+}
|
|
|
+
|
|
|
+type metadataInputService1TestShapeInputService1TestCaseOperation1Output struct {
|
|
|
+ SDKShapeTraits bool `type:"structure"`
|
|
|
+}
|
|
|
+
|
|
|
+type InputService1TestShapeInputShape struct {
|
|
|
+ Bar *string `type:"string"`
|
|
|
+
|
|
|
+ Foo *string `type:"string"`
|
|
|
+
|
|
|
+ metadataInputService1TestShapeInputShape `json:"-" xml:"-"`
|
|
|
+}
|
|
|
+
|
|
|
+type metadataInputService1TestShapeInputShape struct {
|
|
|
+ SDKShapeTraits bool `type:"structure"`
|
|
|
+}
|
|
|
+
|
|
|
+type InputService2ProtocolTest struct {
|
|
|
+ *aws.Service
|
|
|
+}
|
|
|
+
|
|
|
+// New returns a new InputService2ProtocolTest client.
|
|
|
+func NewInputService2ProtocolTest(config *aws.Config) *InputService2ProtocolTest {
|
|
|
+ service := &aws.Service{
|
|
|
+ Config: aws.DefaultConfig.Merge(config),
|
|
|
+ ServiceName: "inputservice2protocoltest",
|
|
|
+ APIVersion: "2014-01-01",
|
|
|
+ }
|
|
|
+ service.Initialize()
|
|
|
+
|
|
|
+ // Handlers
|
|
|
+ service.Handlers.Sign.PushBack(v4.Sign)
|
|
|
+ service.Handlers.Build.PushBack(query.Build)
|
|
|
+ service.Handlers.Unmarshal.PushBack(query.Unmarshal)
|
|
|
+ service.Handlers.UnmarshalMeta.PushBack(query.UnmarshalMeta)
|
|
|
+ service.Handlers.UnmarshalError.PushBack(query.UnmarshalError)
|
|
|
+
|
|
|
+ return &InputService2ProtocolTest{service}
|
|
|
+}
|
|
|
+
|
|
|
+// newRequest creates a new request for a InputService2ProtocolTest operation and runs any
|
|
|
+// custom request initialization.
|
|
|
+func (c *InputService2ProtocolTest) newRequest(op *aws.Operation, params, data interface{}) *aws.Request {
|
|
|
+ req := aws.NewRequest(c.Service, op, params, data)
|
|
|
+
|
|
|
+ return req
|
|
|
+}
|
|
|
+
|
|
|
+const opInputService2TestCaseOperation1 = "OperationName"
|
|
|
+
|
|
|
+// InputService2TestCaseOperation1Request generates a request for the InputService2TestCaseOperation1 operation.
|
|
|
+func (c *InputService2ProtocolTest) InputService2TestCaseOperation1Request(input *InputService2TestShapeInputShape) (req *aws.Request, output *InputService2TestShapeInputService2TestCaseOperation1Output) {
|
|
|
+ op := &aws.Operation{
|
|
|
+ Name: opInputService2TestCaseOperation1,
|
|
|
+ }
|
|
|
+
|
|
|
+ if input == nil {
|
|
|
+ input = &InputService2TestShapeInputShape{}
|
|
|
+ }
|
|
|
+
|
|
|
+ req = c.newRequest(op, input, output)
|
|
|
+ output = &InputService2TestShapeInputService2TestCaseOperation1Output{}
|
|
|
+ req.Data = output
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func (c *InputService2ProtocolTest) InputService2TestCaseOperation1(input *InputService2TestShapeInputShape) (*InputService2TestShapeInputService2TestCaseOperation1Output, error) {
|
|
|
+ req, out := c.InputService2TestCaseOperation1Request(input)
|
|
|
+ err := req.Send()
|
|
|
+ return out, err
|
|
|
+}
|
|
|
+
|
|
|
+type InputService2TestShapeInputService2TestCaseOperation1Output struct {
|
|
|
+ metadataInputService2TestShapeInputService2TestCaseOperation1Output `json:"-" xml:"-"`
|
|
|
+}
|
|
|
+
|
|
|
+type metadataInputService2TestShapeInputService2TestCaseOperation1Output struct {
|
|
|
+ SDKShapeTraits bool `type:"structure"`
|
|
|
+}
|
|
|
+
|
|
|
+type InputService2TestShapeInputShape struct {
|
|
|
+ StructArg *InputService2TestShapeStructType `type:"structure"`
|
|
|
+
|
|
|
+ metadataInputService2TestShapeInputShape `json:"-" xml:"-"`
|
|
|
+}
|
|
|
+
|
|
|
+type metadataInputService2TestShapeInputShape struct {
|
|
|
+ SDKShapeTraits bool `type:"structure"`
|
|
|
+}
|
|
|
+
|
|
|
+type InputService2TestShapeStructType struct {
|
|
|
+ ScalarArg *string `type:"string"`
|
|
|
+
|
|
|
+ metadataInputService2TestShapeStructType `json:"-" xml:"-"`
|
|
|
+}
|
|
|
+
|
|
|
+type metadataInputService2TestShapeStructType struct {
|
|
|
+ SDKShapeTraits bool `type:"structure"`
|
|
|
+}
|
|
|
+
|
|
|
+type InputService3ProtocolTest struct {
|
|
|
+ *aws.Service
|
|
|
+}
|
|
|
+
|
|
|
+// New returns a new InputService3ProtocolTest client.
|
|
|
+func NewInputService3ProtocolTest(config *aws.Config) *InputService3ProtocolTest {
|
|
|
+ service := &aws.Service{
|
|
|
+ Config: aws.DefaultConfig.Merge(config),
|
|
|
+ ServiceName: "inputservice3protocoltest",
|
|
|
+ APIVersion: "2014-01-01",
|
|
|
+ }
|
|
|
+ service.Initialize()
|
|
|
+
|
|
|
+ // Handlers
|
|
|
+ service.Handlers.Sign.PushBack(v4.Sign)
|
|
|
+ service.Handlers.Build.PushBack(query.Build)
|
|
|
+ service.Handlers.Unmarshal.PushBack(query.Unmarshal)
|
|
|
+ service.Handlers.UnmarshalMeta.PushBack(query.UnmarshalMeta)
|
|
|
+ service.Handlers.UnmarshalError.PushBack(query.UnmarshalError)
|
|
|
+
|
|
|
+ return &InputService3ProtocolTest{service}
|
|
|
+}
|
|
|
+
|
|
|
+// newRequest creates a new request for a InputService3ProtocolTest operation and runs any
|
|
|
+// custom request initialization.
|
|
|
+func (c *InputService3ProtocolTest) newRequest(op *aws.Operation, params, data interface{}) *aws.Request {
|
|
|
+ req := aws.NewRequest(c.Service, op, params, data)
|
|
|
+
|
|
|
+ return req
|
|
|
+}
|
|
|
+
|
|
|
+const opInputService3TestCaseOperation1 = "OperationName"
|
|
|
+
|
|
|
+// InputService3TestCaseOperation1Request generates a request for the InputService3TestCaseOperation1 operation.
|
|
|
+func (c *InputService3ProtocolTest) InputService3TestCaseOperation1Request(input *InputService3TestShapeInputShape) (req *aws.Request, output *InputService3TestShapeInputService3TestCaseOperation1Output) {
|
|
|
+ op := &aws.Operation{
|
|
|
+ Name: opInputService3TestCaseOperation1,
|
|
|
+ }
|
|
|
+
|
|
|
+ if input == nil {
|
|
|
+ input = &InputService3TestShapeInputShape{}
|
|
|
+ }
|
|
|
+
|
|
|
+ req = c.newRequest(op, input, output)
|
|
|
+ output = &InputService3TestShapeInputService3TestCaseOperation1Output{}
|
|
|
+ req.Data = output
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func (c *InputService3ProtocolTest) InputService3TestCaseOperation1(input *InputService3TestShapeInputShape) (*InputService3TestShapeInputService3TestCaseOperation1Output, error) {
|
|
|
+ req, out := c.InputService3TestCaseOperation1Request(input)
|
|
|
+ err := req.Send()
|
|
|
+ return out, err
|
|
|
+}
|
|
|
+
|
|
|
+const opInputService3TestCaseOperation2 = "OperationName"
|
|
|
+
|
|
|
+// InputService3TestCaseOperation2Request generates a request for the InputService3TestCaseOperation2 operation.
|
|
|
+func (c *InputService3ProtocolTest) InputService3TestCaseOperation2Request(input *InputService3TestShapeInputShape) (req *aws.Request, output *InputService3TestShapeInputService3TestCaseOperation2Output) {
|
|
|
+ op := &aws.Operation{
|
|
|
+ Name: opInputService3TestCaseOperation2,
|
|
|
+ }
|
|
|
+
|
|
|
+ if input == nil {
|
|
|
+ input = &InputService3TestShapeInputShape{}
|
|
|
+ }
|
|
|
+
|
|
|
+ req = c.newRequest(op, input, output)
|
|
|
+ output = &InputService3TestShapeInputService3TestCaseOperation2Output{}
|
|
|
+ req.Data = output
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func (c *InputService3ProtocolTest) InputService3TestCaseOperation2(input *InputService3TestShapeInputShape) (*InputService3TestShapeInputService3TestCaseOperation2Output, error) {
|
|
|
+ req, out := c.InputService3TestCaseOperation2Request(input)
|
|
|
+ err := req.Send()
|
|
|
+ return out, err
|
|
|
+}
|
|
|
+
|
|
|
+type InputService3TestShapeInputService3TestCaseOperation1Output struct {
|
|
|
+ metadataInputService3TestShapeInputService3TestCaseOperation1Output `json:"-" xml:"-"`
|
|
|
+}
|
|
|
+
|
|
|
+type metadataInputService3TestShapeInputService3TestCaseOperation1Output struct {
|
|
|
+ SDKShapeTraits bool `type:"structure"`
|
|
|
+}
|
|
|
+
|
|
|
+type InputService3TestShapeInputService3TestCaseOperation2Output struct {
|
|
|
+ metadataInputService3TestShapeInputService3TestCaseOperation2Output `json:"-" xml:"-"`
|
|
|
+}
|
|
|
+
|
|
|
+type metadataInputService3TestShapeInputService3TestCaseOperation2Output struct {
|
|
|
+ SDKShapeTraits bool `type:"structure"`
|
|
|
+}
|
|
|
+
|
|
|
+type InputService3TestShapeInputShape struct {
|
|
|
+ ListArg []*string `type:"list"`
|
|
|
+
|
|
|
+ metadataInputService3TestShapeInputShape `json:"-" xml:"-"`
|
|
|
+}
|
|
|
+
|
|
|
+type metadataInputService3TestShapeInputShape struct {
|
|
|
+ SDKShapeTraits bool `type:"structure"`
|
|
|
+}
|
|
|
+
|
|
|
+type InputService4ProtocolTest struct {
|
|
|
+ *aws.Service
|
|
|
+}
|
|
|
+
|
|
|
+// New returns a new InputService4ProtocolTest client.
|
|
|
+func NewInputService4ProtocolTest(config *aws.Config) *InputService4ProtocolTest {
|
|
|
+ service := &aws.Service{
|
|
|
+ Config: aws.DefaultConfig.Merge(config),
|
|
|
+ ServiceName: "inputservice4protocoltest",
|
|
|
+ APIVersion: "2014-01-01",
|
|
|
+ }
|
|
|
+ service.Initialize()
|
|
|
+
|
|
|
+ // Handlers
|
|
|
+ service.Handlers.Sign.PushBack(v4.Sign)
|
|
|
+ service.Handlers.Build.PushBack(query.Build)
|
|
|
+ service.Handlers.Unmarshal.PushBack(query.Unmarshal)
|
|
|
+ service.Handlers.UnmarshalMeta.PushBack(query.UnmarshalMeta)
|
|
|
+ service.Handlers.UnmarshalError.PushBack(query.UnmarshalError)
|
|
|
+
|
|
|
+ return &InputService4ProtocolTest{service}
|
|
|
+}
|
|
|
+
|
|
|
+// newRequest creates a new request for a InputService4ProtocolTest operation and runs any
|
|
|
+// custom request initialization.
|
|
|
+func (c *InputService4ProtocolTest) newRequest(op *aws.Operation, params, data interface{}) *aws.Request {
|
|
|
+ req := aws.NewRequest(c.Service, op, params, data)
|
|
|
+
|
|
|
+ return req
|
|
|
+}
|
|
|
+
|
|
|
+const opInputService4TestCaseOperation1 = "OperationName"
|
|
|
+
|
|
|
+// InputService4TestCaseOperation1Request generates a request for the InputService4TestCaseOperation1 operation.
|
|
|
+func (c *InputService4ProtocolTest) InputService4TestCaseOperation1Request(input *InputService4TestShapeInputShape) (req *aws.Request, output *InputService4TestShapeInputService4TestCaseOperation1Output) {
|
|
|
+ op := &aws.Operation{
|
|
|
+ Name: opInputService4TestCaseOperation1,
|
|
|
+ }
|
|
|
+
|
|
|
+ if input == nil {
|
|
|
+ input = &InputService4TestShapeInputShape{}
|
|
|
+ }
|
|
|
+
|
|
|
+ req = c.newRequest(op, input, output)
|
|
|
+ output = &InputService4TestShapeInputService4TestCaseOperation1Output{}
|
|
|
+ req.Data = output
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func (c *InputService4ProtocolTest) InputService4TestCaseOperation1(input *InputService4TestShapeInputShape) (*InputService4TestShapeInputService4TestCaseOperation1Output, error) {
|
|
|
+ req, out := c.InputService4TestCaseOperation1Request(input)
|
|
|
+ err := req.Send()
|
|
|
+ return out, err
|
|
|
+}
|
|
|
+
|
|
|
+const opInputService4TestCaseOperation2 = "OperationName"
|
|
|
+
|
|
|
+// InputService4TestCaseOperation2Request generates a request for the InputService4TestCaseOperation2 operation.
|
|
|
+func (c *InputService4ProtocolTest) InputService4TestCaseOperation2Request(input *InputService4TestShapeInputShape) (req *aws.Request, output *InputService4TestShapeInputService4TestCaseOperation2Output) {
|
|
|
+ op := &aws.Operation{
|
|
|
+ Name: opInputService4TestCaseOperation2,
|
|
|
+ }
|
|
|
+
|
|
|
+ if input == nil {
|
|
|
+ input = &InputService4TestShapeInputShape{}
|
|
|
+ }
|
|
|
+
|
|
|
+ req = c.newRequest(op, input, output)
|
|
|
+ output = &InputService4TestShapeInputService4TestCaseOperation2Output{}
|
|
|
+ req.Data = output
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func (c *InputService4ProtocolTest) InputService4TestCaseOperation2(input *InputService4TestShapeInputShape) (*InputService4TestShapeInputService4TestCaseOperation2Output, error) {
|
|
|
+ req, out := c.InputService4TestCaseOperation2Request(input)
|
|
|
+ err := req.Send()
|
|
|
+ return out, err
|
|
|
+}
|
|
|
+
|
|
|
+type InputService4TestShapeInputService4TestCaseOperation1Output struct {
|
|
|
+ metadataInputService4TestShapeInputService4TestCaseOperation1Output `json:"-" xml:"-"`
|
|
|
+}
|
|
|
+
|
|
|
+type metadataInputService4TestShapeInputService4TestCaseOperation1Output struct {
|
|
|
+ SDKShapeTraits bool `type:"structure"`
|
|
|
+}
|
|
|
+
|
|
|
+type InputService4TestShapeInputService4TestCaseOperation2Output struct {
|
|
|
+ metadataInputService4TestShapeInputService4TestCaseOperation2Output `json:"-" xml:"-"`
|
|
|
+}
|
|
|
+
|
|
|
+type metadataInputService4TestShapeInputService4TestCaseOperation2Output struct {
|
|
|
+ SDKShapeTraits bool `type:"structure"`
|
|
|
+}
|
|
|
+
|
|
|
+type InputService4TestShapeInputShape struct {
|
|
|
+ ListArg []*string `type:"list" flattened:"true"`
|
|
|
+
|
|
|
+ ScalarArg *string `type:"string"`
|
|
|
+
|
|
|
+ metadataInputService4TestShapeInputShape `json:"-" xml:"-"`
|
|
|
+}
|
|
|
+
|
|
|
+type metadataInputService4TestShapeInputShape struct {
|
|
|
+ SDKShapeTraits bool `type:"structure"`
|
|
|
+}
|
|
|
+
|
|
|
+type InputService5ProtocolTest struct {
|
|
|
+ *aws.Service
|
|
|
+}
|
|
|
+
|
|
|
+// New returns a new InputService5ProtocolTest client.
|
|
|
+func NewInputService5ProtocolTest(config *aws.Config) *InputService5ProtocolTest {
|
|
|
+ service := &aws.Service{
|
|
|
+ Config: aws.DefaultConfig.Merge(config),
|
|
|
+ ServiceName: "inputservice5protocoltest",
|
|
|
+ APIVersion: "2014-01-01",
|
|
|
+ }
|
|
|
+ service.Initialize()
|
|
|
+
|
|
|
+ // Handlers
|
|
|
+ service.Handlers.Sign.PushBack(v4.Sign)
|
|
|
+ service.Handlers.Build.PushBack(query.Build)
|
|
|
+ service.Handlers.Unmarshal.PushBack(query.Unmarshal)
|
|
|
+ service.Handlers.UnmarshalMeta.PushBack(query.UnmarshalMeta)
|
|
|
+ service.Handlers.UnmarshalError.PushBack(query.UnmarshalError)
|
|
|
+
|
|
|
+ return &InputService5ProtocolTest{service}
|
|
|
+}
|
|
|
+
|
|
|
+// newRequest creates a new request for a InputService5ProtocolTest operation and runs any
|
|
|
+// custom request initialization.
|
|
|
+func (c *InputService5ProtocolTest) newRequest(op *aws.Operation, params, data interface{}) *aws.Request {
|
|
|
+ req := aws.NewRequest(c.Service, op, params, data)
|
|
|
+
|
|
|
+ return req
|
|
|
+}
|
|
|
+
|
|
|
+const opInputService5TestCaseOperation1 = "OperationName"
|
|
|
+
|
|
|
+// InputService5TestCaseOperation1Request generates a request for the InputService5TestCaseOperation1 operation.
|
|
|
+func (c *InputService5ProtocolTest) InputService5TestCaseOperation1Request(input *InputService5TestShapeInputShape) (req *aws.Request, output *InputService5TestShapeInputService5TestCaseOperation1Output) {
|
|
|
+ op := &aws.Operation{
|
|
|
+ Name: opInputService5TestCaseOperation1,
|
|
|
+ }
|
|
|
+
|
|
|
+ if input == nil {
|
|
|
+ input = &InputService5TestShapeInputShape{}
|
|
|
+ }
|
|
|
+
|
|
|
+ req = c.newRequest(op, input, output)
|
|
|
+ output = &InputService5TestShapeInputService5TestCaseOperation1Output{}
|
|
|
+ req.Data = output
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func (c *InputService5ProtocolTest) InputService5TestCaseOperation1(input *InputService5TestShapeInputShape) (*InputService5TestShapeInputService5TestCaseOperation1Output, error) {
|
|
|
+ req, out := c.InputService5TestCaseOperation1Request(input)
|
|
|
+ err := req.Send()
|
|
|
+ return out, err
|
|
|
+}
|
|
|
+
|
|
|
+const opInputService5TestCaseOperation2 = "OperationName"
|
|
|
+
|
|
|
+// InputService5TestCaseOperation2Request generates a request for the InputService5TestCaseOperation2 operation.
|
|
|
+func (c *InputService5ProtocolTest) InputService5TestCaseOperation2Request(input *InputService5TestShapeInputShape) (req *aws.Request, output *InputService5TestShapeInputService5TestCaseOperation2Output) {
|
|
|
+ op := &aws.Operation{
|
|
|
+ Name: opInputService5TestCaseOperation2,
|
|
|
+ }
|
|
|
+
|
|
|
+ if input == nil {
|
|
|
+ input = &InputService5TestShapeInputShape{}
|
|
|
+ }
|
|
|
+
|
|
|
+ req = c.newRequest(op, input, output)
|
|
|
+ output = &InputService5TestShapeInputService5TestCaseOperation2Output{}
|
|
|
+ req.Data = output
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func (c *InputService5ProtocolTest) InputService5TestCaseOperation2(input *InputService5TestShapeInputShape) (*InputService5TestShapeInputService5TestCaseOperation2Output, error) {
|
|
|
+ req, out := c.InputService5TestCaseOperation2Request(input)
|
|
|
+ err := req.Send()
|
|
|
+ return out, err
|
|
|
+}
|
|
|
+
|
|
|
+type InputService5TestShapeInputService5TestCaseOperation1Output struct {
|
|
|
+ metadataInputService5TestShapeInputService5TestCaseOperation1Output `json:"-" xml:"-"`
|
|
|
+}
|
|
|
+
|
|
|
+type metadataInputService5TestShapeInputService5TestCaseOperation1Output struct {
|
|
|
+ SDKShapeTraits bool `type:"structure"`
|
|
|
+}
|
|
|
+
|
|
|
+type InputService5TestShapeInputService5TestCaseOperation2Output struct {
|
|
|
+ metadataInputService5TestShapeInputService5TestCaseOperation2Output `json:"-" xml:"-"`
|
|
|
+}
|
|
|
+
|
|
|
+type metadataInputService5TestShapeInputService5TestCaseOperation2Output struct {
|
|
|
+ SDKShapeTraits bool `type:"structure"`
|
|
|
+}
|
|
|
+
|
|
|
+type InputService5TestShapeInputShape struct {
|
|
|
+ MapArg map[string]*string `type:"map"`
|
|
|
+
|
|
|
+ metadataInputService5TestShapeInputShape `json:"-" xml:"-"`
|
|
|
+}
|
|
|
+
|
|
|
+type metadataInputService5TestShapeInputShape struct {
|
|
|
+ SDKShapeTraits bool `type:"structure"`
|
|
|
+}
|
|
|
+
|
|
|
+type InputService6ProtocolTest struct {
|
|
|
+ *aws.Service
|
|
|
+}
|
|
|
+
|
|
|
+// New returns a new InputService6ProtocolTest client.
|
|
|
+func NewInputService6ProtocolTest(config *aws.Config) *InputService6ProtocolTest {
|
|
|
+ service := &aws.Service{
|
|
|
+ Config: aws.DefaultConfig.Merge(config),
|
|
|
+ ServiceName: "inputservice6protocoltest",
|
|
|
+ APIVersion: "2014-01-01",
|
|
|
+ }
|
|
|
+ service.Initialize()
|
|
|
+
|
|
|
+ // Handlers
|
|
|
+ service.Handlers.Sign.PushBack(v4.Sign)
|
|
|
+ service.Handlers.Build.PushBack(query.Build)
|
|
|
+ service.Handlers.Unmarshal.PushBack(query.Unmarshal)
|
|
|
+ service.Handlers.UnmarshalMeta.PushBack(query.UnmarshalMeta)
|
|
|
+ service.Handlers.UnmarshalError.PushBack(query.UnmarshalError)
|
|
|
+
|
|
|
+ return &InputService6ProtocolTest{service}
|
|
|
+}
|
|
|
+
|
|
|
+// newRequest creates a new request for a InputService6ProtocolTest operation and runs any
|
|
|
+// custom request initialization.
|
|
|
+func (c *InputService6ProtocolTest) newRequest(op *aws.Operation, params, data interface{}) *aws.Request {
|
|
|
+ req := aws.NewRequest(c.Service, op, params, data)
|
|
|
+
|
|
|
+ return req
|
|
|
+}
|
|
|
+
|
|
|
+const opInputService6TestCaseOperation1 = "OperationName"
|
|
|
+
|
|
|
+// InputService6TestCaseOperation1Request generates a request for the InputService6TestCaseOperation1 operation.
|
|
|
+func (c *InputService6ProtocolTest) InputService6TestCaseOperation1Request(input *InputService6TestShapeInputShape) (req *aws.Request, output *InputService6TestShapeInputService6TestCaseOperation1Output) {
|
|
|
+ op := &aws.Operation{
|
|
|
+ Name: opInputService6TestCaseOperation1,
|
|
|
+ }
|
|
|
+
|
|
|
+ if input == nil {
|
|
|
+ input = &InputService6TestShapeInputShape{}
|
|
|
+ }
|
|
|
+
|
|
|
+ req = c.newRequest(op, input, output)
|
|
|
+ output = &InputService6TestShapeInputService6TestCaseOperation1Output{}
|
|
|
+ req.Data = output
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func (c *InputService6ProtocolTest) InputService6TestCaseOperation1(input *InputService6TestShapeInputShape) (*InputService6TestShapeInputService6TestCaseOperation1Output, error) {
|
|
|
+ req, out := c.InputService6TestCaseOperation1Request(input)
|
|
|
+ err := req.Send()
|
|
|
+ return out, err
|
|
|
+}
|
|
|
+
|
|
|
+type InputService6TestShapeInputService6TestCaseOperation1Output struct {
|
|
|
+ metadataInputService6TestShapeInputService6TestCaseOperation1Output `json:"-" xml:"-"`
|
|
|
+}
|
|
|
+
|
|
|
+type metadataInputService6TestShapeInputService6TestCaseOperation1Output struct {
|
|
|
+ SDKShapeTraits bool `type:"structure"`
|
|
|
+}
|
|
|
+
|
|
|
+type InputService6TestShapeInputShape struct {
|
|
|
+ MapArg map[string]*string `locationNameKey:"TheKey" locationNameValue:"TheValue" type:"map"`
|
|
|
+
|
|
|
+ metadataInputService6TestShapeInputShape `json:"-" xml:"-"`
|
|
|
+}
|
|
|
+
|
|
|
+type metadataInputService6TestShapeInputShape struct {
|
|
|
+ SDKShapeTraits bool `type:"structure"`
|
|
|
+}
|
|
|
+
|
|
|
+type InputService7ProtocolTest struct {
|
|
|
+ *aws.Service
|
|
|
+}
|
|
|
+
|
|
|
+// New returns a new InputService7ProtocolTest client.
|
|
|
+func NewInputService7ProtocolTest(config *aws.Config) *InputService7ProtocolTest {
|
|
|
+ service := &aws.Service{
|
|
|
+ Config: aws.DefaultConfig.Merge(config),
|
|
|
+ ServiceName: "inputservice7protocoltest",
|
|
|
+ APIVersion: "2014-01-01",
|
|
|
+ }
|
|
|
+ service.Initialize()
|
|
|
+
|
|
|
+ // Handlers
|
|
|
+ service.Handlers.Sign.PushBack(v4.Sign)
|
|
|
+ service.Handlers.Build.PushBack(query.Build)
|
|
|
+ service.Handlers.Unmarshal.PushBack(query.Unmarshal)
|
|
|
+ service.Handlers.UnmarshalMeta.PushBack(query.UnmarshalMeta)
|
|
|
+ service.Handlers.UnmarshalError.PushBack(query.UnmarshalError)
|
|
|
+
|
|
|
+ return &InputService7ProtocolTest{service}
|
|
|
+}
|
|
|
+
|
|
|
+// newRequest creates a new request for a InputService7ProtocolTest operation and runs any
|
|
|
+// custom request initialization.
|
|
|
+func (c *InputService7ProtocolTest) newRequest(op *aws.Operation, params, data interface{}) *aws.Request {
|
|
|
+ req := aws.NewRequest(c.Service, op, params, data)
|
|
|
+
|
|
|
+ return req
|
|
|
+}
|
|
|
+
|
|
|
+const opInputService7TestCaseOperation1 = "OperationName"
|
|
|
+
|
|
|
+// InputService7TestCaseOperation1Request generates a request for the InputService7TestCaseOperation1 operation.
|
|
|
+func (c *InputService7ProtocolTest) InputService7TestCaseOperation1Request(input *InputService7TestShapeInputShape) (req *aws.Request, output *InputService7TestShapeInputService7TestCaseOperation1Output) {
|
|
|
+ op := &aws.Operation{
|
|
|
+ Name: opInputService7TestCaseOperation1,
|
|
|
+ }
|
|
|
+
|
|
|
+ if input == nil {
|
|
|
+ input = &InputService7TestShapeInputShape{}
|
|
|
+ }
|
|
|
+
|
|
|
+ req = c.newRequest(op, input, output)
|
|
|
+ output = &InputService7TestShapeInputService7TestCaseOperation1Output{}
|
|
|
+ req.Data = output
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func (c *InputService7ProtocolTest) InputService7TestCaseOperation1(input *InputService7TestShapeInputShape) (*InputService7TestShapeInputService7TestCaseOperation1Output, error) {
|
|
|
+ req, out := c.InputService7TestCaseOperation1Request(input)
|
|
|
+ err := req.Send()
|
|
|
+ return out, err
|
|
|
+}
|
|
|
+
|
|
|
+type InputService7TestShapeInputService7TestCaseOperation1Output struct {
|
|
|
+ metadataInputService7TestShapeInputService7TestCaseOperation1Output `json:"-" xml:"-"`
|
|
|
+}
|
|
|
+
|
|
|
+type metadataInputService7TestShapeInputService7TestCaseOperation1Output struct {
|
|
|
+ SDKShapeTraits bool `type:"structure"`
|
|
|
+}
|
|
|
+
|
|
|
+type InputService7TestShapeInputShape struct {
|
|
|
+ BlobArg []byte `type:"blob"`
|
|
|
+
|
|
|
+ metadataInputService7TestShapeInputShape `json:"-" xml:"-"`
|
|
|
+}
|
|
|
+
|
|
|
+type metadataInputService7TestShapeInputShape struct {
|
|
|
+ SDKShapeTraits bool `type:"structure"`
|
|
|
+}
|
|
|
+
|
|
|
+type InputService8ProtocolTest struct {
|
|
|
+ *aws.Service
|
|
|
+}
|
|
|
+
|
|
|
+// New returns a new InputService8ProtocolTest client.
|
|
|
+func NewInputService8ProtocolTest(config *aws.Config) *InputService8ProtocolTest {
|
|
|
+ service := &aws.Service{
|
|
|
+ Config: aws.DefaultConfig.Merge(config),
|
|
|
+ ServiceName: "inputservice8protocoltest",
|
|
|
+ APIVersion: "2014-01-01",
|
|
|
+ }
|
|
|
+ service.Initialize()
|
|
|
+
|
|
|
+ // Handlers
|
|
|
+ service.Handlers.Sign.PushBack(v4.Sign)
|
|
|
+ service.Handlers.Build.PushBack(query.Build)
|
|
|
+ service.Handlers.Unmarshal.PushBack(query.Unmarshal)
|
|
|
+ service.Handlers.UnmarshalMeta.PushBack(query.UnmarshalMeta)
|
|
|
+ service.Handlers.UnmarshalError.PushBack(query.UnmarshalError)
|
|
|
+
|
|
|
+ return &InputService8ProtocolTest{service}
|
|
|
+}
|
|
|
+
|
|
|
+// newRequest creates a new request for a InputService8ProtocolTest operation and runs any
|
|
|
+// custom request initialization.
|
|
|
+func (c *InputService8ProtocolTest) newRequest(op *aws.Operation, params, data interface{}) *aws.Request {
|
|
|
+ req := aws.NewRequest(c.Service, op, params, data)
|
|
|
+
|
|
|
+ return req
|
|
|
+}
|
|
|
+
|
|
|
+const opInputService8TestCaseOperation1 = "OperationName"
|
|
|
+
|
|
|
+// InputService8TestCaseOperation1Request generates a request for the InputService8TestCaseOperation1 operation.
|
|
|
+func (c *InputService8ProtocolTest) InputService8TestCaseOperation1Request(input *InputService8TestShapeInputShape) (req *aws.Request, output *InputService8TestShapeInputService8TestCaseOperation1Output) {
|
|
|
+ op := &aws.Operation{
|
|
|
+ Name: opInputService8TestCaseOperation1,
|
|
|
+ }
|
|
|
+
|
|
|
+ if input == nil {
|
|
|
+ input = &InputService8TestShapeInputShape{}
|
|
|
+ }
|
|
|
+
|
|
|
+ req = c.newRequest(op, input, output)
|
|
|
+ output = &InputService8TestShapeInputService8TestCaseOperation1Output{}
|
|
|
+ req.Data = output
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func (c *InputService8ProtocolTest) InputService8TestCaseOperation1(input *InputService8TestShapeInputShape) (*InputService8TestShapeInputService8TestCaseOperation1Output, error) {
|
|
|
+ req, out := c.InputService8TestCaseOperation1Request(input)
|
|
|
+ err := req.Send()
|
|
|
+ return out, err
|
|
|
+}
|
|
|
+
|
|
|
+type InputService8TestShapeInputService8TestCaseOperation1Output struct {
|
|
|
+ metadataInputService8TestShapeInputService8TestCaseOperation1Output `json:"-" xml:"-"`
|
|
|
+}
|
|
|
+
|
|
|
+type metadataInputService8TestShapeInputService8TestCaseOperation1Output struct {
|
|
|
+ SDKShapeTraits bool `type:"structure"`
|
|
|
+}
|
|
|
+
|
|
|
+type InputService8TestShapeInputShape struct {
|
|
|
+ TimeArg *time.Time `type:"timestamp" timestampFormat:"iso8601"`
|
|
|
+
|
|
|
+ metadataInputService8TestShapeInputShape `json:"-" xml:"-"`
|
|
|
+}
|
|
|
+
|
|
|
+type metadataInputService8TestShapeInputShape struct {
|
|
|
+ SDKShapeTraits bool `type:"structure"`
|
|
|
+}
|
|
|
+
|
|
|
+type InputService9ProtocolTest struct {
|
|
|
+ *aws.Service
|
|
|
+}
|
|
|
+
|
|
|
+// New returns a new InputService9ProtocolTest client.
|
|
|
+func NewInputService9ProtocolTest(config *aws.Config) *InputService9ProtocolTest {
|
|
|
+ service := &aws.Service{
|
|
|
+ Config: aws.DefaultConfig.Merge(config),
|
|
|
+ ServiceName: "inputservice9protocoltest",
|
|
|
+ APIVersion: "2014-01-01",
|
|
|
+ }
|
|
|
+ service.Initialize()
|
|
|
+
|
|
|
+ // Handlers
|
|
|
+ service.Handlers.Sign.PushBack(v4.Sign)
|
|
|
+ service.Handlers.Build.PushBack(query.Build)
|
|
|
+ service.Handlers.Unmarshal.PushBack(query.Unmarshal)
|
|
|
+ service.Handlers.UnmarshalMeta.PushBack(query.UnmarshalMeta)
|
|
|
+ service.Handlers.UnmarshalError.PushBack(query.UnmarshalError)
|
|
|
+
|
|
|
+ return &InputService9ProtocolTest{service}
|
|
|
+}
|
|
|
+
|
|
|
+// newRequest creates a new request for a InputService9ProtocolTest operation and runs any
|
|
|
+// custom request initialization.
|
|
|
+func (c *InputService9ProtocolTest) newRequest(op *aws.Operation, params, data interface{}) *aws.Request {
|
|
|
+ req := aws.NewRequest(c.Service, op, params, data)
|
|
|
+
|
|
|
+ return req
|
|
|
+}
|
|
|
+
|
|
|
+const opInputService9TestCaseOperation1 = "OperationName"
|
|
|
+
|
|
|
+// InputService9TestCaseOperation1Request generates a request for the InputService9TestCaseOperation1 operation.
|
|
|
+func (c *InputService9ProtocolTest) InputService9TestCaseOperation1Request(input *InputService9TestShapeInputShape) (req *aws.Request, output *InputService9TestShapeInputService9TestCaseOperation1Output) {
|
|
|
+ op := &aws.Operation{
|
|
|
+ Name: opInputService9TestCaseOperation1,
|
|
|
+ }
|
|
|
+
|
|
|
+ if input == nil {
|
|
|
+ input = &InputService9TestShapeInputShape{}
|
|
|
+ }
|
|
|
+
|
|
|
+ req = c.newRequest(op, input, output)
|
|
|
+ output = &InputService9TestShapeInputService9TestCaseOperation1Output{}
|
|
|
+ req.Data = output
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func (c *InputService9ProtocolTest) InputService9TestCaseOperation1(input *InputService9TestShapeInputShape) (*InputService9TestShapeInputService9TestCaseOperation1Output, error) {
|
|
|
+ req, out := c.InputService9TestCaseOperation1Request(input)
|
|
|
+ err := req.Send()
|
|
|
+ return out, err
|
|
|
+}
|
|
|
+
|
|
|
+const opInputService9TestCaseOperation2 = "OperationName"
|
|
|
+
|
|
|
+// InputService9TestCaseOperation2Request generates a request for the InputService9TestCaseOperation2 operation.
|
|
|
+func (c *InputService9ProtocolTest) InputService9TestCaseOperation2Request(input *InputService9TestShapeInputShape) (req *aws.Request, output *InputService9TestShapeInputService9TestCaseOperation2Output) {
|
|
|
+ op := &aws.Operation{
|
|
|
+ Name: opInputService9TestCaseOperation2,
|
|
|
+ }
|
|
|
+
|
|
|
+ if input == nil {
|
|
|
+ input = &InputService9TestShapeInputShape{}
|
|
|
+ }
|
|
|
+
|
|
|
+ req = c.newRequest(op, input, output)
|
|
|
+ output = &InputService9TestShapeInputService9TestCaseOperation2Output{}
|
|
|
+ req.Data = output
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func (c *InputService9ProtocolTest) InputService9TestCaseOperation2(input *InputService9TestShapeInputShape) (*InputService9TestShapeInputService9TestCaseOperation2Output, error) {
|
|
|
+ req, out := c.InputService9TestCaseOperation2Request(input)
|
|
|
+ err := req.Send()
|
|
|
+ return out, err
|
|
|
+}
|
|
|
+
|
|
|
+const opInputService9TestCaseOperation3 = "OperationName"
|
|
|
+
|
|
|
+// InputService9TestCaseOperation3Request generates a request for the InputService9TestCaseOperation3 operation.
|
|
|
+func (c *InputService9ProtocolTest) InputService9TestCaseOperation3Request(input *InputService9TestShapeInputShape) (req *aws.Request, output *InputService9TestShapeInputService9TestCaseOperation3Output) {
|
|
|
+ op := &aws.Operation{
|
|
|
+ Name: opInputService9TestCaseOperation3,
|
|
|
+ }
|
|
|
+
|
|
|
+ if input == nil {
|
|
|
+ input = &InputService9TestShapeInputShape{}
|
|
|
+ }
|
|
|
+
|
|
|
+ req = c.newRequest(op, input, output)
|
|
|
+ output = &InputService9TestShapeInputService9TestCaseOperation3Output{}
|
|
|
+ req.Data = output
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func (c *InputService9ProtocolTest) InputService9TestCaseOperation3(input *InputService9TestShapeInputShape) (*InputService9TestShapeInputService9TestCaseOperation3Output, error) {
|
|
|
+ req, out := c.InputService9TestCaseOperation3Request(input)
|
|
|
+ err := req.Send()
|
|
|
+ return out, err
|
|
|
+}
|
|
|
+
|
|
|
+const opInputService9TestCaseOperation4 = "OperationName"
|
|
|
+
|
|
|
+// InputService9TestCaseOperation4Request generates a request for the InputService9TestCaseOperation4 operation.
|
|
|
+func (c *InputService9ProtocolTest) InputService9TestCaseOperation4Request(input *InputService9TestShapeInputShape) (req *aws.Request, output *InputService9TestShapeInputService9TestCaseOperation4Output) {
|
|
|
+ op := &aws.Operation{
|
|
|
+ Name: opInputService9TestCaseOperation4,
|
|
|
+ }
|
|
|
+
|
|
|
+ if input == nil {
|
|
|
+ input = &InputService9TestShapeInputShape{}
|
|
|
+ }
|
|
|
+
|
|
|
+ req = c.newRequest(op, input, output)
|
|
|
+ output = &InputService9TestShapeInputService9TestCaseOperation4Output{}
|
|
|
+ req.Data = output
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func (c *InputService9ProtocolTest) InputService9TestCaseOperation4(input *InputService9TestShapeInputShape) (*InputService9TestShapeInputService9TestCaseOperation4Output, error) {
|
|
|
+ req, out := c.InputService9TestCaseOperation4Request(input)
|
|
|
+ err := req.Send()
|
|
|
+ return out, err
|
|
|
+}
|
|
|
+
|
|
|
+const opInputService9TestCaseOperation5 = "OperationName"
|
|
|
+
|
|
|
+// InputService9TestCaseOperation5Request generates a request for the InputService9TestCaseOperation5 operation.
|
|
|
+func (c *InputService9ProtocolTest) InputService9TestCaseOperation5Request(input *InputService9TestShapeInputShape) (req *aws.Request, output *InputService9TestShapeInputService9TestCaseOperation5Output) {
|
|
|
+ op := &aws.Operation{
|
|
|
+ Name: opInputService9TestCaseOperation5,
|
|
|
+ }
|
|
|
+
|
|
|
+ if input == nil {
|
|
|
+ input = &InputService9TestShapeInputShape{}
|
|
|
+ }
|
|
|
+
|
|
|
+ req = c.newRequest(op, input, output)
|
|
|
+ output = &InputService9TestShapeInputService9TestCaseOperation5Output{}
|
|
|
+ req.Data = output
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func (c *InputService9ProtocolTest) InputService9TestCaseOperation5(input *InputService9TestShapeInputShape) (*InputService9TestShapeInputService9TestCaseOperation5Output, error) {
|
|
|
+ req, out := c.InputService9TestCaseOperation5Request(input)
|
|
|
+ err := req.Send()
|
|
|
+ return out, err
|
|
|
+}
|
|
|
+
|
|
|
+const opInputService9TestCaseOperation6 = "OperationName"
|
|
|
+
|
|
|
+// InputService9TestCaseOperation6Request generates a request for the InputService9TestCaseOperation6 operation.
|
|
|
+func (c *InputService9ProtocolTest) InputService9TestCaseOperation6Request(input *InputService9TestShapeInputShape) (req *aws.Request, output *InputService9TestShapeInputService9TestCaseOperation6Output) {
|
|
|
+ op := &aws.Operation{
|
|
|
+ Name: opInputService9TestCaseOperation6,
|
|
|
+ }
|
|
|
+
|
|
|
+ if input == nil {
|
|
|
+ input = &InputService9TestShapeInputShape{}
|
|
|
+ }
|
|
|
+
|
|
|
+ req = c.newRequest(op, input, output)
|
|
|
+ output = &InputService9TestShapeInputService9TestCaseOperation6Output{}
|
|
|
+ req.Data = output
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func (c *InputService9ProtocolTest) InputService9TestCaseOperation6(input *InputService9TestShapeInputShape) (*InputService9TestShapeInputService9TestCaseOperation6Output, error) {
|
|
|
+ req, out := c.InputService9TestCaseOperation6Request(input)
|
|
|
+ err := req.Send()
|
|
|
+ return out, err
|
|
|
+}
|
|
|
+
|
|
|
+type InputService9TestShapeInputService9TestCaseOperation1Output struct {
|
|
|
+ metadataInputService9TestShapeInputService9TestCaseOperation1Output `json:"-" xml:"-"`
|
|
|
+}
|
|
|
+
|
|
|
+type metadataInputService9TestShapeInputService9TestCaseOperation1Output struct {
|
|
|
+ SDKShapeTraits bool `type:"structure"`
|
|
|
+}
|
|
|
+
|
|
|
+type InputService9TestShapeInputService9TestCaseOperation2Output struct {
|
|
|
+ metadataInputService9TestShapeInputService9TestCaseOperation2Output `json:"-" xml:"-"`
|
|
|
+}
|
|
|
+
|
|
|
+type metadataInputService9TestShapeInputService9TestCaseOperation2Output struct {
|
|
|
+ SDKShapeTraits bool `type:"structure"`
|
|
|
+}
|
|
|
+
|
|
|
+type InputService9TestShapeInputService9TestCaseOperation3Output struct {
|
|
|
+ metadataInputService9TestShapeInputService9TestCaseOperation3Output `json:"-" xml:"-"`
|
|
|
+}
|
|
|
+
|
|
|
+type metadataInputService9TestShapeInputService9TestCaseOperation3Output struct {
|
|
|
+ SDKShapeTraits bool `type:"structure"`
|
|
|
+}
|
|
|
+
|
|
|
+type InputService9TestShapeInputService9TestCaseOperation4Output struct {
|
|
|
+ metadataInputService9TestShapeInputService9TestCaseOperation4Output `json:"-" xml:"-"`
|
|
|
+}
|
|
|
+
|
|
|
+type metadataInputService9TestShapeInputService9TestCaseOperation4Output struct {
|
|
|
+ SDKShapeTraits bool `type:"structure"`
|
|
|
+}
|
|
|
+
|
|
|
+type InputService9TestShapeInputService9TestCaseOperation5Output struct {
|
|
|
+ metadataInputService9TestShapeInputService9TestCaseOperation5Output `json:"-" xml:"-"`
|
|
|
+}
|
|
|
+
|
|
|
+type metadataInputService9TestShapeInputService9TestCaseOperation5Output struct {
|
|
|
+ SDKShapeTraits bool `type:"structure"`
|
|
|
+}
|
|
|
+
|
|
|
+type InputService9TestShapeInputService9TestCaseOperation6Output struct {
|
|
|
+ metadataInputService9TestShapeInputService9TestCaseOperation6Output `json:"-" xml:"-"`
|
|
|
+}
|
|
|
+
|
|
|
+type metadataInputService9TestShapeInputService9TestCaseOperation6Output struct {
|
|
|
+ SDKShapeTraits bool `type:"structure"`
|
|
|
+}
|
|
|
+
|
|
|
+type InputService9TestShapeInputShape struct {
|
|
|
+ RecursiveStruct *InputService9TestShapeRecursiveStructType `type:"structure"`
|
|
|
+
|
|
|
+ metadataInputService9TestShapeInputShape `json:"-" xml:"-"`
|
|
|
+}
|
|
|
+
|
|
|
+type metadataInputService9TestShapeInputShape struct {
|
|
|
+ SDKShapeTraits bool `type:"structure"`
|
|
|
+}
|
|
|
+
|
|
|
+type InputService9TestShapeRecursiveStructType struct {
|
|
|
+ NoRecurse *string `type:"string"`
|
|
|
+
|
|
|
+ RecursiveList []*InputService9TestShapeRecursiveStructType `type:"list"`
|
|
|
+
|
|
|
+ RecursiveMap map[string]*InputService9TestShapeRecursiveStructType `type:"map"`
|
|
|
+
|
|
|
+ RecursiveStruct *InputService9TestShapeRecursiveStructType `type:"structure"`
|
|
|
+
|
|
|
+ metadataInputService9TestShapeRecursiveStructType `json:"-" xml:"-"`
|
|
|
+}
|
|
|
+
|
|
|
+type metadataInputService9TestShapeRecursiveStructType struct {
|
|
|
+ SDKShapeTraits bool `type:"structure"`
|
|
|
+}
|
|
|
+
|
|
|
+//
|
|
|
+// Tests begin here
|
|
|
+//
|
|
|
+
|
|
|
+func TestInputService1ProtocolTestScalarMembersCase1(t *testing.T) {
|
|
|
+ svc := NewInputService1ProtocolTest(nil)
|
|
|
+ svc.Endpoint = "https://test"
|
|
|
+
|
|
|
+ input := &InputService1TestShapeInputShape{
|
|
|
+ Bar: aws.String("val2"),
|
|
|
+ Foo: aws.String("val1"),
|
|
|
+ }
|
|
|
+ req, _ := svc.InputService1TestCaseOperation1Request(input)
|
|
|
+ r := req.HTTPRequest
|
|
|
+
|
|
|
+ // build request
|
|
|
+ query.Build(req)
|
|
|
+ assert.NoError(t, req.Error)
|
|
|
+
|
|
|
+ // assert body
|
|
|
+ assert.NotNil(t, r.Body)
|
|
|
+ body, _ := ioutil.ReadAll(r.Body)
|
|
|
+ assert.Equal(t, util.Trim(`Action=OperationName&Bar=val2&Foo=val1&Version=2014-01-01`), util.Trim(string(body)))
|
|
|
+
|
|
|
+ // assert URL
|
|
|
+ assert.Equal(t, "https://test/", r.URL.String())
|
|
|
+
|
|
|
+ // assert headers
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+func TestInputService2ProtocolTestNestedStructureMembersCase1(t *testing.T) {
|
|
|
+ svc := NewInputService2ProtocolTest(nil)
|
|
|
+ svc.Endpoint = "https://test"
|
|
|
+
|
|
|
+ input := &InputService2TestShapeInputShape{
|
|
|
+ StructArg: &InputService2TestShapeStructType{
|
|
|
+ ScalarArg: aws.String("foo"),
|
|
|
+ },
|
|
|
+ }
|
|
|
+ req, _ := svc.InputService2TestCaseOperation1Request(input)
|
|
|
+ r := req.HTTPRequest
|
|
|
+
|
|
|
+ // build request
|
|
|
+ query.Build(req)
|
|
|
+ assert.NoError(t, req.Error)
|
|
|
+
|
|
|
+ // assert body
|
|
|
+ assert.NotNil(t, r.Body)
|
|
|
+ body, _ := ioutil.ReadAll(r.Body)
|
|
|
+ assert.Equal(t, util.Trim(`Action=OperationName&StructArg.ScalarArg=foo&Version=2014-01-01`), util.Trim(string(body)))
|
|
|
+
|
|
|
+ // assert URL
|
|
|
+ assert.Equal(t, "https://test/", r.URL.String())
|
|
|
+
|
|
|
+ // assert headers
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+func TestInputService3ProtocolTestListTypesCase1(t *testing.T) {
|
|
|
+ svc := NewInputService3ProtocolTest(nil)
|
|
|
+ svc.Endpoint = "https://test"
|
|
|
+
|
|
|
+ input := &InputService3TestShapeInputShape{
|
|
|
+ ListArg: []*string{
|
|
|
+ aws.String("foo"),
|
|
|
+ aws.String("bar"),
|
|
|
+ aws.String("baz"),
|
|
|
+ },
|
|
|
+ }
|
|
|
+ req, _ := svc.InputService3TestCaseOperation1Request(input)
|
|
|
+ r := req.HTTPRequest
|
|
|
+
|
|
|
+ // build request
|
|
|
+ query.Build(req)
|
|
|
+ assert.NoError(t, req.Error)
|
|
|
+
|
|
|
+ // assert body
|
|
|
+ assert.NotNil(t, r.Body)
|
|
|
+ body, _ := ioutil.ReadAll(r.Body)
|
|
|
+ assert.Equal(t, util.Trim(`Action=OperationName&ListArg.member.1=foo&ListArg.member.2=bar&ListArg.member.3=baz&Version=2014-01-01`), util.Trim(string(body)))
|
|
|
+
|
|
|
+ // assert URL
|
|
|
+ assert.Equal(t, "https://test/", r.URL.String())
|
|
|
+
|
|
|
+ // assert headers
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+func TestInputService3ProtocolTestListTypesCase2(t *testing.T) {
|
|
|
+ svc := NewInputService3ProtocolTest(nil)
|
|
|
+ svc.Endpoint = "https://test"
|
|
|
+
|
|
|
+ input := &InputService3TestShapeInputShape{
|
|
|
+ ListArg: []*string{},
|
|
|
+ }
|
|
|
+ req, _ := svc.InputService3TestCaseOperation2Request(input)
|
|
|
+ r := req.HTTPRequest
|
|
|
+
|
|
|
+ // build request
|
|
|
+ query.Build(req)
|
|
|
+ assert.NoError(t, req.Error)
|
|
|
+
|
|
|
+ // assert body
|
|
|
+ assert.NotNil(t, r.Body)
|
|
|
+ body, _ := ioutil.ReadAll(r.Body)
|
|
|
+ assert.Equal(t, util.Trim(`Action=OperationName&ListArg=&Version=2014-01-01`), util.Trim(string(body)))
|
|
|
+
|
|
|
+ // assert URL
|
|
|
+ assert.Equal(t, "https://test/", r.URL.String())
|
|
|
+
|
|
|
+ // assert headers
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+func TestInputService4ProtocolTestFlattenedListCase1(t *testing.T) {
|
|
|
+ svc := NewInputService4ProtocolTest(nil)
|
|
|
+ svc.Endpoint = "https://test"
|
|
|
+
|
|
|
+ input := &InputService4TestShapeInputShape{
|
|
|
+ ListArg: []*string{
|
|
|
+ aws.String("a"),
|
|
|
+ aws.String("b"),
|
|
|
+ aws.String("c"),
|
|
|
+ },
|
|
|
+ ScalarArg: aws.String("foo"),
|
|
|
+ }
|
|
|
+ req, _ := svc.InputService4TestCaseOperation1Request(input)
|
|
|
+ r := req.HTTPRequest
|
|
|
+
|
|
|
+ // build request
|
|
|
+ query.Build(req)
|
|
|
+ assert.NoError(t, req.Error)
|
|
|
+
|
|
|
+ // assert body
|
|
|
+ assert.NotNil(t, r.Body)
|
|
|
+ body, _ := ioutil.ReadAll(r.Body)
|
|
|
+ assert.Equal(t, util.Trim(`Action=OperationName&ListArg.1=a&ListArg.2=b&ListArg.3=c&ScalarArg=foo&Version=2014-01-01`), util.Trim(string(body)))
|
|
|
+
|
|
|
+ // assert URL
|
|
|
+ assert.Equal(t, "https://test/", r.URL.String())
|
|
|
+
|
|
|
+ // assert headers
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+func TestInputService4ProtocolTestFlattenedListCase2(t *testing.T) {
|
|
|
+ svc := NewInputService4ProtocolTest(nil)
|
|
|
+ svc.Endpoint = "https://test"
|
|
|
+
|
|
|
+ input := &InputService4TestShapeInputShape{
|
|
|
+ ListArg: []*string{},
|
|
|
+ ScalarArg: aws.String("foo"),
|
|
|
+ }
|
|
|
+ req, _ := svc.InputService4TestCaseOperation2Request(input)
|
|
|
+ r := req.HTTPRequest
|
|
|
+
|
|
|
+ // build request
|
|
|
+ query.Build(req)
|
|
|
+ assert.NoError(t, req.Error)
|
|
|
+
|
|
|
+ // assert body
|
|
|
+ assert.NotNil(t, r.Body)
|
|
|
+ body, _ := ioutil.ReadAll(r.Body)
|
|
|
+ assert.Equal(t, util.Trim(`Action=OperationName&ListArg=&ScalarArg=foo&Version=2014-01-01`), util.Trim(string(body)))
|
|
|
+
|
|
|
+ // assert URL
|
|
|
+ assert.Equal(t, "https://test/", r.URL.String())
|
|
|
+
|
|
|
+ // assert headers
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+func TestInputService5ProtocolTestSerializeMapTypeCase1(t *testing.T) {
|
|
|
+ svc := NewInputService5ProtocolTest(nil)
|
|
|
+ svc.Endpoint = "https://test"
|
|
|
+
|
|
|
+ input := &InputService5TestShapeInputShape{
|
|
|
+ MapArg: map[string]*string{
|
|
|
+ "key1": aws.String("val1"),
|
|
|
+ "key2": aws.String("val2"),
|
|
|
+ },
|
|
|
+ }
|
|
|
+ req, _ := svc.InputService5TestCaseOperation1Request(input)
|
|
|
+ r := req.HTTPRequest
|
|
|
+
|
|
|
+ // build request
|
|
|
+ query.Build(req)
|
|
|
+ assert.NoError(t, req.Error)
|
|
|
+
|
|
|
+ // assert body
|
|
|
+ assert.NotNil(t, r.Body)
|
|
|
+ body, _ := ioutil.ReadAll(r.Body)
|
|
|
+ assert.Equal(t, util.Trim(`Action=OperationName&MapArg.entry.1.key=key1&MapArg.entry.1.value=val1&MapArg.entry.2.key=key2&MapArg.entry.2.value=val2&Version=2014-01-01`), util.Trim(string(body)))
|
|
|
+
|
|
|
+ // assert URL
|
|
|
+ assert.Equal(t, "https://test/", r.URL.String())
|
|
|
+
|
|
|
+ // assert headers
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+func TestInputService5ProtocolTestSerializeMapTypeCase2(t *testing.T) {
|
|
|
+ svc := NewInputService5ProtocolTest(nil)
|
|
|
+ svc.Endpoint = "https://test"
|
|
|
+
|
|
|
+ input := &InputService5TestShapeInputShape{
|
|
|
+ MapArg: map[string]*string{},
|
|
|
+ }
|
|
|
+ req, _ := svc.InputService5TestCaseOperation2Request(input)
|
|
|
+ r := req.HTTPRequest
|
|
|
+
|
|
|
+ // build request
|
|
|
+ query.Build(req)
|
|
|
+ assert.NoError(t, req.Error)
|
|
|
+
|
|
|
+ // assert body
|
|
|
+ assert.NotNil(t, r.Body)
|
|
|
+ body, _ := ioutil.ReadAll(r.Body)
|
|
|
+ assert.Equal(t, util.Trim(`Action=OperationName&MapArg=&Version=2014-01-01`), util.Trim(string(body)))
|
|
|
+
|
|
|
+ // assert URL
|
|
|
+ assert.Equal(t, "https://test/", r.URL.String())
|
|
|
+
|
|
|
+ // assert headers
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+func TestInputService6ProtocolTestSerializeMapTypeWithLocationNameCase1(t *testing.T) {
|
|
|
+ svc := NewInputService6ProtocolTest(nil)
|
|
|
+ svc.Endpoint = "https://test"
|
|
|
+
|
|
|
+ input := &InputService6TestShapeInputShape{
|
|
|
+ MapArg: map[string]*string{
|
|
|
+ "key1": aws.String("val1"),
|
|
|
+ "key2": aws.String("val2"),
|
|
|
+ },
|
|
|
+ }
|
|
|
+ req, _ := svc.InputService6TestCaseOperation1Request(input)
|
|
|
+ r := req.HTTPRequest
|
|
|
+
|
|
|
+ // build request
|
|
|
+ query.Build(req)
|
|
|
+ assert.NoError(t, req.Error)
|
|
|
+
|
|
|
+ // assert body
|
|
|
+ assert.NotNil(t, r.Body)
|
|
|
+ body, _ := ioutil.ReadAll(r.Body)
|
|
|
+ assert.Equal(t, util.Trim(`Action=OperationName&MapArg.entry.1.TheKey=key1&MapArg.entry.1.TheValue=val1&MapArg.entry.2.TheKey=key2&MapArg.entry.2.TheValue=val2&Version=2014-01-01`), util.Trim(string(body)))
|
|
|
+
|
|
|
+ // assert URL
|
|
|
+ assert.Equal(t, "https://test/", r.URL.String())
|
|
|
+
|
|
|
+ // assert headers
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+func TestInputService7ProtocolTestBase64EncodedBlobsCase1(t *testing.T) {
|
|
|
+ svc := NewInputService7ProtocolTest(nil)
|
|
|
+ svc.Endpoint = "https://test"
|
|
|
+
|
|
|
+ input := &InputService7TestShapeInputShape{
|
|
|
+ BlobArg: []byte("foo"),
|
|
|
+ }
|
|
|
+ req, _ := svc.InputService7TestCaseOperation1Request(input)
|
|
|
+ r := req.HTTPRequest
|
|
|
+
|
|
|
+ // build request
|
|
|
+ query.Build(req)
|
|
|
+ assert.NoError(t, req.Error)
|
|
|
+
|
|
|
+ // assert body
|
|
|
+ assert.NotNil(t, r.Body)
|
|
|
+ body, _ := ioutil.ReadAll(r.Body)
|
|
|
+ assert.Equal(t, util.Trim(`Action=OperationName&BlobArg=Zm9v&Version=2014-01-01`), util.Trim(string(body)))
|
|
|
+
|
|
|
+ // assert URL
|
|
|
+ assert.Equal(t, "https://test/", r.URL.String())
|
|
|
+
|
|
|
+ // assert headers
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+func TestInputService8ProtocolTestTimestampValuesCase1(t *testing.T) {
|
|
|
+ svc := NewInputService8ProtocolTest(nil)
|
|
|
+ svc.Endpoint = "https://test"
|
|
|
+
|
|
|
+ input := &InputService8TestShapeInputShape{
|
|
|
+ TimeArg: aws.Time(time.Unix(1422172800, 0)),
|
|
|
+ }
|
|
|
+ req, _ := svc.InputService8TestCaseOperation1Request(input)
|
|
|
+ r := req.HTTPRequest
|
|
|
+
|
|
|
+ // build request
|
|
|
+ query.Build(req)
|
|
|
+ assert.NoError(t, req.Error)
|
|
|
+
|
|
|
+ // assert body
|
|
|
+ assert.NotNil(t, r.Body)
|
|
|
+ body, _ := ioutil.ReadAll(r.Body)
|
|
|
+ assert.Equal(t, util.Trim(`Action=OperationName&TimeArg=2015-01-25T08%3A00%3A00Z&Version=2014-01-01`), util.Trim(string(body)))
|
|
|
+
|
|
|
+ // assert URL
|
|
|
+ assert.Equal(t, "https://test/", r.URL.String())
|
|
|
+
|
|
|
+ // assert headers
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+func TestInputService9ProtocolTestRecursiveShapesCase1(t *testing.T) {
|
|
|
+ svc := NewInputService9ProtocolTest(nil)
|
|
|
+ svc.Endpoint = "https://test"
|
|
|
+
|
|
|
+ input := &InputService9TestShapeInputShape{
|
|
|
+ RecursiveStruct: &InputService9TestShapeRecursiveStructType{
|
|
|
+ NoRecurse: aws.String("foo"),
|
|
|
+ },
|
|
|
+ }
|
|
|
+ req, _ := svc.InputService9TestCaseOperation1Request(input)
|
|
|
+ r := req.HTTPRequest
|
|
|
+
|
|
|
+ // build request
|
|
|
+ query.Build(req)
|
|
|
+ assert.NoError(t, req.Error)
|
|
|
+
|
|
|
+ // assert body
|
|
|
+ assert.NotNil(t, r.Body)
|
|
|
+ body, _ := ioutil.ReadAll(r.Body)
|
|
|
+ assert.Equal(t, util.Trim(`Action=OperationName&RecursiveStruct.NoRecurse=foo&Version=2014-01-01`), util.Trim(string(body)))
|
|
|
+
|
|
|
+ // assert URL
|
|
|
+ assert.Equal(t, "https://test/", r.URL.String())
|
|
|
+
|
|
|
+ // assert headers
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+func TestInputService9ProtocolTestRecursiveShapesCase2(t *testing.T) {
|
|
|
+ svc := NewInputService9ProtocolTest(nil)
|
|
|
+ svc.Endpoint = "https://test"
|
|
|
+
|
|
|
+ input := &InputService9TestShapeInputShape{
|
|
|
+ RecursiveStruct: &InputService9TestShapeRecursiveStructType{
|
|
|
+ RecursiveStruct: &InputService9TestShapeRecursiveStructType{
|
|
|
+ NoRecurse: aws.String("foo"),
|
|
|
+ },
|
|
|
+ },
|
|
|
+ }
|
|
|
+ req, _ := svc.InputService9TestCaseOperation2Request(input)
|
|
|
+ r := req.HTTPRequest
|
|
|
+
|
|
|
+ // build request
|
|
|
+ query.Build(req)
|
|
|
+ assert.NoError(t, req.Error)
|
|
|
+
|
|
|
+ // assert body
|
|
|
+ assert.NotNil(t, r.Body)
|
|
|
+ body, _ := ioutil.ReadAll(r.Body)
|
|
|
+ assert.Equal(t, util.Trim(`Action=OperationName&RecursiveStruct.RecursiveStruct.NoRecurse=foo&Version=2014-01-01`), util.Trim(string(body)))
|
|
|
+
|
|
|
+ // assert URL
|
|
|
+ assert.Equal(t, "https://test/", r.URL.String())
|
|
|
+
|
|
|
+ // assert headers
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+func TestInputService9ProtocolTestRecursiveShapesCase3(t *testing.T) {
|
|
|
+ svc := NewInputService9ProtocolTest(nil)
|
|
|
+ svc.Endpoint = "https://test"
|
|
|
+
|
|
|
+ input := &InputService9TestShapeInputShape{
|
|
|
+ RecursiveStruct: &InputService9TestShapeRecursiveStructType{
|
|
|
+ RecursiveStruct: &InputService9TestShapeRecursiveStructType{
|
|
|
+ RecursiveStruct: &InputService9TestShapeRecursiveStructType{
|
|
|
+ RecursiveStruct: &InputService9TestShapeRecursiveStructType{
|
|
|
+ NoRecurse: aws.String("foo"),
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ }
|
|
|
+ req, _ := svc.InputService9TestCaseOperation3Request(input)
|
|
|
+ r := req.HTTPRequest
|
|
|
+
|
|
|
+ // build request
|
|
|
+ query.Build(req)
|
|
|
+ assert.NoError(t, req.Error)
|
|
|
+
|
|
|
+ // assert body
|
|
|
+ assert.NotNil(t, r.Body)
|
|
|
+ body, _ := ioutil.ReadAll(r.Body)
|
|
|
+ assert.Equal(t, util.Trim(`Action=OperationName&RecursiveStruct.RecursiveStruct.RecursiveStruct.RecursiveStruct.NoRecurse=foo&Version=2014-01-01`), util.Trim(string(body)))
|
|
|
+
|
|
|
+ // assert URL
|
|
|
+ assert.Equal(t, "https://test/", r.URL.String())
|
|
|
+
|
|
|
+ // assert headers
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+func TestInputService9ProtocolTestRecursiveShapesCase4(t *testing.T) {
|
|
|
+ svc := NewInputService9ProtocolTest(nil)
|
|
|
+ svc.Endpoint = "https://test"
|
|
|
+
|
|
|
+ input := &InputService9TestShapeInputShape{
|
|
|
+ RecursiveStruct: &InputService9TestShapeRecursiveStructType{
|
|
|
+ RecursiveList: []*InputService9TestShapeRecursiveStructType{
|
|
|
+ {
|
|
|
+ NoRecurse: aws.String("foo"),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ NoRecurse: aws.String("bar"),
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ }
|
|
|
+ req, _ := svc.InputService9TestCaseOperation4Request(input)
|
|
|
+ r := req.HTTPRequest
|
|
|
+
|
|
|
+ // build request
|
|
|
+ query.Build(req)
|
|
|
+ assert.NoError(t, req.Error)
|
|
|
+
|
|
|
+ // assert body
|
|
|
+ assert.NotNil(t, r.Body)
|
|
|
+ body, _ := ioutil.ReadAll(r.Body)
|
|
|
+ assert.Equal(t, util.Trim(`Action=OperationName&RecursiveStruct.RecursiveList.member.1.NoRecurse=foo&RecursiveStruct.RecursiveList.member.2.NoRecurse=bar&Version=2014-01-01`), util.Trim(string(body)))
|
|
|
+
|
|
|
+ // assert URL
|
|
|
+ assert.Equal(t, "https://test/", r.URL.String())
|
|
|
+
|
|
|
+ // assert headers
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+func TestInputService9ProtocolTestRecursiveShapesCase5(t *testing.T) {
|
|
|
+ svc := NewInputService9ProtocolTest(nil)
|
|
|
+ svc.Endpoint = "https://test"
|
|
|
+
|
|
|
+ input := &InputService9TestShapeInputShape{
|
|
|
+ RecursiveStruct: &InputService9TestShapeRecursiveStructType{
|
|
|
+ RecursiveList: []*InputService9TestShapeRecursiveStructType{
|
|
|
+ {
|
|
|
+ NoRecurse: aws.String("foo"),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ RecursiveStruct: &InputService9TestShapeRecursiveStructType{
|
|
|
+ NoRecurse: aws.String("bar"),
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ }
|
|
|
+ req, _ := svc.InputService9TestCaseOperation5Request(input)
|
|
|
+ r := req.HTTPRequest
|
|
|
+
|
|
|
+ // build request
|
|
|
+ query.Build(req)
|
|
|
+ assert.NoError(t, req.Error)
|
|
|
+
|
|
|
+ // assert body
|
|
|
+ assert.NotNil(t, r.Body)
|
|
|
+ body, _ := ioutil.ReadAll(r.Body)
|
|
|
+ assert.Equal(t, util.Trim(`Action=OperationName&RecursiveStruct.RecursiveList.member.1.NoRecurse=foo&RecursiveStruct.RecursiveList.member.2.RecursiveStruct.NoRecurse=bar&Version=2014-01-01`), util.Trim(string(body)))
|
|
|
+
|
|
|
+ // assert URL
|
|
|
+ assert.Equal(t, "https://test/", r.URL.String())
|
|
|
+
|
|
|
+ // assert headers
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+func TestInputService9ProtocolTestRecursiveShapesCase6(t *testing.T) {
|
|
|
+ svc := NewInputService9ProtocolTest(nil)
|
|
|
+ svc.Endpoint = "https://test"
|
|
|
+
|
|
|
+ input := &InputService9TestShapeInputShape{
|
|
|
+ RecursiveStruct: &InputService9TestShapeRecursiveStructType{
|
|
|
+ RecursiveMap: map[string]*InputService9TestShapeRecursiveStructType{
|
|
|
+ "bar": {
|
|
|
+ NoRecurse: aws.String("bar"),
|
|
|
+ },
|
|
|
+ "foo": {
|
|
|
+ NoRecurse: aws.String("foo"),
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ }
|
|
|
+ req, _ := svc.InputService9TestCaseOperation6Request(input)
|
|
|
+ r := req.HTTPRequest
|
|
|
+
|
|
|
+ // build request
|
|
|
+ query.Build(req)
|
|
|
+ assert.NoError(t, req.Error)
|
|
|
+
|
|
|
+ // assert body
|
|
|
+ assert.NotNil(t, r.Body)
|
|
|
+ body, _ := ioutil.ReadAll(r.Body)
|
|
|
+ assert.Equal(t, util.Trim(`Action=OperationName&RecursiveStruct.RecursiveMap.entry.1.key=bar&RecursiveStruct.RecursiveMap.entry.1.value.NoRecurse=bar&RecursiveStruct.RecursiveMap.entry.2.key=foo&RecursiveStruct.RecursiveMap.entry.2.value.NoRecurse=foo&Version=2014-01-01`), util.Trim(string(body)))
|
|
|
+
|
|
|
+ // assert URL
|
|
|
+ assert.Equal(t, "https://test/", r.URL.String())
|
|
|
+
|
|
|
+ // assert headers
|
|
|
+
|
|
|
+}
|