1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package ec2query
import (
"bytes"
"context"
"github.com/aws/aws-sdk-go-v2/aws"
smithydocument "github.com/aws/smithy-go/document"
"github.com/aws/smithy-go/middleware"
"github.com/aws/smithy-go/ptr"
smithyrand "github.com/aws/smithy-go/rand"
smithytesting "github.com/aws/smithy-go/testing"
smithytime "github.com/aws/smithy-go/time"
smithyhttp "github.com/aws/smithy-go/transport/http"
"github.com/google/go-cmp/cmp"
"github.com/google/go-cmp/cmp/cmpopts"
"io/ioutil"
"math"
"net/http"
"testing"
)
func TestClient_XmlTimestamps_awsEc2queryDeserialize(t *testing.T) {
cases := map[string]struct {
StatusCode int
Header http.Header
BodyMediaType string
Body []byte
ExpectResult *XmlTimestampsOutput
}{
// Tests how normal timestamps are serialized
"Ec2XmlTimestamps": {
StatusCode: 200,
Header: http.Header{
"Content-Type": []string{"text/xml;charset=UTF-8"},
},
BodyMediaType: "application/xml",
Body: []byte(`<XmlTimestampsResponse xmlns="https://example.com/">
<normal>2014-04-29T18:30:38Z</normal>
<RequestId>requestid</RequestId>
</XmlTimestampsResponse>
`),
ExpectResult: &XmlTimestampsOutput{
Normal: ptr.Time(smithytime.ParseEpochSeconds(1398796238)),
},
},
// Ensures that the timestampFormat of date-time works like normal timestamps
"Ec2XmlTimestampsWithDateTimeFormat": {
StatusCode: 200,
Header: http.Header{
"Content-Type": []string{"text/xml;charset=UTF-8"},
},
BodyMediaType: "application/xml",
Body: []byte(`<XmlTimestampsResponse xmlns="https://example.com/">
<dateTime>2014-04-29T18:30:38Z</dateTime>
<RequestId>requestid</RequestId>
</XmlTimestampsResponse>
`),
ExpectResult: &XmlTimestampsOutput{
DateTime: ptr.Time(smithytime.ParseEpochSeconds(1398796238)),
},
},
// Ensures that the timestampFormat of date-time on the target shape works like
// normal timestamps
"Ec2XmlTimestampsWithDateTimeOnTargetFormat": {
StatusCode: 200,
Header: http.Header{
"Content-Type": []string{"text/xml;charset=UTF-8"},
},
BodyMediaType: "application/xml",
Body: []byte(`<XmlTimestampsResponse xmlns="https://example.com/">
<dateTimeOnTarget>2014-04-29T18:30:38Z</dateTimeOnTarget>
<RequestId>requestid</RequestId>
</XmlTimestampsResponse>
`),
ExpectResult: &XmlTimestampsOutput{
DateTimeOnTarget: ptr.Time(smithytime.ParseEpochSeconds(1398796238)),
},
},
// Ensures that the timestampFormat of epoch-seconds works
"Ec2XmlTimestampsWithEpochSecondsFormat": {
StatusCode: 200,
Header: http.Header{
"Content-Type": []string{"text/xml;charset=UTF-8"},
},
BodyMediaType: "application/xml",
Body: []byte(`<XmlTimestampsResponse xmlns="https://example.com/">
<epochSeconds>1398796238</epochSeconds>
<RequestId>requestid</RequestId>
</XmlTimestampsResponse>
`),
ExpectResult: &XmlTimestampsOutput{
EpochSeconds: ptr.Time(smithytime.ParseEpochSeconds(1398796238)),
},
},
// Ensures that the timestampFormat of epoch-seconds on the target shape works
"Ec2XmlTimestampsWithEpochSecondsOnTargetFormat": {
StatusCode: 200,
Header: http.Header{
"Content-Type": []string{"text/xml;charset=UTF-8"},
},
BodyMediaType: "application/xml",
Body: []byte(`<XmlTimestampsResponse xmlns="https://example.com/">
<epochSecondsOnTarget>1398796238</epochSecondsOnTarget>
<RequestId>requestid</RequestId>
</XmlTimestampsResponse>
`),
ExpectResult: &XmlTimestampsOutput{
EpochSecondsOnTarget: ptr.Time(smithytime.ParseEpochSeconds(1398796238)),
},
},
// Ensures that the timestampFormat of http-date works
"Ec2XmlTimestampsWithHttpDateFormat": {
StatusCode: 200,
Header: http.Header{
"Content-Type": []string{"text/xml;charset=UTF-8"},
},
BodyMediaType: "application/xml",
Body: []byte(`<XmlTimestampsResponse xmlns="https://example.com/">
<httpDate>Tue, 29 Apr 2014 18:30:38 GMT</httpDate>
<RequestId>requestid</RequestId>
</XmlTimestampsResponse>
`),
ExpectResult: &XmlTimestampsOutput{
HttpDate: ptr.Time(smithytime.ParseEpochSeconds(1398796238)),
},
},
// Ensures that the timestampFormat of http-date on the target shape works
"Ec2XmlTimestampsWithHttpDateOnTargetFormat": {
StatusCode: 200,
Header: http.Header{
"Content-Type": []string{"text/xml;charset=UTF-8"},
},
BodyMediaType: "application/xml",
Body: []byte(`<XmlTimestampsResponse xmlns="https://example.com/">
<httpDateOnTarget>Tue, 29 Apr 2014 18:30:38 GMT</httpDateOnTarget>
<RequestId>requestid</RequestId>
</XmlTimestampsResponse>
`),
ExpectResult: &XmlTimestampsOutput{
HttpDateOnTarget: ptr.Time(smithytime.ParseEpochSeconds(1398796238)),
},
},
}
for name, c := range cases {
t.Run(name, func(t *testing.T) {
serverURL := "http://localhost:8888/"
client := New(Options{
HTTPClient: smithyhttp.ClientDoFunc(func(r *http.Request) (*http.Response, error) {
headers := http.Header{}
for k, vs := range c.Header {
for _, v := range vs {
headers.Add(k, v)
}
}
if len(c.BodyMediaType) != 0 && len(headers.Values("Content-Type")) == 0 {
headers.Set("Content-Type", c.BodyMediaType)
}
response := &http.Response{
StatusCode: c.StatusCode,
Header: headers,
Request: r,
}
if len(c.Body) != 0 {
response.ContentLength = int64(len(c.Body))
response.Body = ioutil.NopCloser(bytes.NewReader(c.Body))
} else {
response.Body = http.NoBody
}
return response, nil
}),
APIOptions: []func(*middleware.Stack) error{
func(s *middleware.Stack) error {
s.Finalize.Clear()
s.Initialize.Remove(`OperationInputValidation`)
return nil
},
},
EndpointResolver: EndpointResolverFunc(func(region string, options EndpointResolverOptions) (e aws.Endpoint, err error) {
e.URL = serverURL
e.SigningRegion = "us-west-2"
return e, err
}),
IdempotencyTokenProvider: smithyrand.NewUUIDIdempotencyToken(&smithytesting.ByteLoop{}),
Region: "us-west-2",
})
var params XmlTimestampsInput
result, err := client.XmlTimestamps(context.Background(), ¶ms)
if err != nil {
t.Fatalf("expect nil err, got %v", err)
}
if result == nil {
t.Fatalf("expect not nil result")
}
opts := cmp.Options{
cmpopts.IgnoreUnexported(
middleware.Metadata{},
),
cmp.FilterValues(func(x, y float64) bool {
return math.IsNaN(x) && math.IsNaN(y)
}, cmp.Comparer(func(_, _ interface{}) bool { return true })),
cmp.FilterValues(func(x, y float32) bool {
return math.IsNaN(float64(x)) && math.IsNaN(float64(y))
}, cmp.Comparer(func(_, _ interface{}) bool { return true })),
cmpopts.IgnoreTypes(smithydocument.NoSerde{}),
}
if err := smithytesting.CompareValues(c.ExpectResult, result, opts...); err != nil {
t.Errorf("expect c.ExpectResult value match:\n%v", err)
}
})
}
}
|