Moved to google.golang.org/genproto/googleapis/api/annotations
Fixes #52
This commit is contained in:
150
vendor/github.com/go-kit/kit/transport/http/client.go
generated
vendored
Normal file
150
vendor/github.com/go-kit/kit/transport/http/client.go
generated
vendored
Normal file
@@ -0,0 +1,150 @@
|
||||
package http
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"context"
|
||||
"encoding/json"
|
||||
"encoding/xml"
|
||||
"io/ioutil"
|
||||
"net/http"
|
||||
"net/url"
|
||||
|
||||
"golang.org/x/net/context/ctxhttp"
|
||||
|
||||
"github.com/go-kit/kit/endpoint"
|
||||
)
|
||||
|
||||
// Client wraps a URL and provides a method that implements endpoint.Endpoint.
|
||||
type Client struct {
|
||||
client *http.Client
|
||||
method string
|
||||
tgt *url.URL
|
||||
enc EncodeRequestFunc
|
||||
dec DecodeResponseFunc
|
||||
before []RequestFunc
|
||||
after []ClientResponseFunc
|
||||
bufferedStream bool
|
||||
}
|
||||
|
||||
// NewClient constructs a usable Client for a single remote method.
|
||||
func NewClient(
|
||||
method string,
|
||||
tgt *url.URL,
|
||||
enc EncodeRequestFunc,
|
||||
dec DecodeResponseFunc,
|
||||
options ...ClientOption,
|
||||
) *Client {
|
||||
c := &Client{
|
||||
client: http.DefaultClient,
|
||||
method: method,
|
||||
tgt: tgt,
|
||||
enc: enc,
|
||||
dec: dec,
|
||||
before: []RequestFunc{},
|
||||
after: []ClientResponseFunc{},
|
||||
bufferedStream: false,
|
||||
}
|
||||
for _, option := range options {
|
||||
option(c)
|
||||
}
|
||||
return c
|
||||
}
|
||||
|
||||
// ClientOption sets an optional parameter for clients.
|
||||
type ClientOption func(*Client)
|
||||
|
||||
// SetClient sets the underlying HTTP client used for requests.
|
||||
// By default, http.DefaultClient is used.
|
||||
func SetClient(client *http.Client) ClientOption {
|
||||
return func(c *Client) { c.client = client }
|
||||
}
|
||||
|
||||
// ClientBefore sets the RequestFuncs that are applied to the outgoing HTTP
|
||||
// request before it's invoked.
|
||||
func ClientBefore(before ...RequestFunc) ClientOption {
|
||||
return func(c *Client) { c.before = append(c.before, before...) }
|
||||
}
|
||||
|
||||
// ClientAfter sets the ClientResponseFuncs applied to the incoming HTTP
|
||||
// request prior to it being decoded. This is useful for obtaining anything off
|
||||
// of the response and adding onto the context prior to decoding.
|
||||
func ClientAfter(after ...ClientResponseFunc) ClientOption {
|
||||
return func(c *Client) { c.after = append(c.after, after...) }
|
||||
}
|
||||
|
||||
// BufferedStream sets whether the Response.Body is left open, allowing it
|
||||
// to be read from later. Useful for transporting a file as a buffered stream.
|
||||
func BufferedStream(buffered bool) ClientOption {
|
||||
return func(c *Client) { c.bufferedStream = buffered }
|
||||
}
|
||||
|
||||
// Endpoint returns a usable endpoint that invokes the remote endpoint.
|
||||
func (c Client) Endpoint() endpoint.Endpoint {
|
||||
return func(ctx context.Context, request interface{}) (interface{}, error) {
|
||||
ctx, cancel := context.WithCancel(ctx)
|
||||
defer cancel()
|
||||
|
||||
req, err := http.NewRequest(c.method, c.tgt.String(), nil)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
if err = c.enc(ctx, req, request); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
for _, f := range c.before {
|
||||
ctx = f(ctx, req)
|
||||
}
|
||||
|
||||
resp, err := ctxhttp.Do(ctx, c.client, req)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if !c.bufferedStream {
|
||||
defer resp.Body.Close()
|
||||
}
|
||||
|
||||
for _, f := range c.after {
|
||||
ctx = f(ctx, resp)
|
||||
}
|
||||
|
||||
response, err := c.dec(ctx, resp)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return response, nil
|
||||
}
|
||||
}
|
||||
|
||||
// EncodeJSONRequest is an EncodeRequestFunc that serializes the request as a
|
||||
// JSON object to the Request body. Many JSON-over-HTTP services can use it as
|
||||
// a sensible default. If the request implements Headerer, the provided headers
|
||||
// will be applied to the request.
|
||||
func EncodeJSONRequest(c context.Context, r *http.Request, request interface{}) error {
|
||||
r.Header.Set("Content-Type", "application/json; charset=utf-8")
|
||||
if headerer, ok := request.(Headerer); ok {
|
||||
for k := range headerer.Headers() {
|
||||
r.Header.Set(k, headerer.Headers().Get(k))
|
||||
}
|
||||
}
|
||||
var b bytes.Buffer
|
||||
r.Body = ioutil.NopCloser(&b)
|
||||
return json.NewEncoder(&b).Encode(request)
|
||||
}
|
||||
|
||||
// EncodeXMLRequest is an EncodeRequestFunc that serializes the request as a
|
||||
// XML object to the Request body. If the request implements Headerer,
|
||||
// the provided headers will be applied to the request.
|
||||
func EncodeXMLRequest(c context.Context, r *http.Request, request interface{}) error {
|
||||
r.Header.Set("Content-Type", "text/xml; charset=utf-8")
|
||||
if headerer, ok := request.(Headerer); ok {
|
||||
for k := range headerer.Headers() {
|
||||
r.Header.Set(k, headerer.Headers().Get(k))
|
||||
}
|
||||
}
|
||||
var b bytes.Buffer
|
||||
r.Body = ioutil.NopCloser(&b)
|
||||
return xml.NewEncoder(&b).Encode(request)
|
||||
}
|
217
vendor/github.com/go-kit/kit/transport/http/client_test.go
generated
vendored
Normal file
217
vendor/github.com/go-kit/kit/transport/http/client_test.go
generated
vendored
Normal file
@@ -0,0 +1,217 @@
|
||||
package http_test
|
||||
|
||||
import (
|
||||
"context"
|
||||
"io"
|
||||
"io/ioutil"
|
||||
"net/http"
|
||||
"net/http/httptest"
|
||||
"net/url"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
httptransport "github.com/go-kit/kit/transport/http"
|
||||
)
|
||||
|
||||
type TestResponse struct {
|
||||
Body io.ReadCloser
|
||||
String string
|
||||
}
|
||||
|
||||
func TestHTTPClient(t *testing.T) {
|
||||
var (
|
||||
testbody = "testbody"
|
||||
encode = func(context.Context, *http.Request, interface{}) error { return nil }
|
||||
decode = func(_ context.Context, r *http.Response) (interface{}, error) {
|
||||
buffer := make([]byte, len(testbody))
|
||||
r.Body.Read(buffer)
|
||||
return TestResponse{r.Body, string(buffer)}, nil
|
||||
}
|
||||
headers = make(chan string, 1)
|
||||
headerKey = "X-Foo"
|
||||
headerVal = "abcde"
|
||||
afterHeaderKey = "X-The-Dude"
|
||||
afterHeaderVal = "Abides"
|
||||
afterVal = ""
|
||||
afterFunc = func(ctx context.Context, r *http.Response) context.Context {
|
||||
afterVal = r.Header.Get(afterHeaderKey)
|
||||
return ctx
|
||||
}
|
||||
)
|
||||
|
||||
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
headers <- r.Header.Get(headerKey)
|
||||
w.Header().Set(afterHeaderKey, afterHeaderVal)
|
||||
w.WriteHeader(http.StatusOK)
|
||||
w.Write([]byte(testbody))
|
||||
}))
|
||||
|
||||
client := httptransport.NewClient(
|
||||
"GET",
|
||||
mustParse(server.URL),
|
||||
encode,
|
||||
decode,
|
||||
httptransport.ClientBefore(httptransport.SetRequestHeader(headerKey, headerVal)),
|
||||
httptransport.ClientAfter(afterFunc),
|
||||
)
|
||||
|
||||
res, err := client.Endpoint()(context.Background(), struct{}{})
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
var have string
|
||||
select {
|
||||
case have = <-headers:
|
||||
case <-time.After(time.Millisecond):
|
||||
t.Fatalf("timeout waiting for %s", headerKey)
|
||||
}
|
||||
// Check that Request Header was successfully received
|
||||
if want := headerVal; want != have {
|
||||
t.Errorf("want %q, have %q", want, have)
|
||||
}
|
||||
|
||||
// Check that Response header set from server was received in SetClientAfter
|
||||
if want, have := afterVal, afterHeaderVal; want != have {
|
||||
t.Errorf("want %q, have %q", want, have)
|
||||
}
|
||||
|
||||
// Check that the response was successfully decoded
|
||||
response, ok := res.(TestResponse)
|
||||
if !ok {
|
||||
t.Fatal("response should be TestResponse")
|
||||
}
|
||||
if want, have := testbody, response.String; want != have {
|
||||
t.Errorf("want %q, have %q", want, have)
|
||||
}
|
||||
|
||||
// Check that response body was closed
|
||||
b := make([]byte, 1)
|
||||
_, err = response.Body.Read(b)
|
||||
if err == nil {
|
||||
t.Fatal("wanted error, got none")
|
||||
}
|
||||
if doNotWant, have := io.EOF, err; doNotWant == have {
|
||||
t.Errorf("do not want %q, have %q", doNotWant, have)
|
||||
}
|
||||
}
|
||||
|
||||
func TestHTTPClientBufferedStream(t *testing.T) {
|
||||
var (
|
||||
testbody = "testbody"
|
||||
encode = func(context.Context, *http.Request, interface{}) error { return nil }
|
||||
decode = func(_ context.Context, r *http.Response) (interface{}, error) {
|
||||
return TestResponse{r.Body, ""}, nil
|
||||
}
|
||||
)
|
||||
|
||||
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
w.WriteHeader(http.StatusOK)
|
||||
w.Write([]byte(testbody))
|
||||
}))
|
||||
|
||||
client := httptransport.NewClient(
|
||||
"GET",
|
||||
mustParse(server.URL),
|
||||
encode,
|
||||
decode,
|
||||
httptransport.BufferedStream(true),
|
||||
)
|
||||
|
||||
res, err := client.Endpoint()(context.Background(), struct{}{})
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
// Check that the response was successfully decoded
|
||||
response, ok := res.(TestResponse)
|
||||
if !ok {
|
||||
t.Fatal("response should be TestResponse")
|
||||
}
|
||||
|
||||
// Check that response body was NOT closed
|
||||
b := make([]byte, len(testbody))
|
||||
_, err = response.Body.Read(b)
|
||||
if want, have := io.EOF, err; have != want {
|
||||
t.Fatalf("want %q, have %q", want, have)
|
||||
}
|
||||
if want, have := testbody, string(b); want != have {
|
||||
t.Errorf("want %q, have %q", want, have)
|
||||
}
|
||||
}
|
||||
|
||||
func TestEncodeJSONRequest(t *testing.T) {
|
||||
var header http.Header
|
||||
var body string
|
||||
|
||||
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
b, err := ioutil.ReadAll(r.Body)
|
||||
if err != nil && err != io.EOF {
|
||||
t.Fatal(err)
|
||||
}
|
||||
header = r.Header
|
||||
body = string(b)
|
||||
}))
|
||||
|
||||
defer server.Close()
|
||||
|
||||
serverURL, err := url.Parse(server.URL)
|
||||
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
client := httptransport.NewClient(
|
||||
"POST",
|
||||
serverURL,
|
||||
httptransport.EncodeJSONRequest,
|
||||
func(context.Context, *http.Response) (interface{}, error) { return nil, nil },
|
||||
).Endpoint()
|
||||
|
||||
for _, test := range []struct {
|
||||
value interface{}
|
||||
body string
|
||||
}{
|
||||
{nil, "null\n"},
|
||||
{12, "12\n"},
|
||||
{1.2, "1.2\n"},
|
||||
{true, "true\n"},
|
||||
{"test", "\"test\"\n"},
|
||||
{enhancedRequest{Foo: "foo"}, "{\"foo\":\"foo\"}\n"},
|
||||
} {
|
||||
if _, err := client(context.Background(), test.value); err != nil {
|
||||
t.Error(err)
|
||||
continue
|
||||
}
|
||||
|
||||
if body != test.body {
|
||||
t.Errorf("%v: actual %#v, expected %#v", test.value, body, test.body)
|
||||
}
|
||||
}
|
||||
|
||||
if _, err := client(context.Background(), enhancedRequest{Foo: "foo"}); err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
if _, ok := header["X-Edward"]; !ok {
|
||||
t.Fatalf("X-Edward value: actual %v, expected %v", nil, []string{"Snowden"})
|
||||
}
|
||||
|
||||
if v := header.Get("X-Edward"); v != "Snowden" {
|
||||
t.Errorf("X-Edward string: actual %v, expected %v", v, "Snowden")
|
||||
}
|
||||
}
|
||||
|
||||
func mustParse(s string) *url.URL {
|
||||
u, err := url.Parse(s)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
return u
|
||||
}
|
||||
|
||||
type enhancedRequest struct {
|
||||
Foo string `json:"foo"`
|
||||
}
|
||||
|
||||
func (e enhancedRequest) Headers() http.Header { return http.Header{"X-Edward": []string{"Snowden"}} }
|
2
vendor/github.com/go-kit/kit/transport/http/doc.go
generated
vendored
Normal file
2
vendor/github.com/go-kit/kit/transport/http/doc.go
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
// Package http provides a general purpose HTTP binding for endpoints.
|
||||
package http
|
30
vendor/github.com/go-kit/kit/transport/http/encode_decode.go
generated
vendored
Normal file
30
vendor/github.com/go-kit/kit/transport/http/encode_decode.go
generated
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
package http
|
||||
|
||||
import (
|
||||
"context"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
// DecodeRequestFunc extracts a user-domain request object from an HTTP
|
||||
// request object. It's designed to be used in HTTP servers, for server-side
|
||||
// endpoints. One straightforward DecodeRequestFunc could be something that
|
||||
// JSON decodes from the request body to the concrete response type.
|
||||
type DecodeRequestFunc func(context.Context, *http.Request) (request interface{}, err error)
|
||||
|
||||
// EncodeRequestFunc encodes the passed request object into the HTTP request
|
||||
// object. It's designed to be used in HTTP clients, for client-side
|
||||
// endpoints. One straightforward EncodeRequestFunc could something that JSON
|
||||
// encodes the object directly to the request body.
|
||||
type EncodeRequestFunc func(context.Context, *http.Request, interface{}) error
|
||||
|
||||
// EncodeResponseFunc encodes the passed response object to the HTTP response
|
||||
// writer. It's designed to be used in HTTP servers, for server-side
|
||||
// endpoints. One straightforward EncodeResponseFunc could be something that
|
||||
// JSON encodes the object directly to the response body.
|
||||
type EncodeResponseFunc func(context.Context, http.ResponseWriter, interface{}) error
|
||||
|
||||
// DecodeResponseFunc extracts a user-domain response object from an HTTP
|
||||
// response object. It's designed to be used in HTTP clients, for client-side
|
||||
// endpoints. One straightforward DecodeResponseFunc could be something that
|
||||
// JSON decodes from the response body to the concrete response type.
|
||||
type DecodeResponseFunc func(context.Context, *http.Response) (response interface{}, err error)
|
36
vendor/github.com/go-kit/kit/transport/http/example_test.go
generated
vendored
Normal file
36
vendor/github.com/go-kit/kit/transport/http/example_test.go
generated
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
package http
|
||||
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
"net/http"
|
||||
"net/http/httptest"
|
||||
)
|
||||
|
||||
func ExamplePopulateRequestContext() {
|
||||
handler := NewServer(
|
||||
func(ctx context.Context, request interface{}) (response interface{}, err error) {
|
||||
fmt.Println("Method", ctx.Value(ContextKeyRequestMethod).(string))
|
||||
fmt.Println("RequestPath", ctx.Value(ContextKeyRequestPath).(string))
|
||||
fmt.Println("RequestURI", ctx.Value(ContextKeyRequestURI).(string))
|
||||
fmt.Println("X-Request-ID", ctx.Value(ContextKeyRequestXRequestID).(string))
|
||||
return struct{}{}, nil
|
||||
},
|
||||
func(context.Context, *http.Request) (interface{}, error) { return struct{}{}, nil },
|
||||
func(context.Context, http.ResponseWriter, interface{}) error { return nil },
|
||||
ServerBefore(PopulateRequestContext),
|
||||
)
|
||||
|
||||
server := httptest.NewServer(handler)
|
||||
defer server.Close()
|
||||
|
||||
req, _ := http.NewRequest("PATCH", fmt.Sprintf("%s/search?q=sympatico", server.URL), nil)
|
||||
req.Header.Set("X-Request-Id", "a1b2c3d4e5")
|
||||
http.DefaultClient.Do(req)
|
||||
|
||||
// Output:
|
||||
// Method PATCH
|
||||
// RequestPath /search
|
||||
// RequestURI /search?q=sympatico
|
||||
// X-Request-ID a1b2c3d4e5
|
||||
}
|
128
vendor/github.com/go-kit/kit/transport/http/request_response_funcs.go
generated
vendored
Normal file
128
vendor/github.com/go-kit/kit/transport/http/request_response_funcs.go
generated
vendored
Normal file
@@ -0,0 +1,128 @@
|
||||
package http
|
||||
|
||||
import (
|
||||
"context"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
// RequestFunc may take information from an HTTP request and put it into a
|
||||
// request context. In Servers, RequestFuncs are executed prior to invoking the
|
||||
// endpoint. In Clients, RequestFuncs are executed after creating the request
|
||||
// but prior to invoking the HTTP client.
|
||||
type RequestFunc func(context.Context, *http.Request) context.Context
|
||||
|
||||
// ServerResponseFunc may take information from a request context and use it to
|
||||
// manipulate a ResponseWriter. ServerResponseFuncs are only executed in
|
||||
// servers, after invoking the endpoint but prior to writing a response.
|
||||
type ServerResponseFunc func(context.Context, http.ResponseWriter) context.Context
|
||||
|
||||
// ClientResponseFunc may take information from an HTTP request and make the
|
||||
// response available for consumption. ClientResponseFuncs are only executed in
|
||||
// clients, after a request has been made, but prior to it being decoded.
|
||||
type ClientResponseFunc func(context.Context, *http.Response) context.Context
|
||||
|
||||
// SetContentType returns a ServerResponseFunc that sets the Content-Type header
|
||||
// to the provided value.
|
||||
func SetContentType(contentType string) ServerResponseFunc {
|
||||
return SetResponseHeader("Content-Type", contentType)
|
||||
}
|
||||
|
||||
// SetResponseHeader returns a ServerResponseFunc that sets the given header.
|
||||
func SetResponseHeader(key, val string) ServerResponseFunc {
|
||||
return func(ctx context.Context, w http.ResponseWriter) context.Context {
|
||||
w.Header().Set(key, val)
|
||||
return ctx
|
||||
}
|
||||
}
|
||||
|
||||
// SetRequestHeader returns a RequestFunc that sets the given header.
|
||||
func SetRequestHeader(key, val string) RequestFunc {
|
||||
return func(ctx context.Context, r *http.Request) context.Context {
|
||||
r.Header.Set(key, val)
|
||||
return ctx
|
||||
}
|
||||
}
|
||||
|
||||
// PopulateRequestContext is a RequestFunc that populates several values into
|
||||
// the context from the HTTP request. Those values may be extracted using the
|
||||
// corresponding ContextKey type in this package.
|
||||
func PopulateRequestContext(ctx context.Context, r *http.Request) context.Context {
|
||||
for k, v := range map[contextKey]string{
|
||||
ContextKeyRequestMethod: r.Method,
|
||||
ContextKeyRequestURI: r.RequestURI,
|
||||
ContextKeyRequestPath: r.URL.Path,
|
||||
ContextKeyRequestProto: r.Proto,
|
||||
ContextKeyRequestHost: r.Host,
|
||||
ContextKeyRequestRemoteAddr: r.RemoteAddr,
|
||||
ContextKeyRequestXForwardedFor: r.Header.Get("X-Forwarded-For"),
|
||||
ContextKeyRequestXForwardedProto: r.Header.Get("X-Forwarded-Proto"),
|
||||
ContextKeyRequestAuthorization: r.Header.Get("Authorization"),
|
||||
ContextKeyRequestReferer: r.Header.Get("Referer"),
|
||||
ContextKeyRequestUserAgent: r.Header.Get("User-Agent"),
|
||||
ContextKeyRequestXRequestID: r.Header.Get("X-Request-Id"),
|
||||
} {
|
||||
ctx = context.WithValue(ctx, k, v)
|
||||
}
|
||||
return ctx
|
||||
}
|
||||
|
||||
type contextKey int
|
||||
|
||||
const (
|
||||
// ContextKeyRequestMethod is populated in the context by
|
||||
// PopulateRequestContext. Its value is r.Method.
|
||||
ContextKeyRequestMethod contextKey = iota
|
||||
|
||||
// ContextKeyRequestURI is populated in the context by
|
||||
// PopulateRequestContext. Its value is r.RequestURI.
|
||||
ContextKeyRequestURI
|
||||
|
||||
// ContextKeyRequestPath is populated in the context by
|
||||
// PopulateRequestContext. Its value is r.URL.Path.
|
||||
ContextKeyRequestPath
|
||||
|
||||
// ContextKeyRequestProto is populated in the context by
|
||||
// PopulateRequestContext. Its value is r.Proto.
|
||||
ContextKeyRequestProto
|
||||
|
||||
// ContextKeyRequestHost is populated in the context by
|
||||
// PopulateRequestContext. Its value is r.Host.
|
||||
ContextKeyRequestHost
|
||||
|
||||
// ContextKeyRequestRemoteAddr is populated in the context by
|
||||
// PopulateRequestContext. Its value is r.RemoteAddr.
|
||||
ContextKeyRequestRemoteAddr
|
||||
|
||||
// ContextKeyRequestXForwardedFor is populated in the context by
|
||||
// PopulateRequestContext. Its value is r.Header.Get("X-Forwarded-For").
|
||||
ContextKeyRequestXForwardedFor
|
||||
|
||||
// ContextKeyRequestXForwardedProto is populated in the context by
|
||||
// PopulateRequestContext. Its value is r.Header.Get("X-Forwarded-Proto").
|
||||
ContextKeyRequestXForwardedProto
|
||||
|
||||
// ContextKeyRequestAuthorization is populated in the context by
|
||||
// PopulateRequestContext. Its value is r.Header.Get("Authorization").
|
||||
ContextKeyRequestAuthorization
|
||||
|
||||
// ContextKeyRequestReferer is populated in the context by
|
||||
// PopulateRequestContext. Its value is r.Header.Get("Referer").
|
||||
ContextKeyRequestReferer
|
||||
|
||||
// ContextKeyRequestUserAgent is populated in the context by
|
||||
// PopulateRequestContext. Its value is r.Header.Get("User-Agent").
|
||||
ContextKeyRequestUserAgent
|
||||
|
||||
// ContextKeyRequestXRequestID is populated in the context by
|
||||
// PopulateRequestContext. Its value is r.Header.Get("X-Request-Id").
|
||||
ContextKeyRequestXRequestID
|
||||
|
||||
// ContextKeyResponseHeaders is populated in the context whenever a
|
||||
// ServerFinalizerFunc is specified. Its value is of type http.Header, and
|
||||
// is captured only once the entire response has been written.
|
||||
ContextKeyResponseHeaders
|
||||
|
||||
// ContextKeyResponseSize is populated in the context whenever a
|
||||
// ServerFinalizerFunc is specified. Its value is of type int64.
|
||||
ContextKeyResponseSize
|
||||
)
|
30
vendor/github.com/go-kit/kit/transport/http/request_response_funcs_test.go
generated
vendored
Normal file
30
vendor/github.com/go-kit/kit/transport/http/request_response_funcs_test.go
generated
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
package http_test
|
||||
|
||||
import (
|
||||
"context"
|
||||
"net/http/httptest"
|
||||
"testing"
|
||||
|
||||
httptransport "github.com/go-kit/kit/transport/http"
|
||||
)
|
||||
|
||||
func TestSetHeader(t *testing.T) {
|
||||
const (
|
||||
key = "X-Foo"
|
||||
val = "12345"
|
||||
)
|
||||
r := httptest.NewRecorder()
|
||||
httptransport.SetResponseHeader(key, val)(context.Background(), r)
|
||||
if want, have := val, r.Header().Get(key); want != have {
|
||||
t.Errorf("want %q, have %q", want, have)
|
||||
}
|
||||
}
|
||||
|
||||
func TestSetContentType(t *testing.T) {
|
||||
const contentType = "application/json"
|
||||
r := httptest.NewRecorder()
|
||||
httptransport.SetContentType(contentType)(context.Background(), r)
|
||||
if want, have := contentType, r.Header().Get("Content-Type"); want != have {
|
||||
t.Errorf("want %q, have %q", want, have)
|
||||
}
|
||||
}
|
221
vendor/github.com/go-kit/kit/transport/http/server.go
generated
vendored
Normal file
221
vendor/github.com/go-kit/kit/transport/http/server.go
generated
vendored
Normal file
@@ -0,0 +1,221 @@
|
||||
package http
|
||||
|
||||
import (
|
||||
"context"
|
||||
"encoding/json"
|
||||
"net/http"
|
||||
|
||||
"github.com/go-kit/kit/endpoint"
|
||||
"github.com/go-kit/kit/log"
|
||||
)
|
||||
|
||||
// Server wraps an endpoint and implements http.Handler.
|
||||
type Server struct {
|
||||
e endpoint.Endpoint
|
||||
dec DecodeRequestFunc
|
||||
enc EncodeResponseFunc
|
||||
before []RequestFunc
|
||||
after []ServerResponseFunc
|
||||
errorEncoder ErrorEncoder
|
||||
finalizer ServerFinalizerFunc
|
||||
logger log.Logger
|
||||
}
|
||||
|
||||
// NewServer constructs a new server, which implements http.Server and wraps
|
||||
// the provided endpoint.
|
||||
func NewServer(
|
||||
e endpoint.Endpoint,
|
||||
dec DecodeRequestFunc,
|
||||
enc EncodeResponseFunc,
|
||||
options ...ServerOption,
|
||||
) *Server {
|
||||
s := &Server{
|
||||
e: e,
|
||||
dec: dec,
|
||||
enc: enc,
|
||||
errorEncoder: DefaultErrorEncoder,
|
||||
logger: log.NewNopLogger(),
|
||||
}
|
||||
for _, option := range options {
|
||||
option(s)
|
||||
}
|
||||
return s
|
||||
}
|
||||
|
||||
// ServerOption sets an optional parameter for servers.
|
||||
type ServerOption func(*Server)
|
||||
|
||||
// ServerBefore functions are executed on the HTTP request object before the
|
||||
// request is decoded.
|
||||
func ServerBefore(before ...RequestFunc) ServerOption {
|
||||
return func(s *Server) { s.before = append(s.before, before...) }
|
||||
}
|
||||
|
||||
// ServerAfter functions are executed on the HTTP response writer after the
|
||||
// endpoint is invoked, but before anything is written to the client.
|
||||
func ServerAfter(after ...ServerResponseFunc) ServerOption {
|
||||
return func(s *Server) { s.after = append(s.after, after...) }
|
||||
}
|
||||
|
||||
// ServerErrorEncoder is used to encode errors to the http.ResponseWriter
|
||||
// whenever they're encountered in the processing of a request. Clients can
|
||||
// use this to provide custom error formatting and response codes. By default,
|
||||
// errors will be written with the DefaultErrorEncoder.
|
||||
func ServerErrorEncoder(ee ErrorEncoder) ServerOption {
|
||||
return func(s *Server) { s.errorEncoder = ee }
|
||||
}
|
||||
|
||||
// ServerErrorLogger is used to log non-terminal errors. By default, no errors
|
||||
// are logged. This is intended as a diagnostic measure. Finer-grained control
|
||||
// of error handling, including logging in more detail, should be performed in a
|
||||
// custom ServerErrorEncoder or ServerFinalizer, both of which have access to
|
||||
// the context.
|
||||
func ServerErrorLogger(logger log.Logger) ServerOption {
|
||||
return func(s *Server) { s.logger = logger }
|
||||
}
|
||||
|
||||
// ServerFinalizer is executed at the end of every HTTP request.
|
||||
// By default, no finalizer is registered.
|
||||
func ServerFinalizer(f ServerFinalizerFunc) ServerOption {
|
||||
return func(s *Server) { s.finalizer = f }
|
||||
}
|
||||
|
||||
// ServeHTTP implements http.Handler.
|
||||
func (s Server) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||||
ctx := r.Context()
|
||||
|
||||
if s.finalizer != nil {
|
||||
iw := &interceptingWriter{w, http.StatusOK, 0}
|
||||
defer func() {
|
||||
ctx = context.WithValue(ctx, ContextKeyResponseHeaders, iw.Header())
|
||||
ctx = context.WithValue(ctx, ContextKeyResponseSize, iw.written)
|
||||
s.finalizer(ctx, iw.code, r)
|
||||
}()
|
||||
w = iw
|
||||
}
|
||||
|
||||
for _, f := range s.before {
|
||||
ctx = f(ctx, r)
|
||||
}
|
||||
|
||||
request, err := s.dec(ctx, r)
|
||||
if err != nil {
|
||||
s.logger.Log("err", err)
|
||||
s.errorEncoder(ctx, err, w)
|
||||
return
|
||||
}
|
||||
|
||||
response, err := s.e(ctx, request)
|
||||
if err != nil {
|
||||
s.logger.Log("err", err)
|
||||
s.errorEncoder(ctx, err, w)
|
||||
return
|
||||
}
|
||||
|
||||
for _, f := range s.after {
|
||||
ctx = f(ctx, w)
|
||||
}
|
||||
|
||||
if err := s.enc(ctx, w, response); err != nil {
|
||||
s.logger.Log("err", err)
|
||||
s.errorEncoder(ctx, err, w)
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
// ErrorEncoder is responsible for encoding an error to the ResponseWriter.
|
||||
// Users are encouraged to use custom ErrorEncoders to encode HTTP errors to
|
||||
// their clients, and will likely want to pass and check for their own error
|
||||
// types. See the example shipping/handling service.
|
||||
type ErrorEncoder func(ctx context.Context, err error, w http.ResponseWriter)
|
||||
|
||||
// ServerFinalizerFunc can be used to perform work at the end of an HTTP
|
||||
// request, after the response has been written to the client. The principal
|
||||
// intended use is for request logging. In addition to the response code
|
||||
// provided in the function signature, additional response parameters are
|
||||
// provided in the context under keys with the ContextKeyResponse prefix.
|
||||
type ServerFinalizerFunc func(ctx context.Context, code int, r *http.Request)
|
||||
|
||||
// EncodeJSONResponse is a EncodeResponseFunc that serializes the response as a
|
||||
// JSON object to the ResponseWriter. Many JSON-over-HTTP services can use it as
|
||||
// a sensible default. If the response implements Headerer, the provided headers
|
||||
// will be applied to the response. If the response implements StatusCoder, the
|
||||
// provided StatusCode will be used instead of 200.
|
||||
func EncodeJSONResponse(_ context.Context, w http.ResponseWriter, response interface{}) error {
|
||||
w.Header().Set("Content-Type", "application/json; charset=utf-8")
|
||||
if headerer, ok := response.(Headerer); ok {
|
||||
for k := range headerer.Headers() {
|
||||
w.Header().Set(k, headerer.Headers().Get(k))
|
||||
}
|
||||
}
|
||||
code := http.StatusOK
|
||||
if sc, ok := response.(StatusCoder); ok {
|
||||
code = sc.StatusCode()
|
||||
}
|
||||
w.WriteHeader(code)
|
||||
if code == http.StatusNoContent {
|
||||
return nil
|
||||
}
|
||||
return json.NewEncoder(w).Encode(response)
|
||||
}
|
||||
|
||||
// DefaultErrorEncoder writes the error to the ResponseWriter, by default a
|
||||
// content type of text/plain, a body of the plain text of the error, and a
|
||||
// status code of 500. If the error implements Headerer, the provided headers
|
||||
// will be applied to the response. If the error implements json.Marshaler, and
|
||||
// the marshaling succeeds, a content type of application/json and the JSON
|
||||
// encoded form of the error will be used. If the error implements StatusCoder,
|
||||
// the provided StatusCode will be used instead of 500.
|
||||
func DefaultErrorEncoder(_ context.Context, err error, w http.ResponseWriter) {
|
||||
contentType, body := "text/plain; charset=utf-8", []byte(err.Error())
|
||||
if marshaler, ok := err.(json.Marshaler); ok {
|
||||
if jsonBody, marshalErr := marshaler.MarshalJSON(); marshalErr == nil {
|
||||
contentType, body = "application/json; charset=utf-8", jsonBody
|
||||
}
|
||||
}
|
||||
w.Header().Set("Content-Type", contentType)
|
||||
if headerer, ok := err.(Headerer); ok {
|
||||
for k := range headerer.Headers() {
|
||||
w.Header().Set(k, headerer.Headers().Get(k))
|
||||
}
|
||||
}
|
||||
code := http.StatusInternalServerError
|
||||
if sc, ok := err.(StatusCoder); ok {
|
||||
code = sc.StatusCode()
|
||||
}
|
||||
w.WriteHeader(code)
|
||||
w.Write(body)
|
||||
}
|
||||
|
||||
// StatusCoder is checked by DefaultErrorEncoder. If an error value implements
|
||||
// StatusCoder, the StatusCode will be used when encoding the error. By default,
|
||||
// StatusInternalServerError (500) is used.
|
||||
type StatusCoder interface {
|
||||
StatusCode() int
|
||||
}
|
||||
|
||||
// Headerer is checked by DefaultErrorEncoder. If an error value implements
|
||||
// Headerer, the provided headers will be applied to the response writer, after
|
||||
// the Content-Type is set.
|
||||
type Headerer interface {
|
||||
Headers() http.Header
|
||||
}
|
||||
|
||||
type interceptingWriter struct {
|
||||
http.ResponseWriter
|
||||
code int
|
||||
written int64
|
||||
}
|
||||
|
||||
// WriteHeader may not be explicitly called, so care must be taken to
|
||||
// initialize w.code to its default value of http.StatusOK.
|
||||
func (w *interceptingWriter) WriteHeader(code int) {
|
||||
w.code = code
|
||||
w.ResponseWriter.WriteHeader(code)
|
||||
}
|
||||
|
||||
func (w *interceptingWriter) Write(p []byte) (int, error) {
|
||||
n, err := w.ResponseWriter.Write(p)
|
||||
w.written += int64(n)
|
||||
return n, err
|
||||
}
|
349
vendor/github.com/go-kit/kit/transport/http/server_test.go
generated
vendored
Normal file
349
vendor/github.com/go-kit/kit/transport/http/server_test.go
generated
vendored
Normal file
@@ -0,0 +1,349 @@
|
||||
package http_test
|
||||
|
||||
import (
|
||||
"context"
|
||||
"errors"
|
||||
"io/ioutil"
|
||||
"net/http"
|
||||
"net/http/httptest"
|
||||
"strings"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/go-kit/kit/endpoint"
|
||||
httptransport "github.com/go-kit/kit/transport/http"
|
||||
)
|
||||
|
||||
func TestServerBadDecode(t *testing.T) {
|
||||
handler := httptransport.NewServer(
|
||||
func(context.Context, interface{}) (interface{}, error) { return struct{}{}, nil },
|
||||
func(context.Context, *http.Request) (interface{}, error) { return struct{}{}, errors.New("dang") },
|
||||
func(context.Context, http.ResponseWriter, interface{}) error { return nil },
|
||||
)
|
||||
server := httptest.NewServer(handler)
|
||||
defer server.Close()
|
||||
resp, _ := http.Get(server.URL)
|
||||
if want, have := http.StatusInternalServerError, resp.StatusCode; want != have {
|
||||
t.Errorf("want %d, have %d", want, have)
|
||||
}
|
||||
}
|
||||
|
||||
func TestServerBadEndpoint(t *testing.T) {
|
||||
handler := httptransport.NewServer(
|
||||
func(context.Context, interface{}) (interface{}, error) { return struct{}{}, errors.New("dang") },
|
||||
func(context.Context, *http.Request) (interface{}, error) { return struct{}{}, nil },
|
||||
func(context.Context, http.ResponseWriter, interface{}) error { return nil },
|
||||
)
|
||||
server := httptest.NewServer(handler)
|
||||
defer server.Close()
|
||||
resp, _ := http.Get(server.URL)
|
||||
if want, have := http.StatusInternalServerError, resp.StatusCode; want != have {
|
||||
t.Errorf("want %d, have %d", want, have)
|
||||
}
|
||||
}
|
||||
|
||||
func TestServerBadEncode(t *testing.T) {
|
||||
handler := httptransport.NewServer(
|
||||
func(context.Context, interface{}) (interface{}, error) { return struct{}{}, nil },
|
||||
func(context.Context, *http.Request) (interface{}, error) { return struct{}{}, nil },
|
||||
func(context.Context, http.ResponseWriter, interface{}) error { return errors.New("dang") },
|
||||
)
|
||||
server := httptest.NewServer(handler)
|
||||
defer server.Close()
|
||||
resp, _ := http.Get(server.URL)
|
||||
if want, have := http.StatusInternalServerError, resp.StatusCode; want != have {
|
||||
t.Errorf("want %d, have %d", want, have)
|
||||
}
|
||||
}
|
||||
|
||||
func TestServerErrorEncoder(t *testing.T) {
|
||||
errTeapot := errors.New("teapot")
|
||||
code := func(err error) int {
|
||||
if err == errTeapot {
|
||||
return http.StatusTeapot
|
||||
}
|
||||
return http.StatusInternalServerError
|
||||
}
|
||||
handler := httptransport.NewServer(
|
||||
func(context.Context, interface{}) (interface{}, error) { return struct{}{}, errTeapot },
|
||||
func(context.Context, *http.Request) (interface{}, error) { return struct{}{}, nil },
|
||||
func(context.Context, http.ResponseWriter, interface{}) error { return nil },
|
||||
httptransport.ServerErrorEncoder(func(_ context.Context, err error, w http.ResponseWriter) { w.WriteHeader(code(err)) }),
|
||||
)
|
||||
server := httptest.NewServer(handler)
|
||||
defer server.Close()
|
||||
resp, _ := http.Get(server.URL)
|
||||
if want, have := http.StatusTeapot, resp.StatusCode; want != have {
|
||||
t.Errorf("want %d, have %d", want, have)
|
||||
}
|
||||
}
|
||||
|
||||
func TestServerHappyPath(t *testing.T) {
|
||||
step, response := testServer(t)
|
||||
step()
|
||||
resp := <-response
|
||||
defer resp.Body.Close()
|
||||
buf, _ := ioutil.ReadAll(resp.Body)
|
||||
if want, have := http.StatusOK, resp.StatusCode; want != have {
|
||||
t.Errorf("want %d, have %d (%s)", want, have, buf)
|
||||
}
|
||||
}
|
||||
|
||||
func TestMultipleServerBefore(t *testing.T) {
|
||||
var (
|
||||
headerKey = "X-Henlo-Lizer"
|
||||
headerVal = "Helllo you stinky lizard"
|
||||
statusCode = http.StatusTeapot
|
||||
responseBody = "go eat a fly ugly\n"
|
||||
done = make(chan struct{})
|
||||
)
|
||||
handler := httptransport.NewServer(
|
||||
endpoint.Nop,
|
||||
func(context.Context, *http.Request) (interface{}, error) {
|
||||
return struct{}{}, nil
|
||||
},
|
||||
func(_ context.Context, w http.ResponseWriter, _ interface{}) error {
|
||||
w.Header().Set(headerKey, headerVal)
|
||||
w.WriteHeader(statusCode)
|
||||
w.Write([]byte(responseBody))
|
||||
return nil
|
||||
},
|
||||
httptransport.ServerBefore(func(ctx context.Context, r *http.Request) context.Context {
|
||||
ctx = context.WithValue(ctx, "one", 1)
|
||||
|
||||
return ctx
|
||||
}),
|
||||
httptransport.ServerBefore(func(ctx context.Context, r *http.Request) context.Context {
|
||||
if _, ok := ctx.Value("one").(int); !ok {
|
||||
t.Error("Value was not set properly when multiple ServerBefores are used")
|
||||
}
|
||||
|
||||
close(done)
|
||||
return ctx
|
||||
}),
|
||||
)
|
||||
|
||||
server := httptest.NewServer(handler)
|
||||
defer server.Close()
|
||||
go http.Get(server.URL)
|
||||
|
||||
select {
|
||||
case <-done:
|
||||
case <-time.After(time.Second):
|
||||
t.Fatal("timeout waiting for finalizer")
|
||||
}
|
||||
}
|
||||
|
||||
func TestMultipleServerAfter(t *testing.T) {
|
||||
var (
|
||||
headerKey = "X-Henlo-Lizer"
|
||||
headerVal = "Helllo you stinky lizard"
|
||||
statusCode = http.StatusTeapot
|
||||
responseBody = "go eat a fly ugly\n"
|
||||
done = make(chan struct{})
|
||||
)
|
||||
handler := httptransport.NewServer(
|
||||
endpoint.Nop,
|
||||
func(context.Context, *http.Request) (interface{}, error) {
|
||||
return struct{}{}, nil
|
||||
},
|
||||
func(_ context.Context, w http.ResponseWriter, _ interface{}) error {
|
||||
w.Header().Set(headerKey, headerVal)
|
||||
w.WriteHeader(statusCode)
|
||||
w.Write([]byte(responseBody))
|
||||
return nil
|
||||
},
|
||||
httptransport.ServerAfter(func(ctx context.Context, w http.ResponseWriter) context.Context {
|
||||
ctx = context.WithValue(ctx, "one", 1)
|
||||
|
||||
return ctx
|
||||
}),
|
||||
httptransport.ServerAfter(func(ctx context.Context, w http.ResponseWriter) context.Context {
|
||||
if _, ok := ctx.Value("one").(int); !ok {
|
||||
t.Error("Value was not set properly when multiple ServerAfters are used")
|
||||
}
|
||||
|
||||
close(done)
|
||||
return ctx
|
||||
}),
|
||||
)
|
||||
|
||||
server := httptest.NewServer(handler)
|
||||
defer server.Close()
|
||||
go http.Get(server.URL)
|
||||
|
||||
select {
|
||||
case <-done:
|
||||
case <-time.After(time.Second):
|
||||
t.Fatal("timeout waiting for finalizer")
|
||||
}
|
||||
}
|
||||
|
||||
func TestServerFinalizer(t *testing.T) {
|
||||
var (
|
||||
headerKey = "X-Henlo-Lizer"
|
||||
headerVal = "Helllo you stinky lizard"
|
||||
statusCode = http.StatusTeapot
|
||||
responseBody = "go eat a fly ugly\n"
|
||||
done = make(chan struct{})
|
||||
)
|
||||
handler := httptransport.NewServer(
|
||||
endpoint.Nop,
|
||||
func(context.Context, *http.Request) (interface{}, error) {
|
||||
return struct{}{}, nil
|
||||
},
|
||||
func(_ context.Context, w http.ResponseWriter, _ interface{}) error {
|
||||
w.Header().Set(headerKey, headerVal)
|
||||
w.WriteHeader(statusCode)
|
||||
w.Write([]byte(responseBody))
|
||||
return nil
|
||||
},
|
||||
httptransport.ServerFinalizer(func(ctx context.Context, code int, _ *http.Request) {
|
||||
if want, have := statusCode, code; want != have {
|
||||
t.Errorf("StatusCode: want %d, have %d", want, have)
|
||||
}
|
||||
|
||||
responseHeader := ctx.Value(httptransport.ContextKeyResponseHeaders).(http.Header)
|
||||
if want, have := headerVal, responseHeader.Get(headerKey); want != have {
|
||||
t.Errorf("%s: want %q, have %q", headerKey, want, have)
|
||||
}
|
||||
|
||||
responseSize := ctx.Value(httptransport.ContextKeyResponseSize).(int64)
|
||||
if want, have := int64(len(responseBody)), responseSize; want != have {
|
||||
t.Errorf("response size: want %d, have %d", want, have)
|
||||
}
|
||||
|
||||
close(done)
|
||||
}),
|
||||
)
|
||||
|
||||
server := httptest.NewServer(handler)
|
||||
defer server.Close()
|
||||
go http.Get(server.URL)
|
||||
|
||||
select {
|
||||
case <-done:
|
||||
case <-time.After(time.Second):
|
||||
t.Fatal("timeout waiting for finalizer")
|
||||
}
|
||||
}
|
||||
|
||||
type enhancedResponse struct {
|
||||
Foo string `json:"foo"`
|
||||
}
|
||||
|
||||
func (e enhancedResponse) StatusCode() int { return http.StatusPaymentRequired }
|
||||
func (e enhancedResponse) Headers() http.Header { return http.Header{"X-Edward": []string{"Snowden"}} }
|
||||
|
||||
func TestEncodeJSONResponse(t *testing.T) {
|
||||
handler := httptransport.NewServer(
|
||||
func(context.Context, interface{}) (interface{}, error) { return enhancedResponse{Foo: "bar"}, nil },
|
||||
func(context.Context, *http.Request) (interface{}, error) { return struct{}{}, nil },
|
||||
httptransport.EncodeJSONResponse,
|
||||
)
|
||||
|
||||
server := httptest.NewServer(handler)
|
||||
defer server.Close()
|
||||
|
||||
resp, err := http.Get(server.URL)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
if want, have := http.StatusPaymentRequired, resp.StatusCode; want != have {
|
||||
t.Errorf("StatusCode: want %d, have %d", want, have)
|
||||
}
|
||||
if want, have := "Snowden", resp.Header.Get("X-Edward"); want != have {
|
||||
t.Errorf("X-Edward: want %q, have %q", want, have)
|
||||
}
|
||||
buf, _ := ioutil.ReadAll(resp.Body)
|
||||
if want, have := `{"foo":"bar"}`, strings.TrimSpace(string(buf)); want != have {
|
||||
t.Errorf("Body: want %s, have %s", want, have)
|
||||
}
|
||||
}
|
||||
|
||||
type noContentResponse struct{}
|
||||
|
||||
func (e noContentResponse) StatusCode() int { return http.StatusNoContent }
|
||||
|
||||
func TestEncodeNoContent(t *testing.T) {
|
||||
handler := httptransport.NewServer(
|
||||
func(context.Context, interface{}) (interface{}, error) { return noContentResponse{}, nil },
|
||||
func(context.Context, *http.Request) (interface{}, error) { return struct{}{}, nil },
|
||||
httptransport.EncodeJSONResponse,
|
||||
)
|
||||
|
||||
server := httptest.NewServer(handler)
|
||||
defer server.Close()
|
||||
|
||||
resp, err := http.Get(server.URL)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
if want, have := http.StatusNoContent, resp.StatusCode; want != have {
|
||||
t.Errorf("StatusCode: want %d, have %d", want, have)
|
||||
}
|
||||
buf, _ := ioutil.ReadAll(resp.Body)
|
||||
if want, have := 0, len(buf); want != have {
|
||||
t.Errorf("Body: want no content, have %d bytes", have)
|
||||
}
|
||||
}
|
||||
|
||||
type enhancedError struct{}
|
||||
|
||||
func (e enhancedError) Error() string { return "enhanced error" }
|
||||
func (e enhancedError) StatusCode() int { return http.StatusTeapot }
|
||||
func (e enhancedError) MarshalJSON() ([]byte, error) { return []byte(`{"err":"enhanced"}`), nil }
|
||||
func (e enhancedError) Headers() http.Header { return http.Header{"X-Enhanced": []string{"1"}} }
|
||||
|
||||
func TestEnhancedError(t *testing.T) {
|
||||
handler := httptransport.NewServer(
|
||||
func(context.Context, interface{}) (interface{}, error) { return nil, enhancedError{} },
|
||||
func(context.Context, *http.Request) (interface{}, error) { return struct{}{}, nil },
|
||||
func(_ context.Context, w http.ResponseWriter, _ interface{}) error { return nil },
|
||||
)
|
||||
|
||||
server := httptest.NewServer(handler)
|
||||
defer server.Close()
|
||||
|
||||
resp, err := http.Get(server.URL)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
defer resp.Body.Close()
|
||||
if want, have := http.StatusTeapot, resp.StatusCode; want != have {
|
||||
t.Errorf("StatusCode: want %d, have %d", want, have)
|
||||
}
|
||||
if want, have := "1", resp.Header.Get("X-Enhanced"); want != have {
|
||||
t.Errorf("X-Enhanced: want %q, have %q", want, have)
|
||||
}
|
||||
buf, _ := ioutil.ReadAll(resp.Body)
|
||||
if want, have := `{"err":"enhanced"}`, strings.TrimSpace(string(buf)); want != have {
|
||||
t.Errorf("Body: want %s, have %s", want, have)
|
||||
}
|
||||
}
|
||||
|
||||
func testServer(t *testing.T) (step func(), resp <-chan *http.Response) {
|
||||
var (
|
||||
stepch = make(chan bool)
|
||||
endpoint = func(context.Context, interface{}) (interface{}, error) { <-stepch; return struct{}{}, nil }
|
||||
response = make(chan *http.Response)
|
||||
handler = httptransport.NewServer(
|
||||
endpoint,
|
||||
func(context.Context, *http.Request) (interface{}, error) { return struct{}{}, nil },
|
||||
func(context.Context, http.ResponseWriter, interface{}) error { return nil },
|
||||
httptransport.ServerBefore(func(ctx context.Context, r *http.Request) context.Context { return ctx }),
|
||||
httptransport.ServerAfter(func(ctx context.Context, w http.ResponseWriter) context.Context { return ctx }),
|
||||
)
|
||||
)
|
||||
go func() {
|
||||
server := httptest.NewServer(handler)
|
||||
defer server.Close()
|
||||
resp, err := http.Get(server.URL)
|
||||
if err != nil {
|
||||
t.Error(err)
|
||||
return
|
||||
}
|
||||
response <- resp
|
||||
}()
|
||||
return func() { stepch <- true }, response
|
||||
}
|
Reference in New Issue
Block a user