forked from gobuffalo/buffalo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flash_test.go
150 lines (117 loc) · 3.24 KB
/
flash_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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
package buffalo
import (
"net/http"
"testing"
"text/template"
"github.com/gobuffalo/buffalo/render"
"github.com/gobuffalo/httptest"
"github.com/stretchr/testify/require"
)
func Test_FlashAdd(t *testing.T) {
r := require.New(t)
f := newFlash(&Session{})
r.Equal(f.data, map[string][]string{})
f.Add("error", "something")
r.Equal(f.data, map[string][]string{
"error": {"something"},
})
f.Add("error", "other")
r.Equal(f.data, map[string][]string{
"error": {"something", "other"},
})
}
func Test_FlashRender(t *testing.T) {
r := require.New(t)
a := New(Options{})
rr := render.New(render.Options{})
a.GET("/", func(c Context) error {
c.Flash().Add("errors", "Error AJ set")
c.Flash().Add("errors", "Error DAL set")
return c.Render(http.StatusCreated, rr.String(errorsTPL))
})
w := httptest.New(a)
res := w.HTML("/").Get()
r.Contains(res.Body.String(), "Error AJ set")
r.Contains(res.Body.String(), "Error DAL set")
}
func Test_FlashRenderEmpty(t *testing.T) {
r := require.New(t)
a := New(Options{})
rr := render.New(render.Options{})
a.GET("/", func(c Context) error {
return c.Render(http.StatusCreated, rr.String(errorsTPL))
})
w := httptest.New(a)
res := w.HTML("/").Get()
r.NotContains(res.Body.String(), "Flash:")
}
const errorsTPL = `
<%= for (k, v) in flash["errors"] { %>
Flash:
<%= k %>:<%= v %>
<% } %>
`
func Test_FlashRenderEntireFlash(t *testing.T) {
r := require.New(t)
a := New(Options{})
rr := render.New(render.Options{})
a.GET("/", func(c Context) error {
c.Flash().Add("something", "something to say!")
return c.Render(http.StatusCreated, rr.String(keyTPL))
})
w := httptest.New(a)
res := w.HTML("/").Get()
r.Contains(res.Body.String(), "something to say!")
}
const keyTPL = `<%= for (k, v) in flash { %>
Flash:
<%= k %>:<%= v %>
<% } %>
`
func Test_FlashRenderCustomKey(t *testing.T) {
r := require.New(t)
a := New(Options{})
rr := render.New(render.Options{})
a.GET("/", func(c Context) error {
c.Flash().Add("something", "something to say!")
return c.Render(http.StatusCreated, rr.String(keyTPL))
})
w := httptest.New(a)
res := w.HTML("/").Get()
r.Contains(res.Body.String(), "something to say!")
}
func Test_FlashRenderCustomKeyNotDefined(t *testing.T) {
r := require.New(t)
a := New(Options{})
rr := render.New(render.Options{})
a.GET("/", func(c Context) error {
return c.Render(http.StatusCreated, rr.String(customKeyTPL))
})
w := httptest.New(a)
res := w.HTML("/").Get()
r.NotContains(res.Body.String(), "something to say!")
}
const customKeyTPL = `
{{#each flash.other as |k value|}}
{{value}}
{{/each}}
`
func Test_FlashNotClearedOnRedirect(t *testing.T) {
r := require.New(t)
a := New(Options{})
rr := render.New(render.Options{})
a.GET("/flash", func(c Context) error {
c.Flash().Add("success", "Antonio, you're welcome!")
return c.Redirect(http.StatusSeeOther, "/")
})
a.GET("/", func(c Context) error {
template := `Message: <%= flash["success"] %>`
return c.Render(http.StatusCreated, rr.String(template))
})
w := httptest.New(a)
res := w.HTML("/flash").Get()
r.Equal(res.Code, http.StatusSeeOther)
r.Equal(res.Location(), "/")
res = w.HTML("/").Get()
r.Contains(res.Body.String(), template.HTMLEscapeString("Antonio, you're welcome!"))
}