2015-03-27 23:35:15 +02:00
|
|
|
package echo
|
|
|
|
|
|
|
|
import (
|
2015-03-30 16:38:53 +02:00
|
|
|
"bytes"
|
2015-03-27 23:35:15 +02:00
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
type (
|
|
|
|
user struct {
|
2015-03-31 05:54:38 +02:00
|
|
|
ID string `json:"id"`
|
|
|
|
Name string `json:"name"`
|
2015-03-27 23:35:15 +02:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2015-04-05 23:21:03 +02:00
|
|
|
var u1 = user{
|
2015-03-27 23:35:15 +02:00
|
|
|
ID: "1",
|
|
|
|
Name: "Joe",
|
|
|
|
}
|
|
|
|
|
2015-04-06 05:08:52 +02:00
|
|
|
// TODO: Improve me!
|
2015-03-27 23:35:15 +02:00
|
|
|
func TestEchoMaxParam(t *testing.T) {
|
2015-03-30 08:35:08 +02:00
|
|
|
e := New()
|
|
|
|
e.MaxParam(8)
|
|
|
|
if e.maxParam != 8 {
|
|
|
|
t.Errorf("max param should be 8, found %d", e.maxParam)
|
2015-03-27 23:35:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestEchoIndex(t *testing.T) {
|
2015-03-30 08:35:08 +02:00
|
|
|
e := New()
|
|
|
|
e.Index("example/public/index.html")
|
2015-03-27 23:35:15 +02:00
|
|
|
w := httptest.NewRecorder()
|
2015-04-06 06:49:55 +02:00
|
|
|
r, _ := http.NewRequest(GET, "/", nil)
|
2015-03-30 08:35:08 +02:00
|
|
|
e.ServeHTTP(w, r)
|
2015-03-27 23:35:15 +02:00
|
|
|
if w.Code != 200 {
|
|
|
|
t.Errorf("status code should be 200, found %d", w.Code)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestEchoStatic(t *testing.T) {
|
2015-03-30 08:35:08 +02:00
|
|
|
e := New()
|
2015-04-11 19:09:41 +02:00
|
|
|
e.Static("/scripts", "example/public/scripts")
|
2015-03-27 23:35:15 +02:00
|
|
|
w := httptest.NewRecorder()
|
2015-04-11 19:09:41 +02:00
|
|
|
r, _ := http.NewRequest(GET, "/scripts/main.js", nil)
|
2015-03-30 08:35:08 +02:00
|
|
|
e.ServeHTTP(w, r)
|
2015-03-27 23:35:15 +02:00
|
|
|
if w.Code != 200 {
|
|
|
|
t.Errorf("status code should be 200, found %d", w.Code)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-30 05:44:55 +02:00
|
|
|
func TestEchoMiddleware(t *testing.T) {
|
2015-03-30 08:35:08 +02:00
|
|
|
e := New()
|
2015-03-30 16:38:53 +02:00
|
|
|
b := new(bytes.Buffer)
|
2015-03-30 05:44:55 +02:00
|
|
|
|
2015-03-30 08:35:08 +02:00
|
|
|
// func(*echo.Context)
|
|
|
|
e.Use(func(c *Context) {
|
2015-03-30 16:38:53 +02:00
|
|
|
b.WriteString("a")
|
2015-03-30 08:35:08 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
// func(echo.HandlerFunc) echo.HandlerFunc
|
|
|
|
e.Use(func(h HandlerFunc) HandlerFunc {
|
2015-03-30 05:44:55 +02:00
|
|
|
return HandlerFunc(func(c *Context) {
|
2015-03-30 16:38:53 +02:00
|
|
|
b.WriteString("b")
|
2015-03-30 05:44:55 +02:00
|
|
|
h(c)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
// http.HandlerFunc
|
2015-03-30 08:35:08 +02:00
|
|
|
e.Use(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
2015-03-30 16:38:53 +02:00
|
|
|
b.WriteString("c")
|
2015-03-30 05:44:55 +02:00
|
|
|
}))
|
|
|
|
|
|
|
|
// http.Handler
|
2015-03-30 08:35:08 +02:00
|
|
|
e.Use(http.Handler(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
2015-03-30 16:38:53 +02:00
|
|
|
b.WriteString("d")
|
2015-03-30 05:44:55 +02:00
|
|
|
})))
|
|
|
|
|
|
|
|
// func(http.Handler) http.Handler
|
2015-03-30 16:38:53 +02:00
|
|
|
e.Use(func(h http.Handler) http.Handler {
|
2015-03-30 05:44:55 +02:00
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
2015-03-30 16:38:53 +02:00
|
|
|
b.WriteString("e")
|
|
|
|
h.ServeHTTP(w, r)
|
2015-03-30 05:44:55 +02:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2015-03-30 08:35:08 +02:00
|
|
|
// func(http.ResponseWriter, *http.Request)
|
|
|
|
e.Use(func(w http.ResponseWriter, r *http.Request) {
|
2015-03-30 16:38:53 +02:00
|
|
|
b.WriteString("f")
|
2015-03-30 08:35:08 +02:00
|
|
|
})
|
|
|
|
|
2015-03-30 05:44:55 +02:00
|
|
|
// Route
|
2015-03-30 08:35:08 +02:00
|
|
|
e.Get("/hello", func(c *Context) {
|
2015-04-06 16:52:00 +02:00
|
|
|
c.String(200, "world")
|
2015-03-30 05:44:55 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
w := httptest.NewRecorder()
|
2015-04-06 06:49:55 +02:00
|
|
|
r, _ := http.NewRequest(GET, "/hello", nil)
|
2015-03-30 08:35:08 +02:00
|
|
|
e.ServeHTTP(w, r)
|
2015-03-30 16:38:53 +02:00
|
|
|
if b.String() != "abcdef" {
|
|
|
|
t.Errorf("buffer should be abcdef, found %s", b.String())
|
|
|
|
}
|
2015-03-30 08:35:08 +02:00
|
|
|
if w.Body.String() != "world" {
|
2015-03-30 16:38:53 +02:00
|
|
|
t.Error("body should be world")
|
2015-03-30 08:35:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestEchoHandler(t *testing.T) {
|
|
|
|
e := New()
|
|
|
|
|
|
|
|
// func(*echo.Context)
|
|
|
|
e.Get("/1", func(c *Context) {
|
2015-04-06 16:52:00 +02:00
|
|
|
c.String(http.StatusOK, "1")
|
2015-03-30 08:35:08 +02:00
|
|
|
})
|
|
|
|
w := httptest.NewRecorder()
|
2015-04-06 06:49:55 +02:00
|
|
|
r, _ := http.NewRequest(GET, "/1", nil)
|
2015-03-30 08:35:08 +02:00
|
|
|
e.ServeHTTP(w, r)
|
|
|
|
if w.Body.String() != "1" {
|
2015-03-30 16:38:53 +02:00
|
|
|
t.Error("body should be 1")
|
2015-03-30 08:35:08 +02:00
|
|
|
}
|
|
|
|
|
2015-03-30 16:38:53 +02:00
|
|
|
// http.Handler/http.HandlerFunc
|
2015-03-30 08:35:08 +02:00
|
|
|
e.Get("/2", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
w.Write([]byte("2"))
|
|
|
|
}))
|
|
|
|
w = httptest.NewRecorder()
|
2015-04-06 06:49:55 +02:00
|
|
|
r, _ = http.NewRequest(GET, "/2", nil)
|
2015-03-30 08:35:08 +02:00
|
|
|
e.ServeHTTP(w, r)
|
|
|
|
if w.Body.String() != "2" {
|
2015-03-30 16:38:53 +02:00
|
|
|
t.Error("body should be 2")
|
2015-03-30 08:35:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// func(http.ResponseWriter, *http.Request)
|
|
|
|
e.Get("/3", func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
w.Write([]byte("3"))
|
|
|
|
})
|
|
|
|
w = httptest.NewRecorder()
|
2015-04-06 06:49:55 +02:00
|
|
|
r, _ = http.NewRequest(GET, "/3", nil)
|
2015-03-30 08:35:08 +02:00
|
|
|
e.ServeHTTP(w, r)
|
|
|
|
if w.Body.String() != "3" {
|
2015-03-30 16:38:53 +02:00
|
|
|
t.Error("body should be 3")
|
2015-03-30 08:35:08 +02:00
|
|
|
}
|
2015-03-30 05:44:55 +02:00
|
|
|
}
|
|
|
|
|
2015-04-07 22:02:23 +02:00
|
|
|
func TestEchoGroup(t *testing.T) {
|
2015-04-02 14:02:52 +02:00
|
|
|
b := new(bytes.Buffer)
|
|
|
|
e := New()
|
|
|
|
e.Use(func(*Context) {
|
|
|
|
b.WriteString("1")
|
|
|
|
})
|
|
|
|
e.Get("/users", func(*Context) {})
|
|
|
|
w := httptest.NewRecorder()
|
2015-04-06 06:49:55 +02:00
|
|
|
r, _ := http.NewRequest(GET, "/users", nil)
|
2015-04-02 14:02:52 +02:00
|
|
|
e.ServeHTTP(w, r)
|
|
|
|
if b.String() != "1" {
|
|
|
|
t.Errorf("should only execute middleware 1, executed %s", b.String())
|
|
|
|
}
|
|
|
|
|
2015-04-07 22:02:23 +02:00
|
|
|
// Group
|
|
|
|
g1 := e.Group("/group1")
|
|
|
|
g1.Use(func(*Context) {
|
|
|
|
b.WriteString("2")
|
|
|
|
})
|
|
|
|
g1.Get("/home", func(*Context) {})
|
2015-04-02 14:02:52 +02:00
|
|
|
b.Reset()
|
|
|
|
w = httptest.NewRecorder()
|
2015-04-07 22:02:23 +02:00
|
|
|
r, _ = http.NewRequest(GET, "/group1/home", nil)
|
2015-04-02 14:02:52 +02:00
|
|
|
e.ServeHTTP(w, r)
|
|
|
|
if b.String() != "12" {
|
|
|
|
t.Errorf("should execute middleware 1 & 2, executed %s", b.String())
|
|
|
|
}
|
2015-04-02 23:41:36 +02:00
|
|
|
|
2015-04-07 22:02:23 +02:00
|
|
|
// Group with no parent middleware
|
|
|
|
g2 := e.Group("/group2", func(*Context) {
|
|
|
|
b.WriteString("3")
|
|
|
|
})
|
|
|
|
g2.Get("/home", func(*Context) {})
|
2015-04-02 23:41:36 +02:00
|
|
|
b.Reset()
|
|
|
|
w = httptest.NewRecorder()
|
2015-04-07 22:02:23 +02:00
|
|
|
r, _ = http.NewRequest(GET, "/group2/home", nil)
|
2015-04-02 23:41:36 +02:00
|
|
|
e.ServeHTTP(w, r)
|
|
|
|
if b.String() != "3" {
|
|
|
|
t.Errorf("should execute middleware 3, executed %s", b.String())
|
|
|
|
}
|
2015-04-02 14:02:52 +02:00
|
|
|
}
|
|
|
|
|
2015-03-31 05:54:38 +02:00
|
|
|
func TestEchoMethod(t *testing.T) {
|
2015-04-06 00:30:03 +02:00
|
|
|
e := New()
|
|
|
|
e.Connect("/", func(*Context) {})
|
|
|
|
e.Delete("/", func(*Context) {})
|
|
|
|
e.Get("/", func(*Context) {})
|
|
|
|
e.Head("/", func(*Context) {})
|
|
|
|
e.Options("/", func(*Context) {})
|
|
|
|
e.Patch("/", func(*Context) {})
|
|
|
|
e.Post("/", func(*Context) {})
|
|
|
|
e.Put("/", func(*Context) {})
|
|
|
|
e.Trace("/", func(*Context) {})
|
2015-03-31 05:54:38 +02:00
|
|
|
}
|
|
|
|
|
2015-04-06 05:08:52 +02:00
|
|
|
func TestEchoNotFound(t *testing.T) {
|
2015-03-31 05:54:38 +02:00
|
|
|
e := New()
|
|
|
|
|
2015-04-06 05:08:52 +02:00
|
|
|
// Default NotFound handler
|
2015-04-06 06:49:55 +02:00
|
|
|
r, _ := http.NewRequest(GET, "/files", nil)
|
2015-03-31 05:54:38 +02:00
|
|
|
w := httptest.NewRecorder()
|
|
|
|
e.ServeHTTP(w, r)
|
2015-04-06 05:08:52 +02:00
|
|
|
if w.Code != http.StatusNotFound {
|
|
|
|
t.Errorf("status code should be 404, found %d", w.Code)
|
2015-03-27 23:35:15 +02:00
|
|
|
}
|
2015-03-31 05:54:38 +02:00
|
|
|
|
2015-04-06 05:08:52 +02:00
|
|
|
// Customized NotFound handler
|
|
|
|
e.NotFoundHandler(func(c *Context) {
|
2015-04-06 16:52:00 +02:00
|
|
|
c.String(404, "not found")
|
2015-04-06 05:08:52 +02:00
|
|
|
})
|
2015-03-31 05:54:38 +02:00
|
|
|
w = httptest.NewRecorder()
|
|
|
|
e.ServeHTTP(w, r)
|
2015-04-06 05:08:52 +02:00
|
|
|
if w.Body.String() != "not found" {
|
|
|
|
t.Errorf("body should be `not found`")
|
2015-03-31 05:54:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-05 23:21:03 +02:00
|
|
|
func verifyUser(u2 *user, t *testing.T) {
|
|
|
|
if u2.ID != u1.ID {
|
|
|
|
t.Errorf("user id should be %s, found %s", u1.ID, u2.ID)
|
2015-03-27 23:35:15 +02:00
|
|
|
}
|
2015-04-05 23:21:03 +02:00
|
|
|
if u2.Name != u1.Name {
|
|
|
|
t.Errorf("user name should be %s, found %s", u1.Name, u2.Name)
|
2015-03-27 23:35:15 +02:00
|
|
|
}
|
|
|
|
}
|