forked from a-h/templ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jsonscript_test.go
58 lines (55 loc) · 1.93 KB
/
jsonscript_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
package templ_test
import (
"bytes"
"context"
"testing"
"github.com/a-h/templ"
"github.com/google/go-cmp/cmp"
)
func TestJSONScriptElement(t *testing.T) {
data := map[string]interface{}{"foo": "bar"}
tests := []struct {
name string
ctx context.Context
e templ.JSONScriptElement
expected string
}{
{
name: "renders data as JSON inside a script element",
e: templ.JSONScript("id", data),
expected: "<script id=\"id\" type=\"application/json\">{\"foo\":\"bar\"}\n</script>",
},
{
name: "if a nonce is available in the context, it is used",
ctx: templ.WithNonce(context.Background(), "nonce-from-context"),
e: templ.JSONScript("idc", data),
expected: "<script id=\"idc\" type=\"application/json\" nonce=\"nonce-from-context\">{\"foo\":\"bar\"}\n</script>",
},
{
name: "if a nonce is provided, it is used",
e: templ.JSONScript("ids", data).WithNonceFromString("nonce-from-string"),
expected: "<script id=\"ids\" type=\"application/json\" nonce=\"nonce-from-string\">{\"foo\":\"bar\"}\n</script>",
},
{
name: "if a nonce function is provided, it is used",
e: templ.JSONScript("idf", data).WithNonceFrom(func(context.Context) string { return "nonce-from-function" }),
expected: "<script id=\"idf\" type=\"application/json\" nonce=\"nonce-from-function\">{\"foo\":\"bar\"}\n</script>",
},
{
name: "if a type is provided, it is used",
e: templ.JSONScript("idt", data).WithType("application/ld+json"),
expected: "<script id=\"idt\" type=\"application/ld+json\">{\"foo\":\"bar\"}\n</script>",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
w := new(bytes.Buffer)
if err := tt.e.Render(tt.ctx, w); err != nil {
t.Fatalf("unexpected error: %v", err)
}
if diff := cmp.Diff(tt.expected, w.String()); diff != "" {
t.Fatalf("unexpected output (-want +got):\n%s", diff)
}
})
}
}