-
Notifications
You must be signed in to change notification settings - Fork 56
/
line_number_test.go
79 lines (65 loc) · 1.38 KB
/
line_number_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
package plush_test
import (
"testing"
"github.com/gobuffalo/plush/v5"
"github.com/stretchr/testify/require"
)
func Test_LineNumberErrors(t *testing.T) {
r := require.New(t)
input := `<p>
<%= f.Foo %>
</p>`
_, err := plush.Render(input, plush.NewContext())
r.Error(err)
r.Contains(err.Error(), "line 2:")
}
func Test_LineNumberErrors_ForLoop(t *testing.T) {
r := require.New(t)
input := `
<%= for (n) in numbers.Foo { %>
<%= n %>
<% } %>
`
_, err := plush.Render(input, plush.NewContext())
r.Error(err)
r.Contains(err.Error(), "line 2:")
}
func Test_LineNumberErrors_ForLoop2(t *testing.T) {
r := require.New(t)
input := `
<%= for (n in numbers.Foo { %>
<%= if (n == 3) { %>
<%= n %>
<% } %>
<% } %>
`
_, err := plush.Parse(input)
r.Error(err)
r.Contains(err.Error(), "line 2:")
}
func Test_LineNumberErrors_InsideForLoop(t *testing.T) {
r := require.New(t)
input := `
<%= for (n) in numbers { %>
<%= n.Foo %>
<% } %>
`
ctx := plush.NewContext()
ctx.Set("numbers", []int{1, 2})
_, err := plush.Render(input, ctx)
r.Error(err)
r.Contains(err.Error(), "line 3:")
}
func Test_LineNumberErrors_MissingKeyword(t *testing.T) {
r := require.New(t)
input := `
<%= (n) in numbers { %>
<%= n %>
<% } %>
`
ctx := plush.NewContext()
ctx.Set("numbers", []int{1, 2})
_, err := plush.Render(input, ctx)
r.Error(err)
r.Contains(err.Error(), "line 6:")
}