Added tests for ServeFiles #37
This commit is contained in:
		
							
								
								
									
										116
									
								
								gin_test.go
									
									
									
									
									
								
							
							
						
						
									
										116
									
								
								gin_test.go
									
									
									
									
									
								
							@ -1,10 +1,14 @@
 | 
				
			|||||||
package gin
 | 
					package gin
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import(
 | 
					import (
 | 
				
			||||||
	"testing"
 | 
					 | 
				
			||||||
	"html/template"
 | 
						"html/template"
 | 
				
			||||||
 | 
						"io/ioutil"
 | 
				
			||||||
	"net/http"
 | 
						"net/http"
 | 
				
			||||||
	"net/http/httptest"
 | 
						"net/http/httptest"
 | 
				
			||||||
 | 
						"os"
 | 
				
			||||||
 | 
						"path"
 | 
				
			||||||
 | 
						"strings"
 | 
				
			||||||
 | 
						"testing"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// TestRouterGroupGETRouteOK tests that GET route is correctly invoked.
 | 
					// TestRouterGroupGETRouteOK tests that GET route is correctly invoked.
 | 
				
			||||||
@ -14,7 +18,7 @@ func TestRouterGroupGETRouteOK(t *testing.T) {
 | 
				
			|||||||
	passed := false
 | 
						passed := false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	r := Default()
 | 
						r := Default()
 | 
				
			||||||
	r.GET("/test", func (c *Context) {
 | 
						r.GET("/test", func(c *Context) {
 | 
				
			||||||
		passed = true
 | 
							passed = true
 | 
				
			||||||
	})
 | 
						})
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -34,9 +38,9 @@ func TestRouterGroupGETRouteOK(t *testing.T) {
 | 
				
			|||||||
func TestRouterGroupGETNoRootExistsRouteOK(t *testing.T) {
 | 
					func TestRouterGroupGETNoRootExistsRouteOK(t *testing.T) {
 | 
				
			||||||
	req, _ := http.NewRequest("GET", "/", nil)
 | 
						req, _ := http.NewRequest("GET", "/", nil)
 | 
				
			||||||
	w := httptest.NewRecorder()
 | 
						w := httptest.NewRecorder()
 | 
				
			||||||
	
 | 
					
 | 
				
			||||||
	r := Default()
 | 
						r := Default()
 | 
				
			||||||
	r.GET("/test", func (c *Context) {
 | 
						r.GET("/test", func(c *Context) {
 | 
				
			||||||
	})
 | 
						})
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	r.ServeHTTP(w, req)
 | 
						r.ServeHTTP(w, req)
 | 
				
			||||||
@ -54,7 +58,7 @@ func TestRouterGroupPOSTRouteOK(t *testing.T) {
 | 
				
			|||||||
	passed := false
 | 
						passed := false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	r := Default()
 | 
						r := Default()
 | 
				
			||||||
	r.POST("/test", func (c *Context) {
 | 
						r.POST("/test", func(c *Context) {
 | 
				
			||||||
		passed = true
 | 
							passed = true
 | 
				
			||||||
	})
 | 
						})
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -76,7 +80,7 @@ func TestRouterGroupDELETERouteOK(t *testing.T) {
 | 
				
			|||||||
	passed := false
 | 
						passed := false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	r := Default()
 | 
						r := Default()
 | 
				
			||||||
	r.DELETE("/test", func (c *Context) {
 | 
						r.DELETE("/test", func(c *Context) {
 | 
				
			||||||
		passed = true
 | 
							passed = true
 | 
				
			||||||
	})
 | 
						})
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -98,7 +102,7 @@ func TestRouterGroupPATCHRouteOK(t *testing.T) {
 | 
				
			|||||||
	passed := false
 | 
						passed := false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	r := Default()
 | 
						r := Default()
 | 
				
			||||||
	r.PATCH("/test", func (c *Context) {
 | 
						r.PATCH("/test", func(c *Context) {
 | 
				
			||||||
		passed = true
 | 
							passed = true
 | 
				
			||||||
	})
 | 
						})
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -120,7 +124,7 @@ func TestRouterGroupPUTRouteOK(t *testing.T) {
 | 
				
			|||||||
	passed := false
 | 
						passed := false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	r := Default()
 | 
						r := Default()
 | 
				
			||||||
	r.PUT("/test", func (c *Context) {
 | 
						r.PUT("/test", func(c *Context) {
 | 
				
			||||||
		passed = true
 | 
							passed = true
 | 
				
			||||||
	})
 | 
						})
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -135,7 +139,6 @@ func TestRouterGroupPUTRouteOK(t *testing.T) {
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 | 
				
			||||||
// TestRouterGroupOPTIONSRouteOK tests that OPTIONS route is correctly invoked.
 | 
					// TestRouterGroupOPTIONSRouteOK tests that OPTIONS route is correctly invoked.
 | 
				
			||||||
func TestRouterGroupOPTIONSRouteOK(t *testing.T) {
 | 
					func TestRouterGroupOPTIONSRouteOK(t *testing.T) {
 | 
				
			||||||
	req, _ := http.NewRequest("OPTIONS", "/test", nil)
 | 
						req, _ := http.NewRequest("OPTIONS", "/test", nil)
 | 
				
			||||||
@ -143,7 +146,7 @@ func TestRouterGroupOPTIONSRouteOK(t *testing.T) {
 | 
				
			|||||||
	passed := false
 | 
						passed := false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	r := Default()
 | 
						r := Default()
 | 
				
			||||||
	r.OPTIONS("/test", func (c *Context) {
 | 
						r.OPTIONS("/test", func(c *Context) {
 | 
				
			||||||
		passed = true
 | 
							passed = true
 | 
				
			||||||
	})
 | 
						})
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -158,7 +161,6 @@ func TestRouterGroupOPTIONSRouteOK(t *testing.T) {
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 | 
				
			||||||
// TestRouterGroupHEADRouteOK tests that HEAD route is correctly invoked.
 | 
					// TestRouterGroupHEADRouteOK tests that HEAD route is correctly invoked.
 | 
				
			||||||
func TestRouterGroupHEADRouteOK(t *testing.T) {
 | 
					func TestRouterGroupHEADRouteOK(t *testing.T) {
 | 
				
			||||||
	req, _ := http.NewRequest("HEAD", "/test", nil)
 | 
						req, _ := http.NewRequest("HEAD", "/test", nil)
 | 
				
			||||||
@ -166,7 +168,7 @@ func TestRouterGroupHEADRouteOK(t *testing.T) {
 | 
				
			|||||||
	passed := false
 | 
						passed := false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	r := Default()
 | 
						r := Default()
 | 
				
			||||||
	r.HEAD("/test", func (c *Context) {
 | 
						r.HEAD("/test", func(c *Context) {
 | 
				
			||||||
		passed = true
 | 
							passed = true
 | 
				
			||||||
	})
 | 
						})
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -181,15 +183,14 @@ func TestRouterGroupHEADRouteOK(t *testing.T) {
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 | 
				
			||||||
// TestRouterGroup404 tests that 404 is returned for a route that does not exist.
 | 
					// TestRouterGroup404 tests that 404 is returned for a route that does not exist.
 | 
				
			||||||
func TestEngine404(t *testing.T) {
 | 
					func TestEngine404(t *testing.T) {
 | 
				
			||||||
	req, _ := http.NewRequest("GET", "/", nil)
 | 
						req, _ := http.NewRequest("GET", "/", nil)
 | 
				
			||||||
	w := httptest.NewRecorder()
 | 
						w := httptest.NewRecorder()
 | 
				
			||||||
	
 | 
					
 | 
				
			||||||
	r := Default()
 | 
						r := Default()
 | 
				
			||||||
	r.ServeHTTP(w, req)
 | 
						r.ServeHTTP(w, req)
 | 
				
			||||||
	
 | 
					
 | 
				
			||||||
	if w.Code != http.StatusNotFound {
 | 
						if w.Code != http.StatusNotFound {
 | 
				
			||||||
		t.Errorf("Response code should be %v, was %d", http.StatusNotFound, w.Code)
 | 
							t.Errorf("Response code should be %v, was %d", http.StatusNotFound, w.Code)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
@ -202,7 +203,7 @@ func TestContextParamsByName(t *testing.T) {
 | 
				
			|||||||
	name := ""
 | 
						name := ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	r := Default()
 | 
						r := Default()
 | 
				
			||||||
	r.GET("/test/:name", func (c *Context) {
 | 
						r.GET("/test/:name", func(c *Context) {
 | 
				
			||||||
		name = c.Params.ByName("name")
 | 
							name = c.Params.ByName("name")
 | 
				
			||||||
	})
 | 
						})
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -220,7 +221,7 @@ func TestContextSetGet(t *testing.T) {
 | 
				
			|||||||
	w := httptest.NewRecorder()
 | 
						w := httptest.NewRecorder()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	r := Default()
 | 
						r := Default()
 | 
				
			||||||
	r.GET("/test", func (c *Context) {
 | 
						r.GET("/test", func(c *Context) {
 | 
				
			||||||
		// Key should be lazily created
 | 
							// Key should be lazily created
 | 
				
			||||||
		if c.Keys != nil {
 | 
							if c.Keys != nil {
 | 
				
			||||||
			t.Error("Keys should be nil")
 | 
								t.Error("Keys should be nil")
 | 
				
			||||||
@ -244,7 +245,7 @@ func TestContextJSON(t *testing.T) {
 | 
				
			|||||||
	w := httptest.NewRecorder()
 | 
						w := httptest.NewRecorder()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	r := Default()
 | 
						r := Default()
 | 
				
			||||||
	r.GET("/test", func (c *Context) {
 | 
						r.GET("/test", func(c *Context) {
 | 
				
			||||||
		c.JSON(200, H{"foo": "bar"})
 | 
							c.JSON(200, H{"foo": "bar"})
 | 
				
			||||||
	})
 | 
						})
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -268,9 +269,9 @@ func TestContextHTML(t *testing.T) {
 | 
				
			|||||||
	r := Default()
 | 
						r := Default()
 | 
				
			||||||
	r.HTMLTemplates = template.Must(template.New("t").Parse(`Hello {{.Name}}`))
 | 
						r.HTMLTemplates = template.Must(template.New("t").Parse(`Hello {{.Name}}`))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	type TestData struct { Name string }
 | 
						type TestData struct{ Name string }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	r.GET("/test", func (c *Context) {
 | 
						r.GET("/test", func(c *Context) {
 | 
				
			||||||
		c.HTML(200, "t", TestData{"alexandernyquist"})
 | 
							c.HTML(200, "t", TestData{"alexandernyquist"})
 | 
				
			||||||
	})
 | 
						})
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -292,7 +293,7 @@ func TestContextString(t *testing.T) {
 | 
				
			|||||||
	w := httptest.NewRecorder()
 | 
						w := httptest.NewRecorder()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	r := Default()
 | 
						r := Default()
 | 
				
			||||||
	r.GET("/test", func (c *Context) {
 | 
						r.GET("/test", func(c *Context) {
 | 
				
			||||||
		c.String(200, "test")
 | 
							c.String(200, "test")
 | 
				
			||||||
	})
 | 
						})
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -305,4 +306,73 @@ func TestContextString(t *testing.T) {
 | 
				
			|||||||
	if w.HeaderMap.Get("Content-Type") != "text/plain" {
 | 
						if w.HeaderMap.Get("Content-Type") != "text/plain" {
 | 
				
			||||||
		t.Errorf("Content-Type should be text/plain, was %s", w.HeaderMap.Get("Content-Type"))
 | 
							t.Errorf("Content-Type should be text/plain, was %s", w.HeaderMap.Get("Content-Type"))
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// 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.ServeFiles("/*filepath", http.Dir("./"))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						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.ServeFiles("/*filepath", http.Dir("./"))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						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"))
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user