-
Notifications
You must be signed in to change notification settings - Fork 56
/
context_test.go
77 lines (62 loc) · 1.38 KB
/
context_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
package plush_test
import (
"html/template"
"testing"
"golang.org/x/sync/errgroup"
"github.com/gobuffalo/plush/v5"
"github.com/stretchr/testify/require"
)
func Test_Context_Set(t *testing.T) {
r := require.New(t)
c := plush.NewContext()
r.Nil(c.Value("foo"))
c.Set("foo", "bar")
r.NotNil(c.Value("foo"))
}
func Test_Context_Set_Concurrency(t *testing.T) {
r := require.New(t)
c := plush.NewContext()
wg := errgroup.Group{}
f := func() error {
c.Set("a", "b")
return nil
}
wg.Go(f)
wg.Go(f)
wg.Go(f)
err := wg.Wait()
r.NoError(err)
}
func Test_Context_Get(t *testing.T) {
r := require.New(t)
c := plush.NewContext()
r.Nil(c.Value("foo"))
c.Set("foo", "bar")
r.Equal("bar", c.Value("foo"))
}
func Test_NewSubContext_Set(t *testing.T) {
r := require.New(t)
c := plush.NewContext()
r.Nil(c.Value("foo"))
sc := c.New()
r.Nil(sc.Value("foo"))
sc.Set("foo", "bar")
r.Equal("bar", sc.Value("foo"))
r.Nil(c.Value("foo"))
}
func Test_NewSubContext_Get(t *testing.T) {
r := require.New(t)
c := plush.NewContext()
c.Set("foo", "bar")
sc := c.New()
r.Equal("bar", sc.Value("foo"))
}
func Test_Context_Override_Helper(t *testing.T) {
r := require.New(t)
c := plush.NewContext()
c.Set("debug", func(i interface{}) template.HTML {
return template.HTML("DEBUG")
})
s := c.Value("debug").(func(interface{}) template.HTML)(nil)
r.Equal(template.HTML("DEBUG"), s)
}