aboutsummaryrefslogtreecommitdiff
path: root/src/dict2rest/vendor/github.com/rs/xhandler/xhandler_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/dict2rest/vendor/github.com/rs/xhandler/xhandler_test.go')
-rw-r--r--src/dict2rest/vendor/github.com/rs/xhandler/xhandler_test.go61
1 files changed, 0 insertions, 61 deletions
diff --git a/src/dict2rest/vendor/github.com/rs/xhandler/xhandler_test.go b/src/dict2rest/vendor/github.com/rs/xhandler/xhandler_test.go
deleted file mode 100644
index 3f5021f..0000000
--- a/src/dict2rest/vendor/github.com/rs/xhandler/xhandler_test.go
+++ /dev/null
@@ -1,61 +0,0 @@
-package xhandler
-
-import (
- "log"
- "net/http"
- "net/http/httptest"
- "testing"
- "time"
-
- "github.com/stretchr/testify/assert"
- "golang.org/x/net/context"
-)
-
-type handler struct{}
-
-type key int
-
-const contextKey key = 0
-
-func newContext(ctx context.Context, value string) context.Context {
- return context.WithValue(ctx, contextKey, value)
-}
-
-func fromContext(ctx context.Context) (string, bool) {
- value, ok := ctx.Value(contextKey).(string)
- return value, ok
-}
-
-func (h handler) ServeHTTPC(ctx context.Context, w http.ResponseWriter, r *http.Request) {
- // Leave other go routines a chance to run
- time.Sleep(time.Nanosecond)
- value, _ := fromContext(ctx)
- if _, ok := ctx.Deadline(); ok {
- value += " with deadline"
- }
- if ctx.Err() == context.Canceled {
- value += " canceled"
- }
- w.Write([]byte(value))
-}
-
-func TestHandle(t *testing.T) {
- ctx := context.WithValue(context.Background(), contextKey, "value")
- h := New(ctx, &handler{})
- w := httptest.NewRecorder()
- r, err := http.NewRequest("GET", "http://example.com/foo", nil)
- if err != nil {
- log.Fatal(err)
- }
- h.ServeHTTP(w, r)
- assert.Equal(t, "value", w.Body.String())
-}
-
-func TestHandlerFunc(t *testing.T) {
- ok := false
- xh := HandlerFuncC(func(context.Context, http.ResponseWriter, *http.Request) {
- ok = true
- })
- xh.ServeHTTPC(nil, nil, nil)
- assert.True(t, ok)
-}