2014-04-12 05:18:18 +00:00
|
|
|
// Beego (http://beego.me/)
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-04-12 05:18:18 +00:00
|
|
|
// @description beego is an open-source, high-performance web framework for the Go programming language.
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-04-12 05:18:18 +00:00
|
|
|
// @link http://github.com/astaxie/beego for the canonical source repository
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-04-12 05:18:18 +00:00
|
|
|
// @license http://github.com/astaxie/beego/blob/master/LICENSE
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-04-12 05:18:18 +00:00
|
|
|
// @authors astaxie
|
2014-01-05 06:48:36 +00:00
|
|
|
package session
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestMem(t *testing.T) {
|
|
|
|
globalSessions, _ := NewManager("memory", `{"cookieName":"gosessionid","gclifetime":10}`)
|
|
|
|
go globalSessions.GC()
|
|
|
|
r, _ := http.NewRequest("GET", "/", nil)
|
|
|
|
w := httptest.NewRecorder()
|
|
|
|
sess := globalSessions.SessionStart(w, r)
|
|
|
|
defer sess.SessionRelease(w)
|
|
|
|
err := sess.Set("username", "astaxie")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal("set error,", err)
|
|
|
|
}
|
|
|
|
if username := sess.Get("username"); username != "astaxie" {
|
|
|
|
t.Fatal("get username error")
|
|
|
|
}
|
|
|
|
if cookiestr := w.Header().Get("Set-Cookie"); cookiestr == "" {
|
|
|
|
t.Fatal("setcookie error")
|
|
|
|
} else {
|
|
|
|
parts := strings.Split(strings.TrimSpace(cookiestr), ";")
|
|
|
|
for k, v := range parts {
|
|
|
|
nameval := strings.Split(v, "=")
|
|
|
|
if k == 0 && nameval[0] != "gosessionid" {
|
|
|
|
t.Fatal("error")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|