| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378 |
- package ec2query_test
- import (
- "bytes"
- "encoding/json"
- "encoding/xml"
- "fmt"
- "io"
- "io/ioutil"
- "net/http"
- "net/url"
- "testing"
- "time"
- "github.com/aws/aws-sdk-go/aws"
- "github.com/aws/aws-sdk-go/aws/client"
- "github.com/aws/aws-sdk-go/aws/client/metadata"
- "github.com/aws/aws-sdk-go/aws/request"
- "github.com/aws/aws-sdk-go/aws/signer/v4"
- "github.com/aws/aws-sdk-go/awstesting"
- "github.com/aws/aws-sdk-go/awstesting/unit"
- "github.com/aws/aws-sdk-go/private/protocol"
- "github.com/aws/aws-sdk-go/private/protocol/ec2query"
- "github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil"
- "github.com/aws/aws-sdk-go/private/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
- var _ = aws.String
- var _ = fmt.Println
- func init() {
- protocol.RandReader = &awstesting.ZeroReader{}
- }
- //The service client's operations are safe to be used concurrently.
- // It is not safe to mutate any of the client's properties though.
- type InputService1ProtocolTest struct {
- *client.Client
- }
- // New creates a new instance of the InputService1ProtocolTest client with a session.
- // If additional configuration is needed for the client instance use the optional
- // aws.Config parameter to add your extra config.
- //
- // Example:
- // // Create a InputService1ProtocolTest client from just a session.
- // svc := inputservice1protocoltest.New(mySession)
- //
- // // Create a InputService1ProtocolTest client with additional configuration
- // svc := inputservice1protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2"))
- func NewInputService1ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService1ProtocolTest {
- c := p.ClientConfig("inputservice1protocoltest", cfgs...)
- return newInputService1ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion)
- }
- // newClient creates, initializes and returns a new service client instance.
- func newInputService1ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService1ProtocolTest {
- svc := &InputService1ProtocolTest{
- Client: client.New(
- cfg,
- metadata.ClientInfo{
- ServiceName: "inputservice1protocoltest",
- SigningRegion: signingRegion,
- Endpoint: endpoint,
- APIVersion: "2014-01-01",
- },
- handlers,
- ),
- }
- // Handlers
- svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler)
- svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler)
- svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler)
- svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler)
- svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler)
- return svc
- }
- // newRequest creates a new request for a InputService1ProtocolTest operation and runs any
- // custom request initialization.
- func (c *InputService1ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request {
- req := c.NewRequest(op, params, data)
- return req
- }
- const opInputService1TestCaseOperation1 = "OperationName"
- // InputService1TestCaseOperation1Request generates a "aws/request.Request" representing the
- // client's request for the InputService1TestCaseOperation1 operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the InputService1TestCaseOperation1 method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the InputService1TestCaseOperation1Request method.
- // req, resp := client.InputService1TestCaseOperation1Request(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *InputService1ProtocolTest) InputService1TestCaseOperation1Request(input *InputService1TestShapeInputService1TestCaseOperation1Input) (req *request.Request, output *InputService1TestShapeInputService1TestCaseOperation1Output) {
- op := &request.Operation{
- Name: opInputService1TestCaseOperation1,
- HTTPPath: "/",
- }
- if input == nil {
- input = &InputService1TestShapeInputService1TestCaseOperation1Input{}
- }
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- output = &InputService1TestShapeInputService1TestCaseOperation1Output{}
- req.Data = output
- return
- }
- func (c *InputService1ProtocolTest) InputService1TestCaseOperation1(input *InputService1TestShapeInputService1TestCaseOperation1Input) (*InputService1TestShapeInputService1TestCaseOperation1Output, error) {
- req, out := c.InputService1TestCaseOperation1Request(input)
- err := req.Send()
- return out, err
- }
- type InputService1TestShapeInputService1TestCaseOperation1Input struct {
- _ struct{} `type:"structure"`
- Bar *string `type:"string"`
- Foo *string `type:"string"`
- }
- type InputService1TestShapeInputService1TestCaseOperation1Output struct {
- _ struct{} `type:"structure"`
- }
- //The service client's operations are safe to be used concurrently.
- // It is not safe to mutate any of the client's properties though.
- type InputService2ProtocolTest struct {
- *client.Client
- }
- // New creates a new instance of the InputService2ProtocolTest client with a session.
- // If additional configuration is needed for the client instance use the optional
- // aws.Config parameter to add your extra config.
- //
- // Example:
- // // Create a InputService2ProtocolTest client from just a session.
- // svc := inputservice2protocoltest.New(mySession)
- //
- // // Create a InputService2ProtocolTest client with additional configuration
- // svc := inputservice2protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2"))
- func NewInputService2ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService2ProtocolTest {
- c := p.ClientConfig("inputservice2protocoltest", cfgs...)
- return newInputService2ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion)
- }
- // newClient creates, initializes and returns a new service client instance.
- func newInputService2ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService2ProtocolTest {
- svc := &InputService2ProtocolTest{
- Client: client.New(
- cfg,
- metadata.ClientInfo{
- ServiceName: "inputservice2protocoltest",
- SigningRegion: signingRegion,
- Endpoint: endpoint,
- APIVersion: "2014-01-01",
- },
- handlers,
- ),
- }
- // Handlers
- svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler)
- svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler)
- svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler)
- svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler)
- svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler)
- return svc
- }
- // newRequest creates a new request for a InputService2ProtocolTest operation and runs any
- // custom request initialization.
- func (c *InputService2ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request {
- req := c.NewRequest(op, params, data)
- return req
- }
- const opInputService2TestCaseOperation1 = "OperationName"
- // InputService2TestCaseOperation1Request generates a "aws/request.Request" representing the
- // client's request for the InputService2TestCaseOperation1 operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the InputService2TestCaseOperation1 method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the InputService2TestCaseOperation1Request method.
- // req, resp := client.InputService2TestCaseOperation1Request(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *InputService2ProtocolTest) InputService2TestCaseOperation1Request(input *InputService2TestShapeInputService2TestCaseOperation1Input) (req *request.Request, output *InputService2TestShapeInputService2TestCaseOperation1Output) {
- op := &request.Operation{
- Name: opInputService2TestCaseOperation1,
- HTTPPath: "/",
- }
- if input == nil {
- input = &InputService2TestShapeInputService2TestCaseOperation1Input{}
- }
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- output = &InputService2TestShapeInputService2TestCaseOperation1Output{}
- req.Data = output
- return
- }
- func (c *InputService2ProtocolTest) InputService2TestCaseOperation1(input *InputService2TestShapeInputService2TestCaseOperation1Input) (*InputService2TestShapeInputService2TestCaseOperation1Output, error) {
- req, out := c.InputService2TestCaseOperation1Request(input)
- err := req.Send()
- return out, err
- }
- type InputService2TestShapeInputService2TestCaseOperation1Input struct {
- _ struct{} `type:"structure"`
- Bar *string `locationName:"barLocationName" type:"string"`
- Foo *string `type:"string"`
- Yuck *string `locationName:"yuckLocationName" queryName:"yuckQueryName" type:"string"`
- }
- type InputService2TestShapeInputService2TestCaseOperation1Output struct {
- _ struct{} `type:"structure"`
- }
- //The service client's operations are safe to be used concurrently.
- // It is not safe to mutate any of the client's properties though.
- type InputService3ProtocolTest struct {
- *client.Client
- }
- // New creates a new instance of the InputService3ProtocolTest client with a session.
- // If additional configuration is needed for the client instance use the optional
- // aws.Config parameter to add your extra config.
- //
- // Example:
- // // Create a InputService3ProtocolTest client from just a session.
- // svc := inputservice3protocoltest.New(mySession)
- //
- // // Create a InputService3ProtocolTest client with additional configuration
- // svc := inputservice3protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2"))
- func NewInputService3ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService3ProtocolTest {
- c := p.ClientConfig("inputservice3protocoltest", cfgs...)
- return newInputService3ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion)
- }
- // newClient creates, initializes and returns a new service client instance.
- func newInputService3ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService3ProtocolTest {
- svc := &InputService3ProtocolTest{
- Client: client.New(
- cfg,
- metadata.ClientInfo{
- ServiceName: "inputservice3protocoltest",
- SigningRegion: signingRegion,
- Endpoint: endpoint,
- APIVersion: "2014-01-01",
- },
- handlers,
- ),
- }
- // Handlers
- svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler)
- svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler)
- svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler)
- svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler)
- svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler)
- return svc
- }
- // newRequest creates a new request for a InputService3ProtocolTest operation and runs any
- // custom request initialization.
- func (c *InputService3ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request {
- req := c.NewRequest(op, params, data)
- return req
- }
- const opInputService3TestCaseOperation1 = "OperationName"
- // InputService3TestCaseOperation1Request generates a "aws/request.Request" representing the
- // client's request for the InputService3TestCaseOperation1 operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the InputService3TestCaseOperation1 method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the InputService3TestCaseOperation1Request method.
- // req, resp := client.InputService3TestCaseOperation1Request(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *InputService3ProtocolTest) InputService3TestCaseOperation1Request(input *InputService3TestShapeInputService3TestCaseOperation1Input) (req *request.Request, output *InputService3TestShapeInputService3TestCaseOperation1Output) {
- op := &request.Operation{
- Name: opInputService3TestCaseOperation1,
- HTTPPath: "/",
- }
- if input == nil {
- input = &InputService3TestShapeInputService3TestCaseOperation1Input{}
- }
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- output = &InputService3TestShapeInputService3TestCaseOperation1Output{}
- req.Data = output
- return
- }
- func (c *InputService3ProtocolTest) InputService3TestCaseOperation1(input *InputService3TestShapeInputService3TestCaseOperation1Input) (*InputService3TestShapeInputService3TestCaseOperation1Output, error) {
- req, out := c.InputService3TestCaseOperation1Request(input)
- err := req.Send()
- return out, err
- }
- type InputService3TestShapeInputService3TestCaseOperation1Input struct {
- _ struct{} `type:"structure"`
- StructArg *InputService3TestShapeStructType `locationName:"Struct" type:"structure"`
- }
- type InputService3TestShapeInputService3TestCaseOperation1Output struct {
- _ struct{} `type:"structure"`
- }
- type InputService3TestShapeStructType struct {
- _ struct{} `type:"structure"`
- ScalarArg *string `locationName:"Scalar" type:"string"`
- }
- //The service client's operations are safe to be used concurrently.
- // It is not safe to mutate any of the client's properties though.
- type InputService4ProtocolTest struct {
- *client.Client
- }
- // New creates a new instance of the InputService4ProtocolTest client with a session.
- // If additional configuration is needed for the client instance use the optional
- // aws.Config parameter to add your extra config.
- //
- // Example:
- // // Create a InputService4ProtocolTest client from just a session.
- // svc := inputservice4protocoltest.New(mySession)
- //
- // // Create a InputService4ProtocolTest client with additional configuration
- // svc := inputservice4protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2"))
- func NewInputService4ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService4ProtocolTest {
- c := p.ClientConfig("inputservice4protocoltest", cfgs...)
- return newInputService4ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion)
- }
- // newClient creates, initializes and returns a new service client instance.
- func newInputService4ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService4ProtocolTest {
- svc := &InputService4ProtocolTest{
- Client: client.New(
- cfg,
- metadata.ClientInfo{
- ServiceName: "inputservice4protocoltest",
- SigningRegion: signingRegion,
- Endpoint: endpoint,
- APIVersion: "2014-01-01",
- },
- handlers,
- ),
- }
- // Handlers
- svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler)
- svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler)
- svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler)
- svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler)
- svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler)
- return svc
- }
- // newRequest creates a new request for a InputService4ProtocolTest operation and runs any
- // custom request initialization.
- func (c *InputService4ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request {
- req := c.NewRequest(op, params, data)
- return req
- }
- const opInputService4TestCaseOperation1 = "OperationName"
- // InputService4TestCaseOperation1Request generates a "aws/request.Request" representing the
- // client's request for the InputService4TestCaseOperation1 operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the InputService4TestCaseOperation1 method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the InputService4TestCaseOperation1Request method.
- // req, resp := client.InputService4TestCaseOperation1Request(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *InputService4ProtocolTest) InputService4TestCaseOperation1Request(input *InputService4TestShapeInputService4TestCaseOperation1Input) (req *request.Request, output *InputService4TestShapeInputService4TestCaseOperation1Output) {
- op := &request.Operation{
- Name: opInputService4TestCaseOperation1,
- HTTPPath: "/",
- }
- if input == nil {
- input = &InputService4TestShapeInputService4TestCaseOperation1Input{}
- }
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- output = &InputService4TestShapeInputService4TestCaseOperation1Output{}
- req.Data = output
- return
- }
- func (c *InputService4ProtocolTest) InputService4TestCaseOperation1(input *InputService4TestShapeInputService4TestCaseOperation1Input) (*InputService4TestShapeInputService4TestCaseOperation1Output, error) {
- req, out := c.InputService4TestCaseOperation1Request(input)
- err := req.Send()
- return out, err
- }
- type InputService4TestShapeInputService4TestCaseOperation1Input struct {
- _ struct{} `type:"structure"`
- ListArg []*string `type:"list"`
- }
- type InputService4TestShapeInputService4TestCaseOperation1Output struct {
- _ struct{} `type:"structure"`
- }
- //The service client's operations are safe to be used concurrently.
- // It is not safe to mutate any of the client's properties though.
- type InputService5ProtocolTest struct {
- *client.Client
- }
- // New creates a new instance of the InputService5ProtocolTest client with a session.
- // If additional configuration is needed for the client instance use the optional
- // aws.Config parameter to add your extra config.
- //
- // Example:
- // // Create a InputService5ProtocolTest client from just a session.
- // svc := inputservice5protocoltest.New(mySession)
- //
- // // Create a InputService5ProtocolTest client with additional configuration
- // svc := inputservice5protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2"))
- func NewInputService5ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService5ProtocolTest {
- c := p.ClientConfig("inputservice5protocoltest", cfgs...)
- return newInputService5ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion)
- }
- // newClient creates, initializes and returns a new service client instance.
- func newInputService5ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService5ProtocolTest {
- svc := &InputService5ProtocolTest{
- Client: client.New(
- cfg,
- metadata.ClientInfo{
- ServiceName: "inputservice5protocoltest",
- SigningRegion: signingRegion,
- Endpoint: endpoint,
- APIVersion: "2014-01-01",
- },
- handlers,
- ),
- }
- // Handlers
- svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler)
- svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler)
- svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler)
- svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler)
- svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler)
- return svc
- }
- // newRequest creates a new request for a InputService5ProtocolTest operation and runs any
- // custom request initialization.
- func (c *InputService5ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request {
- req := c.NewRequest(op, params, data)
- return req
- }
- const opInputService5TestCaseOperation1 = "OperationName"
- // InputService5TestCaseOperation1Request generates a "aws/request.Request" representing the
- // client's request for the InputService5TestCaseOperation1 operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the InputService5TestCaseOperation1 method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the InputService5TestCaseOperation1Request method.
- // req, resp := client.InputService5TestCaseOperation1Request(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *InputService5ProtocolTest) InputService5TestCaseOperation1Request(input *InputService5TestShapeInputService5TestCaseOperation1Input) (req *request.Request, output *InputService5TestShapeInputService5TestCaseOperation1Output) {
- op := &request.Operation{
- Name: opInputService5TestCaseOperation1,
- HTTPPath: "/",
- }
- if input == nil {
- input = &InputService5TestShapeInputService5TestCaseOperation1Input{}
- }
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- output = &InputService5TestShapeInputService5TestCaseOperation1Output{}
- req.Data = output
- return
- }
- func (c *InputService5ProtocolTest) InputService5TestCaseOperation1(input *InputService5TestShapeInputService5TestCaseOperation1Input) (*InputService5TestShapeInputService5TestCaseOperation1Output, error) {
- req, out := c.InputService5TestCaseOperation1Request(input)
- err := req.Send()
- return out, err
- }
- type InputService5TestShapeInputService5TestCaseOperation1Input struct {
- _ struct{} `type:"structure"`
- ListArg []*string `locationName:"ListMemberName" locationNameList:"item" type:"list"`
- }
- type InputService5TestShapeInputService5TestCaseOperation1Output struct {
- _ struct{} `type:"structure"`
- }
- //The service client's operations are safe to be used concurrently.
- // It is not safe to mutate any of the client's properties though.
- type InputService6ProtocolTest struct {
- *client.Client
- }
- // New creates a new instance of the InputService6ProtocolTest client with a session.
- // If additional configuration is needed for the client instance use the optional
- // aws.Config parameter to add your extra config.
- //
- // Example:
- // // Create a InputService6ProtocolTest client from just a session.
- // svc := inputservice6protocoltest.New(mySession)
- //
- // // Create a InputService6ProtocolTest client with additional configuration
- // svc := inputservice6protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2"))
- func NewInputService6ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService6ProtocolTest {
- c := p.ClientConfig("inputservice6protocoltest", cfgs...)
- return newInputService6ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion)
- }
- // newClient creates, initializes and returns a new service client instance.
- func newInputService6ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService6ProtocolTest {
- svc := &InputService6ProtocolTest{
- Client: client.New(
- cfg,
- metadata.ClientInfo{
- ServiceName: "inputservice6protocoltest",
- SigningRegion: signingRegion,
- Endpoint: endpoint,
- APIVersion: "2014-01-01",
- },
- handlers,
- ),
- }
- // Handlers
- svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler)
- svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler)
- svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler)
- svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler)
- svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler)
- return svc
- }
- // newRequest creates a new request for a InputService6ProtocolTest operation and runs any
- // custom request initialization.
- func (c *InputService6ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request {
- req := c.NewRequest(op, params, data)
- return req
- }
- const opInputService6TestCaseOperation1 = "OperationName"
- // InputService6TestCaseOperation1Request generates a "aws/request.Request" representing the
- // client's request for the InputService6TestCaseOperation1 operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the InputService6TestCaseOperation1 method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the InputService6TestCaseOperation1Request method.
- // req, resp := client.InputService6TestCaseOperation1Request(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *InputService6ProtocolTest) InputService6TestCaseOperation1Request(input *InputService6TestShapeInputService6TestCaseOperation1Input) (req *request.Request, output *InputService6TestShapeInputService6TestCaseOperation1Output) {
- op := &request.Operation{
- Name: opInputService6TestCaseOperation1,
- HTTPPath: "/",
- }
- if input == nil {
- input = &InputService6TestShapeInputService6TestCaseOperation1Input{}
- }
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- output = &InputService6TestShapeInputService6TestCaseOperation1Output{}
- req.Data = output
- return
- }
- func (c *InputService6ProtocolTest) InputService6TestCaseOperation1(input *InputService6TestShapeInputService6TestCaseOperation1Input) (*InputService6TestShapeInputService6TestCaseOperation1Output, error) {
- req, out := c.InputService6TestCaseOperation1Request(input)
- err := req.Send()
- return out, err
- }
- type InputService6TestShapeInputService6TestCaseOperation1Input struct {
- _ struct{} `type:"structure"`
- ListArg []*string `locationName:"ListMemberName" queryName:"ListQueryName" locationNameList:"item" type:"list"`
- }
- type InputService6TestShapeInputService6TestCaseOperation1Output struct {
- _ struct{} `type:"structure"`
- }
- //The service client's operations are safe to be used concurrently.
- // It is not safe to mutate any of the client's properties though.
- type InputService7ProtocolTest struct {
- *client.Client
- }
- // New creates a new instance of the InputService7ProtocolTest client with a session.
- // If additional configuration is needed for the client instance use the optional
- // aws.Config parameter to add your extra config.
- //
- // Example:
- // // Create a InputService7ProtocolTest client from just a session.
- // svc := inputservice7protocoltest.New(mySession)
- //
- // // Create a InputService7ProtocolTest client with additional configuration
- // svc := inputservice7protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2"))
- func NewInputService7ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService7ProtocolTest {
- c := p.ClientConfig("inputservice7protocoltest", cfgs...)
- return newInputService7ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion)
- }
- // newClient creates, initializes and returns a new service client instance.
- func newInputService7ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService7ProtocolTest {
- svc := &InputService7ProtocolTest{
- Client: client.New(
- cfg,
- metadata.ClientInfo{
- ServiceName: "inputservice7protocoltest",
- SigningRegion: signingRegion,
- Endpoint: endpoint,
- APIVersion: "2014-01-01",
- },
- handlers,
- ),
- }
- // Handlers
- svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler)
- svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler)
- svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler)
- svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler)
- svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler)
- return svc
- }
- // newRequest creates a new request for a InputService7ProtocolTest operation and runs any
- // custom request initialization.
- func (c *InputService7ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request {
- req := c.NewRequest(op, params, data)
- return req
- }
- const opInputService7TestCaseOperation1 = "OperationName"
- // InputService7TestCaseOperation1Request generates a "aws/request.Request" representing the
- // client's request for the InputService7TestCaseOperation1 operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the InputService7TestCaseOperation1 method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the InputService7TestCaseOperation1Request method.
- // req, resp := client.InputService7TestCaseOperation1Request(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *InputService7ProtocolTest) InputService7TestCaseOperation1Request(input *InputService7TestShapeInputService7TestCaseOperation1Input) (req *request.Request, output *InputService7TestShapeInputService7TestCaseOperation1Output) {
- op := &request.Operation{
- Name: opInputService7TestCaseOperation1,
- HTTPPath: "/",
- }
- if input == nil {
- input = &InputService7TestShapeInputService7TestCaseOperation1Input{}
- }
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- output = &InputService7TestShapeInputService7TestCaseOperation1Output{}
- req.Data = output
- return
- }
- func (c *InputService7ProtocolTest) InputService7TestCaseOperation1(input *InputService7TestShapeInputService7TestCaseOperation1Input) (*InputService7TestShapeInputService7TestCaseOperation1Output, error) {
- req, out := c.InputService7TestCaseOperation1Request(input)
- err := req.Send()
- return out, err
- }
- type InputService7TestShapeInputService7TestCaseOperation1Input struct {
- _ struct{} `type:"structure"`
- // BlobArg is automatically base64 encoded/decoded by the SDK.
- BlobArg []byte `type:"blob"`
- }
- type InputService7TestShapeInputService7TestCaseOperation1Output struct {
- _ struct{} `type:"structure"`
- }
- //The service client's operations are safe to be used concurrently.
- // It is not safe to mutate any of the client's properties though.
- type InputService8ProtocolTest struct {
- *client.Client
- }
- // New creates a new instance of the InputService8ProtocolTest client with a session.
- // If additional configuration is needed for the client instance use the optional
- // aws.Config parameter to add your extra config.
- //
- // Example:
- // // Create a InputService8ProtocolTest client from just a session.
- // svc := inputservice8protocoltest.New(mySession)
- //
- // // Create a InputService8ProtocolTest client with additional configuration
- // svc := inputservice8protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2"))
- func NewInputService8ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService8ProtocolTest {
- c := p.ClientConfig("inputservice8protocoltest", cfgs...)
- return newInputService8ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion)
- }
- // newClient creates, initializes and returns a new service client instance.
- func newInputService8ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService8ProtocolTest {
- svc := &InputService8ProtocolTest{
- Client: client.New(
- cfg,
- metadata.ClientInfo{
- ServiceName: "inputservice8protocoltest",
- SigningRegion: signingRegion,
- Endpoint: endpoint,
- APIVersion: "2014-01-01",
- },
- handlers,
- ),
- }
- // Handlers
- svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler)
- svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler)
- svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler)
- svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler)
- svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler)
- return svc
- }
- // newRequest creates a new request for a InputService8ProtocolTest operation and runs any
- // custom request initialization.
- func (c *InputService8ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request {
- req := c.NewRequest(op, params, data)
- return req
- }
- const opInputService8TestCaseOperation1 = "OperationName"
- // InputService8TestCaseOperation1Request generates a "aws/request.Request" representing the
- // client's request for the InputService8TestCaseOperation1 operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the InputService8TestCaseOperation1 method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the InputService8TestCaseOperation1Request method.
- // req, resp := client.InputService8TestCaseOperation1Request(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *InputService8ProtocolTest) InputService8TestCaseOperation1Request(input *InputService8TestShapeInputService8TestCaseOperation1Input) (req *request.Request, output *InputService8TestShapeInputService8TestCaseOperation1Output) {
- op := &request.Operation{
- Name: opInputService8TestCaseOperation1,
- HTTPPath: "/",
- }
- if input == nil {
- input = &InputService8TestShapeInputService8TestCaseOperation1Input{}
- }
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- output = &InputService8TestShapeInputService8TestCaseOperation1Output{}
- req.Data = output
- return
- }
- func (c *InputService8ProtocolTest) InputService8TestCaseOperation1(input *InputService8TestShapeInputService8TestCaseOperation1Input) (*InputService8TestShapeInputService8TestCaseOperation1Output, error) {
- req, out := c.InputService8TestCaseOperation1Request(input)
- err := req.Send()
- return out, err
- }
- type InputService8TestShapeInputService8TestCaseOperation1Input struct {
- _ struct{} `type:"structure"`
- TimeArg *time.Time `type:"timestamp" timestampFormat:"iso8601"`
- }
- type InputService8TestShapeInputService8TestCaseOperation1Output struct {
- _ struct{} `type:"structure"`
- }
- //The service client's operations are safe to be used concurrently.
- // It is not safe to mutate any of the client's properties though.
- type InputService9ProtocolTest struct {
- *client.Client
- }
- // New creates a new instance of the InputService9ProtocolTest client with a session.
- // If additional configuration is needed for the client instance use the optional
- // aws.Config parameter to add your extra config.
- //
- // Example:
- // // Create a InputService9ProtocolTest client from just a session.
- // svc := inputservice9protocoltest.New(mySession)
- //
- // // Create a InputService9ProtocolTest client with additional configuration
- // svc := inputservice9protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2"))
- func NewInputService9ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService9ProtocolTest {
- c := p.ClientConfig("inputservice9protocoltest", cfgs...)
- return newInputService9ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion)
- }
- // newClient creates, initializes and returns a new service client instance.
- func newInputService9ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService9ProtocolTest {
- svc := &InputService9ProtocolTest{
- Client: client.New(
- cfg,
- metadata.ClientInfo{
- ServiceName: "inputservice9protocoltest",
- SigningRegion: signingRegion,
- Endpoint: endpoint,
- APIVersion: "2014-01-01",
- },
- handlers,
- ),
- }
- // Handlers
- svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler)
- svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler)
- svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler)
- svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler)
- svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler)
- return svc
- }
- // newRequest creates a new request for a InputService9ProtocolTest operation and runs any
- // custom request initialization.
- func (c *InputService9ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request {
- req := c.NewRequest(op, params, data)
- return req
- }
- const opInputService9TestCaseOperation1 = "OperationName"
- // InputService9TestCaseOperation1Request generates a "aws/request.Request" representing the
- // client's request for the InputService9TestCaseOperation1 operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the InputService9TestCaseOperation1 method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the InputService9TestCaseOperation1Request method.
- // req, resp := client.InputService9TestCaseOperation1Request(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *InputService9ProtocolTest) InputService9TestCaseOperation1Request(input *InputService9TestShapeInputShape) (req *request.Request, output *InputService9TestShapeInputService9TestCaseOperation1Output) {
- op := &request.Operation{
- Name: opInputService9TestCaseOperation1,
- HTTPMethod: "POST",
- HTTPPath: "/path",
- }
- if input == nil {
- input = &InputService9TestShapeInputShape{}
- }
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- 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 "aws/request.Request" representing the
- // client's request for the InputService9TestCaseOperation2 operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the InputService9TestCaseOperation2 method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the InputService9TestCaseOperation2Request method.
- // req, resp := client.InputService9TestCaseOperation2Request(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *InputService9ProtocolTest) InputService9TestCaseOperation2Request(input *InputService9TestShapeInputShape) (req *request.Request, output *InputService9TestShapeInputService9TestCaseOperation2Output) {
- op := &request.Operation{
- Name: opInputService9TestCaseOperation2,
- HTTPMethod: "POST",
- HTTPPath: "/path",
- }
- if input == nil {
- input = &InputService9TestShapeInputShape{}
- }
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- 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
- }
- type InputService9TestShapeInputService9TestCaseOperation1Output struct {
- _ struct{} `type:"structure"`
- }
- type InputService9TestShapeInputService9TestCaseOperation2Output struct {
- _ struct{} `type:"structure"`
- }
- type InputService9TestShapeInputShape struct {
- _ struct{} `type:"structure"`
- Token *string `type:"string" idempotencyToken:"true"`
- }
- //
- // Tests begin here
- //
- func TestInputService1ProtocolTestScalarMembersCase1(t *testing.T) {
- svc := NewInputService1ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService1TestShapeInputService1TestCaseOperation1Input{
- Bar: aws.String("val2"),
- Foo: aws.String("val1"),
- }
- req, _ := svc.InputService1TestCaseOperation1Request(input)
- r := req.HTTPRequest
- // build request
- ec2query.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertQuery(t, `Action=OperationName&Bar=val2&Foo=val1&Version=2014-01-01`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/", r.URL.String())
- // assert headers
- }
- func TestInputService2ProtocolTestStructureWithLocationNameAndQueryNameAppliedToMembersCase1(t *testing.T) {
- svc := NewInputService2ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService2TestShapeInputService2TestCaseOperation1Input{
- Bar: aws.String("val2"),
- Foo: aws.String("val1"),
- Yuck: aws.String("val3"),
- }
- req, _ := svc.InputService2TestCaseOperation1Request(input)
- r := req.HTTPRequest
- // build request
- ec2query.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertQuery(t, `Action=OperationName&BarLocationName=val2&Foo=val1&Version=2014-01-01&yuckQueryName=val3`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/", r.URL.String())
- // assert headers
- }
- func TestInputService3ProtocolTestNestedStructureMembersCase1(t *testing.T) {
- svc := NewInputService3ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService3TestShapeInputService3TestCaseOperation1Input{
- StructArg: &InputService3TestShapeStructType{
- ScalarArg: aws.String("foo"),
- },
- }
- req, _ := svc.InputService3TestCaseOperation1Request(input)
- r := req.HTTPRequest
- // build request
- ec2query.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertQuery(t, `Action=OperationName&Struct.Scalar=foo&Version=2014-01-01`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/", r.URL.String())
- // assert headers
- }
- func TestInputService4ProtocolTestListTypesCase1(t *testing.T) {
- svc := NewInputService4ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService4TestShapeInputService4TestCaseOperation1Input{
- ListArg: []*string{
- aws.String("foo"),
- aws.String("bar"),
- aws.String("baz"),
- },
- }
- req, _ := svc.InputService4TestCaseOperation1Request(input)
- r := req.HTTPRequest
- // build request
- ec2query.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertQuery(t, `Action=OperationName&ListArg.1=foo&ListArg.2=bar&ListArg.3=baz&Version=2014-01-01`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/", r.URL.String())
- // assert headers
- }
- func TestInputService5ProtocolTestListWithLocationNameAppliedToMemberCase1(t *testing.T) {
- svc := NewInputService5ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService5TestShapeInputService5TestCaseOperation1Input{
- ListArg: []*string{
- aws.String("a"),
- aws.String("b"),
- aws.String("c"),
- },
- }
- req, _ := svc.InputService5TestCaseOperation1Request(input)
- r := req.HTTPRequest
- // build request
- ec2query.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertQuery(t, `Action=OperationName&ListMemberName.1=a&ListMemberName.2=b&ListMemberName.3=c&Version=2014-01-01`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/", r.URL.String())
- // assert headers
- }
- func TestInputService6ProtocolTestListWithLocationNameAndQueryNameCase1(t *testing.T) {
- svc := NewInputService6ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService6TestShapeInputService6TestCaseOperation1Input{
- ListArg: []*string{
- aws.String("a"),
- aws.String("b"),
- aws.String("c"),
- },
- }
- req, _ := svc.InputService6TestCaseOperation1Request(input)
- r := req.HTTPRequest
- // build request
- ec2query.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertQuery(t, `Action=OperationName&ListQueryName.1=a&ListQueryName.2=b&ListQueryName.3=c&Version=2014-01-01`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/", r.URL.String())
- // assert headers
- }
- func TestInputService7ProtocolTestBase64EncodedBlobsCase1(t *testing.T) {
- svc := NewInputService7ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService7TestShapeInputService7TestCaseOperation1Input{
- BlobArg: []byte("foo"),
- }
- req, _ := svc.InputService7TestCaseOperation1Request(input)
- r := req.HTTPRequest
- // build request
- ec2query.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertQuery(t, `Action=OperationName&BlobArg=Zm9v&Version=2014-01-01`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/", r.URL.String())
- // assert headers
- }
- func TestInputService8ProtocolTestTimestampValuesCase1(t *testing.T) {
- svc := NewInputService8ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService8TestShapeInputService8TestCaseOperation1Input{
- TimeArg: aws.Time(time.Unix(1422172800, 0)),
- }
- req, _ := svc.InputService8TestCaseOperation1Request(input)
- r := req.HTTPRequest
- // build request
- ec2query.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertQuery(t, `Action=OperationName&TimeArg=2015-01-25T08%3A00%3A00Z&Version=2014-01-01`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/", r.URL.String())
- // assert headers
- }
- func TestInputService9ProtocolTestIdempotencyTokenAutoFillCase1(t *testing.T) {
- svc := NewInputService9ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService9TestShapeInputShape{
- Token: aws.String("abc123"),
- }
- req, _ := svc.InputService9TestCaseOperation1Request(input)
- r := req.HTTPRequest
- // build request
- ec2query.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertQuery(t, `Token=abc123`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/path", r.URL.String())
- // assert headers
- }
- func TestInputService9ProtocolTestIdempotencyTokenAutoFillCase2(t *testing.T) {
- svc := NewInputService9ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService9TestShapeInputShape{}
- req, _ := svc.InputService9TestCaseOperation2Request(input)
- r := req.HTTPRequest
- // build request
- ec2query.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertQuery(t, `Token=00000000-0000-4000-8000-000000000000`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/path", r.URL.String())
- // assert headers
- }
|