| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295 |
- package gin
- import (
- "io/ioutil"
- "net/http"
- "net/http/httptest"
- "os"
- "path"
- "strings"
- "testing"
- )
- // TestRouterGroupGETRouteOK tests that GET route is correctly invoked.
- func TestRouterGroupGETRouteOK(t *testing.T) {
- req, _ := http.NewRequest("GET", "/test", nil)
- w := httptest.NewRecorder()
- passed := false
- r := Default()
- r.GET("/test", func(c *Context) {
- passed = true
- })
- r.ServeHTTP(w, req)
- if passed == false {
- t.Errorf("GET route handler was not invoked.")
- }
- if w.Code != http.StatusOK {
- t.Errorf("Status code should be %v, was %d", http.StatusOK, w.Code)
- }
- }
- // TestRouterGroupGETNoRootExistsRouteOK tests that a GET requse to root is correctly
- // handled (404) when no root route exists.
- func TestRouterGroupGETNoRootExistsRouteOK(t *testing.T) {
- req, _ := http.NewRequest("GET", "/", nil)
- w := httptest.NewRecorder()
- r := Default()
- r.GET("/test", func(c *Context) {
- })
- r.ServeHTTP(w, req)
- if w.Code != http.StatusNotFound {
- // If this fails, it's because httprouter needs to be updated to at least f78f58a0db
- t.Errorf("Status code should be %v, was %d. Location: %s", http.StatusNotFound, w.Code, w.HeaderMap.Get("Location"))
- }
- }
- // TestRouterGroupPOSTRouteOK tests that POST route is correctly invoked.
- func TestRouterGroupPOSTRouteOK(t *testing.T) {
- req, _ := http.NewRequest("POST", "/test", nil)
- w := httptest.NewRecorder()
- passed := false
- r := Default()
- r.POST("/test", func(c *Context) {
- passed = true
- })
- r.ServeHTTP(w, req)
- if passed == false {
- t.Errorf("POST route handler was not invoked.")
- }
- if w.Code != http.StatusOK {
- t.Errorf("Status code should be %v, was %d", http.StatusOK, w.Code)
- }
- }
- // TestRouterGroupDELETERouteOK tests that DELETE route is correctly invoked.
- func TestRouterGroupDELETERouteOK(t *testing.T) {
- req, _ := http.NewRequest("DELETE", "/test", nil)
- w := httptest.NewRecorder()
- passed := false
- r := Default()
- r.DELETE("/test", func(c *Context) {
- passed = true
- })
- r.ServeHTTP(w, req)
- if passed == false {
- t.Errorf("DELETE route handler was not invoked.")
- }
- if w.Code != http.StatusOK {
- t.Errorf("Status code should be %v, was %d", http.StatusOK, w.Code)
- }
- }
- // TestRouterGroupPATCHRouteOK tests that PATCH route is correctly invoked.
- func TestRouterGroupPATCHRouteOK(t *testing.T) {
- req, _ := http.NewRequest("PATCH", "/test", nil)
- w := httptest.NewRecorder()
- passed := false
- r := Default()
- r.PATCH("/test", func(c *Context) {
- passed = true
- })
- r.ServeHTTP(w, req)
- if passed == false {
- t.Errorf("PATCH route handler was not invoked.")
- }
- if w.Code != http.StatusOK {
- t.Errorf("Status code should be %v, was %d", http.StatusOK, w.Code)
- }
- }
- // TestRouterGroupPUTRouteOK tests that PUT route is correctly invoked.
- func TestRouterGroupPUTRouteOK(t *testing.T) {
- req, _ := http.NewRequest("PUT", "/test", nil)
- w := httptest.NewRecorder()
- passed := false
- r := Default()
- r.PUT("/test", func(c *Context) {
- passed = true
- })
- r.ServeHTTP(w, req)
- if passed == false {
- t.Errorf("PUT route handler was not invoked.")
- }
- if w.Code != http.StatusOK {
- t.Errorf("Status code should be %v, was %d", http.StatusOK, w.Code)
- }
- }
- // TestRouterGroupOPTIONSRouteOK tests that OPTIONS route is correctly invoked.
- func TestRouterGroupOPTIONSRouteOK(t *testing.T) {
- req, _ := http.NewRequest("OPTIONS", "/test", nil)
- w := httptest.NewRecorder()
- passed := false
- r := Default()
- r.OPTIONS("/test", func(c *Context) {
- passed = true
- })
- r.ServeHTTP(w, req)
- if passed == false {
- t.Errorf("OPTIONS route handler was not invoked.")
- }
- if w.Code != http.StatusOK {
- t.Errorf("Status code should be %v, was %d", http.StatusOK, w.Code)
- }
- }
- // TestRouterGroupHEADRouteOK tests that HEAD route is correctly invoked.
- func TestRouterGroupHEADRouteOK(t *testing.T) {
- req, _ := http.NewRequest("HEAD", "/test", nil)
- w := httptest.NewRecorder()
- passed := false
- r := Default()
- r.HEAD("/test", func(c *Context) {
- passed = true
- })
- r.ServeHTTP(w, req)
- if passed == false {
- t.Errorf("HEAD route handler was not invoked.")
- }
- if w.Code != http.StatusOK {
- t.Errorf("Status code should be %v, was %d", http.StatusOK, w.Code)
- }
- }
- // TestRouterGroup404 tests that 404 is returned for a route that does not exist.
- func TestEngine404(t *testing.T) {
- req, _ := http.NewRequest("GET", "/", nil)
- w := httptest.NewRecorder()
- r := Default()
- r.ServeHTTP(w, req)
- if w.Code != http.StatusNotFound {
- t.Errorf("Response code should be %v, was %d", http.StatusNotFound, w.Code)
- }
- }
- // TestHandleStaticFile - ensure the static file handles properly
- func TestHandleStaticFile(t *testing.T) {
- testRoot, _ := os.Getwd()
- f, err := ioutil.TempFile(testRoot, "")
- defer os.Remove(f.Name())
- if err != nil {
- t.Error(err)
- }
- filePath := path.Join("/", path.Base(f.Name()))
- req, _ := http.NewRequest("GET", filePath, nil)
- f.WriteString("Gin Web Framework")
- f.Close()
- w := httptest.NewRecorder()
- r := Default()
- r.Static("./", testRoot)
- r.ServeHTTP(w, req)
- if w.Code != 200 {
- t.Errorf("Response code should be Ok, was: %s", 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) {
- req, _ := http.NewRequest("GET", "/", nil)
- w := httptest.NewRecorder()
- r := Default()
- r.Static("/", "./")
- r.ServeHTTP(w, req)
- if w.Code != 200 {
- t.Errorf("Response code should be Ok, was: %s", w.Code)
- }
- bodyAsString := w.Body.String()
- 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) {
- req, _ := http.NewRequest("HEAD", "/", nil)
- w := httptest.NewRecorder()
- r := Default()
- r.Static("/", "./")
- r.ServeHTTP(w, req)
- if w.Code != 200 {
- t.Errorf("Response code should be Ok, was: %s", w.Code)
- }
- bodyAsString := w.Body.String()
- 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"))
- }
- }
|