aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/stretchr/testify/assert/http_assertions_test.go
diff options
context:
space:
mode:
authorChristine Dodrill <me@christine.website>2018-08-22 03:17:59 +0000
committerChristine Dodrill <me@christine.website>2018-08-22 03:17:59 +0000
commit6b7d6dcc49c6cbd83af70d97d01b700c8fb0c393 (patch)
tree60bd319655e77afb0e3737cc9070d5111a41f22b /vendor/github.com/stretchr/testify/assert/http_assertions_test.go
parent5a8b8dc48f33c44fd41ac27c1fb4185de1d87d41 (diff)
downloadxesite-6b7d6dcc49c6cbd83af70d97d01b700c8fb0c393.tar.xz
xesite-6b7d6dcc49c6cbd83af70d97d01b700c8fb0c393.zip
add analytics via segment again
Diffstat (limited to 'vendor/github.com/stretchr/testify/assert/http_assertions_test.go')
-rw-r--r--vendor/github.com/stretchr/testify/assert/http_assertions_test.go146
1 files changed, 0 insertions, 146 deletions
diff --git a/vendor/github.com/stretchr/testify/assert/http_assertions_test.go b/vendor/github.com/stretchr/testify/assert/http_assertions_test.go
deleted file mode 100644
index 112beaf..0000000
--- a/vendor/github.com/stretchr/testify/assert/http_assertions_test.go
+++ /dev/null
@@ -1,146 +0,0 @@
-package assert
-
-import (
- "fmt"
- "net/http"
- "net/url"
- "testing"
-)
-
-func httpOK(w http.ResponseWriter, r *http.Request) {
- w.WriteHeader(http.StatusOK)
-}
-
-func httpRedirect(w http.ResponseWriter, r *http.Request) {
- w.WriteHeader(http.StatusTemporaryRedirect)
-}
-
-func httpError(w http.ResponseWriter, r *http.Request) {
- w.WriteHeader(http.StatusInternalServerError)
-}
-
-func TestHTTPSuccess(t *testing.T) {
- assert := New(t)
-
- mockT1 := new(testing.T)
- assert.Equal(HTTPSuccess(mockT1, httpOK, "GET", "/", nil), true)
- assert.False(mockT1.Failed())
-
- mockT2 := new(testing.T)
- assert.Equal(HTTPSuccess(mockT2, httpRedirect, "GET", "/", nil), false)
- assert.True(mockT2.Failed())
-
- mockT3 := new(testing.T)
- assert.Equal(HTTPSuccess(mockT3, httpError, "GET", "/", nil), false)
- assert.True(mockT3.Failed())
-}
-
-func TestHTTPRedirect(t *testing.T) {
- assert := New(t)
-
- mockT1 := new(testing.T)
- assert.Equal(HTTPRedirect(mockT1, httpOK, "GET", "/", nil), false)
- assert.True(mockT1.Failed())
-
- mockT2 := new(testing.T)
- assert.Equal(HTTPRedirect(mockT2, httpRedirect, "GET", "/", nil), true)
- assert.False(mockT2.Failed())
-
- mockT3 := new(testing.T)
- assert.Equal(HTTPRedirect(mockT3, httpError, "GET", "/", nil), false)
- assert.True(mockT3.Failed())
-}
-
-func TestHTTPError(t *testing.T) {
- assert := New(t)
-
- mockT1 := new(testing.T)
- assert.Equal(HTTPError(mockT1, httpOK, "GET", "/", nil), false)
- assert.True(mockT1.Failed())
-
- mockT2 := new(testing.T)
- assert.Equal(HTTPError(mockT2, httpRedirect, "GET", "/", nil), false)
- assert.True(mockT2.Failed())
-
- mockT3 := new(testing.T)
- assert.Equal(HTTPError(mockT3, httpError, "GET", "/", nil), true)
- assert.False(mockT3.Failed())
-}
-
-func TestHTTPStatusesWrapper(t *testing.T) {
- assert := New(t)
- mockAssert := New(new(testing.T))
-
- assert.Equal(mockAssert.HTTPSuccess(httpOK, "GET", "/", nil), true)
- assert.Equal(mockAssert.HTTPSuccess(httpRedirect, "GET", "/", nil), false)
- assert.Equal(mockAssert.HTTPSuccess(httpError, "GET", "/", nil), false)
-
- assert.Equal(mockAssert.HTTPRedirect(httpOK, "GET", "/", nil), false)
- assert.Equal(mockAssert.HTTPRedirect(httpRedirect, "GET", "/", nil), true)
- assert.Equal(mockAssert.HTTPRedirect(httpError, "GET", "/", nil), false)
-
- assert.Equal(mockAssert.HTTPError(httpOK, "GET", "/", nil), false)
- assert.Equal(mockAssert.HTTPError(httpRedirect, "GET", "/", nil), false)
- assert.Equal(mockAssert.HTTPError(httpError, "GET", "/", nil), true)
-}
-
-func httpHelloName(w http.ResponseWriter, r *http.Request) {
- name := r.FormValue("name")
- w.Write([]byte(fmt.Sprintf("Hello, %s!", name)))
-}
-
-func TestHTTPRequestWithNoParams(t *testing.T) {
- var got *http.Request
- handler := func(w http.ResponseWriter, r *http.Request) {
- got = r
- w.WriteHeader(http.StatusOK)
- }
-
- True(t, HTTPSuccess(t, handler, "GET", "/url", nil))
-
- Empty(t, got.URL.Query())
- Equal(t, "/url", got.URL.RequestURI())
-}
-
-func TestHTTPRequestWithParams(t *testing.T) {
- var got *http.Request
- handler := func(w http.ResponseWriter, r *http.Request) {
- got = r
- w.WriteHeader(http.StatusOK)
- }
- params := url.Values{}
- params.Add("id", "12345")
-
- True(t, HTTPSuccess(t, handler, "GET", "/url", params))
-
- Equal(t, url.Values{"id": []string{"12345"}}, got.URL.Query())
- Equal(t, "/url?id=12345", got.URL.String())
- Equal(t, "/url?id=12345", got.URL.RequestURI())
-}
-
-func TestHttpBody(t *testing.T) {
- assert := New(t)
- mockT := new(testing.T)
-
- assert.True(HTTPBodyContains(mockT, httpHelloName, "GET", "/", url.Values{"name": []string{"World"}}, "Hello, World!"))
- assert.True(HTTPBodyContains(mockT, httpHelloName, "GET", "/", url.Values{"name": []string{"World"}}, "World"))
- assert.False(HTTPBodyContains(mockT, httpHelloName, "GET", "/", url.Values{"name": []string{"World"}}, "world"))
-
- assert.False(HTTPBodyNotContains(mockT, httpHelloName, "GET", "/", url.Values{"name": []string{"World"}}, "Hello, World!"))
- assert.False(HTTPBodyNotContains(mockT, httpHelloName, "GET", "/", url.Values{"name": []string{"World"}}, "World"))
- assert.True(HTTPBodyNotContains(mockT, httpHelloName, "GET", "/", url.Values{"name": []string{"World"}}, "world"))
-}
-
-func TestHttpBodyWrappers(t *testing.T) {
- assert := New(t)
- mockAssert := New(new(testing.T))
-
- assert.True(mockAssert.HTTPBodyContains(httpHelloName, "GET", "/", url.Values{"name": []string{"World"}}, "Hello, World!"))
- assert.True(mockAssert.HTTPBodyContains(httpHelloName, "GET", "/", url.Values{"name": []string{"World"}}, "World"))
- assert.False(mockAssert.HTTPBodyContains(httpHelloName, "GET", "/", url.Values{"name": []string{"World"}}, "world"))
-
- assert.False(mockAssert.HTTPBodyNotContains(httpHelloName, "GET", "/", url.Values{"name": []string{"World"}}, "Hello, World!"))
- assert.False(mockAssert.HTTPBodyNotContains(httpHelloName, "GET", "/", url.Values{"name": []string{"World"}}, "World"))
- assert.True(mockAssert.HTTPBodyNotContains(httpHelloName, "GET", "/", url.Values{"name": []string{"World"}}, "world"))
-
-}