summaryrefslogtreecommitdiffstats
path: root/tpl/encoding/encoding_test.go
diff options
context:
space:
mode:
authorCameron Moore <moorereason@gmail.com>2020-03-23 21:03:52 -0500
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-04-07 20:01:57 +0200
commit8568928aa8e82a6bd7de4555c3703d8835fbd25b (patch)
tree8868bac9237f673eaa837b5c9cafc2e14623b3ad /tpl/encoding/encoding_test.go
parent1bc93021e3dca6405628f6fdd2dc32cff9c9836c (diff)
tpl: Extend Jsonify to support options map
Add support for prefix and indent options used by json.MarshalIndent from the Go stdlib.
Diffstat (limited to 'tpl/encoding/encoding_test.go')
-rw-r--r--tpl/encoding/encoding_test.go17
1 files changed, 12 insertions, 5 deletions
diff --git a/tpl/encoding/encoding_test.go b/tpl/encoding/encoding_test.go
index 2f0988ff3..815aa2613 100644
--- a/tpl/encoding/encoding_test.go
+++ b/tpl/encoding/encoding_test.go
@@ -1,4 +1,4 @@
-// Copyright 2017 The Hugo Authors. All rights reserved.
+// Copyright 2020 The Hugo Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -83,20 +83,27 @@ func TestJsonify(t *testing.T) {
ns := New()
for _, test := range []struct {
- indent []interface{}
+ opts interface{}
v interface{}
expect interface{}
}{
{nil, []string{"a", "b"}, template.HTML(`["a","b"]`)},
- {[]interface{}{" "}, []string{"a", "b"}, template.HTML("[\n \"a\",\n \"b\"\n]")},
+ {map[string]string{"indent": "<i>"}, []string{"a", "b"}, template.HTML("[\n<i>\"a\",\n<i>\"b\"\n]")},
+ {map[string]string{"prefix": "<p>"}, []string{"a", "b"}, template.HTML("[\n<p>\"a\",\n<p>\"b\"\n<p>]")},
+ {map[string]string{"prefix": "<p>", "indent": "<i>"}, []string{"a", "b"}, template.HTML("[\n<p><i>\"a\",\n<p><i>\"b\"\n<p>]")},
{nil, tstNoStringer{}, template.HTML("{}")},
{nil, nil, template.HTML("null")},
// errors
{nil, math.NaN(), false},
- {[]interface{}{tstNoStringer{}}, []string{"a", "b"}, false},
+ {tstNoStringer{}, []string{"a", "b"}, false},
} {
+ args := []interface{}{}
- args := append(test.indent, test.v)
+ if test.opts != nil {
+ args = append(args, test.opts)
+ }
+
+ args = append(args, test.v)
result, err := ns.Jsonify(args...)