-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathware_test.go
90 lines (74 loc) · 1.38 KB
/
ware_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
package ware
import (
"log"
"reflect"
"testing"
)
/* 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))
}
}
func Test_Ware_Run(t *testing.T) {
// just test that Run doesn't bomb
go New().Run()
}
func Test_Ware_App(t *testing.T) {
result := ""
w := New()
w.Use(func(c Context) {
result += "foo"
c.Next()
result += "ban"
})
w.Use(func(c Context) {
result += "bar"
c.Next()
result += "baz"
})
w.Action(func() {
result += "bat"
})
w.Run()
expect(t, result, "foobarbatbazban")
}
func Test_Ware_Handlers(t *testing.T) {
result := ""
batman := func(c Context) {
result += "batman!"
}
w := New()
w.Use(func(c Context) {
result += "foo"
c.Next()
result += "ban"
})
w.Handlers(
batman,
batman,
batman,
)
w.Action(func() {
result += "bat"
})
w.Run()
expect(t, result, "batman!batman!batman!bat")
}
func Test_Ware_Logger_SetPrefix(t *testing.T) {
prefix := ""
w := New()
w.Use(func(log *log.Logger) {
log.SetPrefix("[martini]")
})
w.Use(func(log *log.Logger) {
prefix = log.Prefix()
})
w.Run()
expect(t, prefix, "[martini]")
}