This repository has been archived by the owner on Mar 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nodb_test.go
97 lines (79 loc) · 2.24 KB
/
nodb_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// Copyright 2015 tango authors
//
// 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 nodbstore
import (
"bytes"
"fmt"
"net/http"
"net/http/httptest"
"reflect"
"testing"
"github.com/lunny/tango"
"github.com/tango-contrib/session"
)
type SessionAction struct {
session.Session
}
type Test struct {
Id int64
Name string
}
func (action *SessionAction) Get() string {
var test1 = []string{"1", "2"}
action.Session.Set("11", test1)
res := action.Session.Get("11")
fmt.Println(res.([]string))
var test2 = map[string]int{"1": 1, "2": 2}
action.Session.Set("22", test2)
res2 := action.Session.Get("22")
fmt.Println(res2.(map[string]int))
for i := 0; i < 3; i++ {
var test3 = Test{1, "xlw"}
action.Session.Set("33", &test3)
res3 := action.Session.Get("33")
fmt.Println(res3.(*Test))
}
action.Session.Set("test", "1")
return action.Session.Get("test").(string)
}
func TestSession(t *testing.T) {
buff := bytes.NewBufferString("")
recorder := httptest.NewRecorder()
recorder.Body = buff
store, _ := New()
tg := tango.Classic()
tg.Use(session.New(session.Options{
Store: store,
}))
tg.Get("/", new(SessionAction))
req, err := http.NewRequest("GET", "http://localhost:8000/", nil)
if err != nil {
t.Error(err)
}
tg.ServeHTTP(recorder, req)
expect(t, recorder.Code, http.StatusOK)
refute(t, len(buff.String()), 0)
expect(t, buff.String(), "1")
}
/* Test Helpers */
func expect(t *testing.T, a interface{}, b interface{}) {
if a != b {
t.Errorf("Expected %v (type %v) - Got %v (type %v)", b, reflect.TypeOf(b), a, reflect.TypeOf(a))
}
}
func refute(t *testing.T, a interface{}, b interface{}) {
if a == b {
t.Errorf("Did not expect %v (type %v) - Got %v (type %v)", b, reflect.TypeOf(b), a, reflect.TypeOf(a))
}
}