132 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			132 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2014 beego Author. All Rights Reserved.
 | |
| //
 | |
| // Licensed under the Apache License, Version 2.0 (the "License");
 | |
| // you may not use this file except in compliance with the License.
 | |
| // You may obtain a copy of the License at
 | |
| //
 | |
| //      http://www.apache.org/licenses/LICENSE-2.0
 | |
| //
 | |
| // Unless required by applicable law or agreed to in writing, software
 | |
| // distributed under the License is distributed on an "AS IS" BASIS,
 | |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
| // See the License for the specific language governing permissions and
 | |
| // limitations under the License.
 | |
| 
 | |
| package session
 | |
| 
 | |
| import (
 | |
| 	"crypto/aes"
 | |
| 	"encoding/json"
 | |
| 	"testing"
 | |
| )
 | |
| 
 | |
| func Test_gob(t *testing.T) {
 | |
| 	a := make(map[interface{}]interface{})
 | |
| 	a["username"] = "astaxie"
 | |
| 	a[12] = 234
 | |
| 	a["user"] = User{"asta", "xie"}
 | |
| 	b, err := EncodeGob(a)
 | |
| 	if err != nil {
 | |
| 		t.Error(err)
 | |
| 	}
 | |
| 	c, err := DecodeGob(b)
 | |
| 	if err != nil {
 | |
| 		t.Error(err)
 | |
| 	}
 | |
| 	if len(c) == 0 {
 | |
| 		t.Error("decodeGob empty")
 | |
| 	}
 | |
| 	if c["username"] != "astaxie" {
 | |
| 		t.Error("decode string error")
 | |
| 	}
 | |
| 	if c[12] != 234 {
 | |
| 		t.Error("decode int error")
 | |
| 	}
 | |
| 	if c["user"].(User).Username != "asta" {
 | |
| 		t.Error("decode struct error")
 | |
| 	}
 | |
| }
 | |
| 
 | |
| type User struct {
 | |
| 	Username string
 | |
| 	NickName string
 | |
| }
 | |
| 
 | |
| func TestGenerate(t *testing.T) {
 | |
| 	str := generateRandomKey(20)
 | |
| 	if len(str) != 20 {
 | |
| 		t.Fatal("generate length is not equal to 20")
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestCookieEncodeDecode(t *testing.T) {
 | |
| 	hashKey := "testhashKey"
 | |
| 	blockkey := generateRandomKey(16)
 | |
| 	block, err := aes.NewCipher(blockkey)
 | |
| 	if err != nil {
 | |
| 		t.Fatal("NewCipher:", err)
 | |
| 	}
 | |
| 	securityName := string(generateRandomKey(20))
 | |
| 	val := make(map[interface{}]interface{})
 | |
| 	val["name"] = "astaxie"
 | |
| 	val["gender"] = "male"
 | |
| 	str, err := encodeCookie(block, hashKey, securityName, val)
 | |
| 	if err != nil {
 | |
| 		t.Fatal("encodeCookie:", err)
 | |
| 	}
 | |
| 	dst, err := decodeCookie(block, hashKey, securityName, str, 3600)
 | |
| 	if err != nil {
 | |
| 		t.Fatal("decodeCookie", err)
 | |
| 	}
 | |
| 	if dst["name"] != "astaxie" {
 | |
| 		t.Fatal("dst get map error")
 | |
| 	}
 | |
| 	if dst["gender"] != "male" {
 | |
| 		t.Fatal("dst get map error")
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestParseConfig(t *testing.T) {
 | |
| 	s := `{"cookieName":"gosessionid","gclifetime":3600}`
 | |
| 	cf := new(ManagerConfig)
 | |
| 	cf.EnableSetCookie = true
 | |
| 	err := json.Unmarshal([]byte(s), cf)
 | |
| 	if err != nil {
 | |
| 		t.Fatal("parse json error,", err)
 | |
| 	}
 | |
| 	if cf.CookieName != "gosessionid" {
 | |
| 		t.Fatal("parseconfig get cookiename error")
 | |
| 	}
 | |
| 	if cf.Gclifetime != 3600 {
 | |
| 		t.Fatal("parseconfig get gclifetime error")
 | |
| 	}
 | |
| 
 | |
| 	cc := `{"cookieName":"gosessionid","enableSetCookie":false,"gclifetime":3600,"ProviderConfig":"{\"cookieName\":\"gosessionid\",\"securityKey\":\"beegocookiehashkey\"}"}`
 | |
| 	cf2 := new(ManagerConfig)
 | |
| 	cf2.EnableSetCookie = true
 | |
| 	err = json.Unmarshal([]byte(cc), cf2)
 | |
| 	if err != nil {
 | |
| 		t.Fatal("parse json error,", err)
 | |
| 	}
 | |
| 	if cf2.CookieName != "gosessionid" {
 | |
| 		t.Fatal("parseconfig get cookiename error")
 | |
| 	}
 | |
| 	if cf2.Gclifetime != 3600 {
 | |
| 		t.Fatal("parseconfig get gclifetime error")
 | |
| 	}
 | |
| 	if cf2.EnableSetCookie {
 | |
| 		t.Fatal("parseconfig get enableSetCookie error")
 | |
| 	}
 | |
| 	cconfig := new(cookieConfig)
 | |
| 	err = json.Unmarshal([]byte(cf2.ProviderConfig), cconfig)
 | |
| 	if err != nil {
 | |
| 		t.Fatal("parse ProviderConfig err,", err)
 | |
| 	}
 | |
| 	if cconfig.CookieName != "gosessionid" {
 | |
| 		t.Fatal("ProviderConfig get cookieName error")
 | |
| 	}
 | |
| 	if cconfig.SecurityKey != "beegocookiehashkey" {
 | |
| 		t.Fatal("ProviderConfig get securityKey error")
 | |
| 	}
 | |
| }
 |