summaryrefslogtreecommitdiffstats
path: root/tpl/reflect/reflect_test.go
diff options
context:
space:
mode:
authorCameron Moore <moorereason@gmail.com>2018-12-07 16:29:37 -0600
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2018-12-07 23:29:37 +0100
commitc84f506f8ef1f2ca94ab96718a22ba6e290235ac (patch)
tree9233ea0fa7141a811225f19f735ad0c6d52e95ee /tpl/reflect/reflect_test.go
parent4b5f743959394d443c4dcaa0ccae21842b51adaf (diff)
tpl: Add reflect namespace
Add a reflect namespace that offers a two boolean functions for testing if a value is a map or slice. Fixes #4081
Diffstat (limited to 'tpl/reflect/reflect_test.go')
-rw-r--r--tpl/reflect/reflect_test.go55
1 files changed, 55 insertions, 0 deletions
diff --git a/tpl/reflect/reflect_test.go b/tpl/reflect/reflect_test.go
new file mode 100644
index 000000000..9b2ad97a6
--- /dev/null
+++ b/tpl/reflect/reflect_test.go
@@ -0,0 +1,55 @@
+// Copyright 2018 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.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package reflect
+
+import (
+ "fmt"
+ "testing"
+
+ "github.com/stretchr/testify/assert"
+)
+
+var ns = New()
+
+type tstNoStringer struct{}
+
+func TestIsMap(t *testing.T) {
+ for i, test := range []struct {
+ v interface{}
+ expect interface{}
+ }{
+ {map[int]int{1: 1}, true},
+ {"foo", false},
+ {nil, false},
+ } {
+ errMsg := fmt.Sprintf("[%d] %v", i, test)
+ result := ns.IsMap(test.v)
+ assert.Equal(t, test.expect, result, errMsg)
+ }
+}
+
+func TestIsSlice(t *testing.T) {
+ for i, test := range []struct {
+ v interface{}
+ expect interface{}
+ }{
+ {[]int{1, 2}, true},
+ {"foo", false},
+ {nil, false},
+ } {
+ errMsg := fmt.Sprintf("[%d] %v", i, test)
+ result := ns.IsSlice(test.v)
+ assert.Equal(t, test.expect, result, errMsg)
+ }
+}