| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332 |
- // Copyright 2014 Manu Martinez-Almeida. All rights reserved.
- // Use of this source code is governed by a MIT style
- // license that can be found in the LICENSE file.
- package gin
- import (
- "errors"
- "io/ioutil"
- "net/http"
- "net/http/httptest"
- "os"
- "path"
- "strings"
- "testing"
- "github.com/stretchr/testify/assert"
- )
- func performRequest(r http.Handler, method, path string) *httptest.ResponseRecorder {
- req, _ := http.NewRequest(method, path, nil)
- w := httptest.NewRecorder()
- r.ServeHTTP(w, req)
- return w
- }
- func testRouteOK(method string, t *testing.T) {
- // SETUP
- passed := false
- r := New()
- r.Handle(method, "/test", []HandlerFunc{func(c *Context) {
- passed = true
- }})
- // RUN
- w := performRequest(r, method, "/test")
- // TEST
- assert.True(t, passed)
- assert.Equal(t, w.Code, http.StatusOK)
- }
- // TestSingleRouteOK tests that POST route is correctly invoked.
- func testRouteNotOK(method string, t *testing.T) {
- // SETUP
- passed := false
- router := New()
- router.Handle(method, "/test_2", []HandlerFunc{func(c *Context) {
- passed = true
- }})
- // RUN
- w := performRequest(router, method, "/test")
- // TEST
- assert.False(t, passed)
- assert.Equal(t, w.Code, http.StatusNotFound)
- }
- // TestSingleRouteOK tests that POST route is correctly invoked.
- func testRouteNotOK2(method string, t *testing.T) {
- // SETUP
- passed := false
- router := New()
- var methodRoute string
- if method == "POST" {
- methodRoute = "GET"
- } else {
- methodRoute = "POST"
- }
- router.Handle(methodRoute, "/test", []HandlerFunc{func(c *Context) {
- passed = true
- }})
- // RUN
- w := performRequest(router, method, "/test")
- // TEST
- assert.False(t, passed)
- assert.Equal(t, w.Code, http.StatusMethodNotAllowed)
- }
- func TestRouterGroupRouteOK(t *testing.T) {
- testRouteOK("POST", t)
- testRouteOK("DELETE", t)
- testRouteOK("PATCH", t)
- testRouteOK("PUT", t)
- testRouteOK("OPTIONS", t)
- testRouteOK("HEAD", t)
- }
- // TestSingleRouteOK tests that POST route is correctly invoked.
- func TestRouteNotOK(t *testing.T) {
- testRouteNotOK("POST", t)
- testRouteNotOK("DELETE", t)
- testRouteNotOK("PATCH", t)
- testRouteNotOK("PUT", t)
- testRouteNotOK("OPTIONS", t)
- testRouteNotOK("HEAD", t)
- }
- // TestSingleRouteOK tests that POST route is correctly invoked.
- func TestRouteNotOK2(t *testing.T) {
- testRouteNotOK2("POST", t)
- testRouteNotOK2("DELETE", t)
- testRouteNotOK2("PATCH", t)
- testRouteNotOK2("PUT", t)
- testRouteNotOK2("OPTIONS", t)
- testRouteNotOK2("HEAD", t)
- }
- // TestHandleStaticFile - ensure the static file handles properly
- func TestHandleStaticFile(t *testing.T) {
- // SETUP file
- testRoot, _ := os.Getwd()
- f, err := ioutil.TempFile(testRoot, "")
- if err != nil {
- t.Error(err)
- }
- defer os.Remove(f.Name())
- filePath := path.Join("/", path.Base(f.Name()))
- f.WriteString("Gin Web Framework")
- f.Close()
- // SETUP gin
- r := New()
- r.Static("./", testRoot)
- // RUN
- w := performRequest(r, "GET", filePath)
- // TEST
- if w.Code != 200 {
- t.Errorf("Response code should be 200, was: %d", w.Code)
- }
- if w.Body.String() != "Gin Web Framework" {
- t.Errorf("Response should be test, was: %s", w.Body.String())
- }
- if w.HeaderMap.Get("Content-Type") != "text/plain; charset=utf-8" {
- t.Errorf("Content-Type should be text/plain, was %s", w.HeaderMap.Get("Content-Type"))
- }
- }
- // TestHandleStaticDir - ensure the root/sub dir handles properly
- func TestHandleStaticDir(t *testing.T) {
- // SETUP
- r := New()
- r.Static("/", "./")
- // RUN
- w := performRequest(r, "GET", "/")
- // TEST
- bodyAsString := w.Body.String()
- if w.Code != 200 {
- t.Errorf("Response code should be 200, was: %d", w.Code)
- }
- if len(bodyAsString) == 0 {
- t.Errorf("Got empty body instead of file tree")
- }
- if !strings.Contains(bodyAsString, "gin.go") {
- t.Errorf("Can't find:`gin.go` in file tree: %s", bodyAsString)
- }
- if w.HeaderMap.Get("Content-Type") != "text/html; charset=utf-8" {
- t.Errorf("Content-Type should be text/plain, was %s", w.HeaderMap.Get("Content-Type"))
- }
- }
- // TestHandleHeadToDir - ensure the root/sub dir handles properly
- func TestHandleHeadToDir(t *testing.T) {
- // SETUP
- router := New()
- router.Static("/", "./")
- // RUN
- w := performRequest(router, "HEAD", "/")
- // TEST
- bodyAsString := w.Body.String()
- assert.Equal(t, w.Code, 200)
- assert.NotEmpty(t, bodyAsString)
- assert.Contains(t, bodyAsString, "gin.go")
- assert.Equal(t, w.HeaderMap.Get("Content-Type"), "text/html; charset=utf-8")
- }
- func TestContextGeneralCase(t *testing.T) {
- signature := ""
- router := New()
- router.Use(func(c *Context) {
- signature += "A"
- c.Next()
- signature += "B"
- })
- router.Use(func(c *Context) {
- signature += "C"
- })
- router.GET("/", func(c *Context) {
- signature += "D"
- })
- router.NoRoute(func(c *Context) {
- signature += "X"
- })
- router.NoMethod(func(c *Context) {
- signature += "X"
- })
- // RUN
- w := performRequest(router, "GET", "/")
- // TEST
- assert.Equal(t, w.Code, 200)
- assert.Equal(t, signature, "ACDB")
- }
- // TestBadAbortHandlersChain - ensure that Abort after switch context will not interrupt pending handlers
- func TestContextNextOrder(t *testing.T) {
- signature := ""
- router := New()
- router.Use(func(c *Context) {
- signature += "A"
- c.Next()
- signature += "B"
- })
- router.Use(func(c *Context) {
- signature += "C"
- c.Next()
- signature += "D"
- })
- router.NoRoute(func(c *Context) {
- signature += "E"
- c.Next()
- signature += "F"
- }, func(c *Context) {
- signature += "G"
- c.Next()
- signature += "H"
- })
- // RUN
- w := performRequest(router, "GET", "/")
- // TEST
- assert.Equal(t, w.Code, 404)
- assert.Equal(t, signature, "ACEGHFDB")
- }
- // TestAbortHandlersChain - ensure that Abort interrupt used middlewares in fifo order
- func TestAbortHandlersChain(t *testing.T) {
- signature := ""
- router := New()
- router.Use(func(c *Context) {
- signature += "A"
- })
- router.Use(func(c *Context) {
- signature += "C"
- c.AbortWithStatus(409)
- c.Next()
- signature += "D"
- })
- router.GET("/", func(c *Context) {
- signature += "D"
- c.Next()
- signature += "E"
- })
- // RUN
- w := performRequest(router, "GET", "/")
- // TEST
- assert.Equal(t, signature, "ACD")
- assert.Equal(t, w.Code, 409)
- }
- func TestAbortHandlersChainAndNext(t *testing.T) {
- signature := ""
- router := New()
- router.Use(func(c *Context) {
- signature += "A"
- c.AbortWithStatus(410)
- c.Next()
- signature += "B"
- })
- router.GET("/", func(c *Context) {
- signature += "C"
- c.Next()
- })
- // RUN
- w := performRequest(router, "GET", "/")
- // TEST
- assert.Equal(t, signature, "AB")
- assert.Equal(t, w.Code, 410)
- }
- // TestContextParamsGet tests that a parameter can be parsed from the URL.
- func TestContextParamsByName(t *testing.T) {
- name := ""
- lastName := ""
- router := New()
- router.GET("/test/:name/:last_name", func(c *Context) {
- name = c.Params.ByName("name")
- lastName = c.Params.ByName("last_name")
- })
- // RUN
- w := performRequest(router, "GET", "/test/john/smith")
- // TEST
- assert.Equal(t, w.Code, 200)
- assert.Equal(t, name, "john")
- assert.Equal(t, lastName, "smith")
- }
- // TestFailHandlersChain - ensure that Fail interrupt used middlewares in fifo order as
- // as well as Abort
- func TestFailHandlersChain(t *testing.T) {
- // SETUP
- var stepsPassed int = 0
- r := New()
- r.Use(func(context *Context) {
- stepsPassed += 1
- context.Fail(500, errors.New("foo"))
- })
- r.Use(func(context *Context) {
- stepsPassed += 1
- context.Next()
- stepsPassed += 1
- })
- // RUN
- w := performRequest(r, "GET", "/")
- // TEST
- assert.Equal(t, w.Code, 500, "Response code should be Server error, was: %d", w.Code)
- assert.Equal(t, stepsPassed, 1, "Falied to switch context in handler function: %d", stepsPassed)
- }
|