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
|
//go:build go1.8
// +build go1.8
package request_test
import (
"bytes"
"io"
"net/http"
"net/http/httptest"
"strings"
"testing"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/request"
"github.com/aws/aws-sdk-go/awstesting"
"github.com/aws/aws-sdk-go/awstesting/unit"
)
func TestResetBody_WithEmptyBody(t *testing.T) {
r := request.Request{
HTTPRequest: &http.Request{},
}
reader := strings.NewReader("")
r.Body = reader
r.ResetBody()
if a, e := r.HTTPRequest.Body, http.NoBody; a != e {
t.Errorf("expected request body to be set to reader, got %#v",
r.HTTPRequest.Body)
}
}
func TestRequest_FollowPUTRedirects(t *testing.T) {
const bodySize = 1024
redirectHit := 0
endpointHit := 0
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
switch r.URL.Path {
case "/redirect-me":
u := *r.URL
u.Path = "/endpoint"
w.Header().Set("Location", u.String())
w.WriteHeader(307)
redirectHit++
case "/endpoint":
b := bytes.Buffer{}
io.Copy(&b, r.Body)
r.Body.Close()
if e, a := bodySize, b.Len(); e != a {
t.Fatalf("expect %d body size, got %d", e, a)
}
endpointHit++
default:
t.Fatalf("unexpected endpoint used, %q", r.URL.String())
}
}))
defer server.Close()
svc := awstesting.NewClient(&aws.Config{
Region: unit.Session.Config.Region,
DisableSSL: aws.Bool(true),
Endpoint: aws.String(server.URL),
})
req := svc.NewRequest(&request.Operation{
Name: "Operation",
HTTPMethod: "PUT",
HTTPPath: "/redirect-me",
}, &struct{}{}, &struct{}{})
req.SetReaderBody(bytes.NewReader(make([]byte, bodySize)))
err := req.Send()
if err != nil {
t.Errorf("expect no error, got %v", err)
}
if e, a := 1, redirectHit; e != a {
t.Errorf("expect %d redirect hits, got %d", e, a)
}
if e, a := 1, endpointHit; e != a {
t.Errorf("expect %d endpoint hits, got %d", e, a)
}
}
func TestNewRequest_JoinEndpointWithOperationPathQuery(t *testing.T) {
cases := map[string]struct {
HTTPPath string
Endpoint *string
ExpectQuery string
ExpectPath string
}{
"no op HTTP Path": {
HTTPPath: "",
Endpoint: aws.String("https://foo.bar.aws/foo?bar=Baz"),
ExpectPath: "/foo",
ExpectQuery: "bar=Baz",
},
"no trailing slash": {
HTTPPath: "/",
Endpoint: aws.String("https://foo.bar.aws"),
ExpectPath: "/",
ExpectQuery: "",
},
"set query": {
HTTPPath: "/?Foo=bar",
Endpoint: aws.String("https://foo.bar.aws"),
ExpectPath: "/",
ExpectQuery: "Foo=bar",
},
"squash query": {
HTTPPath: "/?Foo=bar",
Endpoint: aws.String("https://foo.bar.aws/?bar=Foo"),
ExpectPath: "/",
ExpectQuery: "Foo=bar",
},
"trailing slash": {
HTTPPath: "/",
Endpoint: aws.String("https://foo.bar.aws/"),
ExpectPath: "/",
ExpectQuery: "",
},
"trailing slash set query": {
HTTPPath: "/?Foo=bar",
Endpoint: aws.String("https://foo.bar.aws/"),
ExpectPath: "/",
ExpectQuery: "Foo=bar",
},
}
for name, c := range cases {
t.Run(name, func(t *testing.T) {
client := awstesting.NewClient(&aws.Config{
Endpoint: c.Endpoint,
})
client.Handlers.Clear()
r := client.NewRequest(&request.Operation{
Name: "FooBar",
HTTPMethod: "GET",
HTTPPath: c.HTTPPath,
}, nil, nil)
if e, a := c.ExpectPath, r.HTTPRequest.URL.Path; e != a {
t.Errorf("expect %v path, got %v", e, a)
}
if e, a := c.ExpectQuery, r.HTTPRequest.URL.RawQuery; e != a {
t.Errorf("expect %v query, got %v", e, a)
}
})
}
}
|