2017-03-13 18:55:02 -04:00
|
|
|
// Copyright 2017 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 collections
|
|
|
|
|
|
|
|
import (
|
2019-11-11 07:54:57 -05:00
|
|
|
"fmt"
|
2017-03-13 18:55:02 -04:00
|
|
|
"testing"
|
|
|
|
|
2019-11-21 15:59:38 -05:00
|
|
|
"github.com/gohugoio/hugo/common/maps"
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
qt "github.com/frankban/quicktest"
|
2017-06-13 12:42:45 -04:00
|
|
|
"github.com/gohugoio/hugo/deps"
|
2017-03-13 18:55:02 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestIndex(t *testing.T) {
|
|
|
|
t.Parallel()
|
2019-08-10 15:05:17 -04:00
|
|
|
c := qt.New(t)
|
2017-03-13 18:55:02 -04:00
|
|
|
ns := New(&deps.Deps{})
|
|
|
|
|
|
|
|
for i, test := range []struct {
|
|
|
|
item interface{}
|
|
|
|
indices []interface{}
|
|
|
|
expect interface{}
|
|
|
|
isErr bool
|
|
|
|
}{
|
|
|
|
{[]int{0, 1}, []interface{}{0}, 0, false},
|
|
|
|
{[]int{0, 1}, []interface{}{9}, nil, false}, // index out of range
|
|
|
|
{[]uint{0, 1}, nil, []uint{0, 1}, false},
|
2017-08-07 14:03:15 -04:00
|
|
|
{[][]int{{1, 2}, {3, 4}}, []interface{}{0, 0}, 1, false},
|
2017-03-13 18:55:02 -04:00
|
|
|
{map[int]int{1: 10, 2: 20}, []interface{}{1}, 10, false},
|
|
|
|
{map[int]int{1: 10, 2: 20}, []interface{}{0}, 0, false},
|
2019-11-03 13:41:29 -05:00
|
|
|
{map[string]map[string]string{"a": {"b": "c"}}, []interface{}{"a", "b"}, "c", false},
|
|
|
|
{[]map[string]map[string]string{{"a": {"b": "c"}}}, []interface{}{0, "a", "b"}, "c", false},
|
|
|
|
{map[string]map[string]interface{}{"a": {"b": []string{"c", "d"}}}, []interface{}{"a", "b", 1}, "d", false},
|
2019-11-11 07:54:57 -05:00
|
|
|
{map[string]map[string]string{"a": {"b": "c"}}, []interface{}{[]string{"a", "b"}}, "c", false},
|
2019-11-21 15:59:38 -05:00
|
|
|
{maps.Params{"a": "av"}, []interface{}{"A"}, "av", false},
|
|
|
|
{maps.Params{"a": map[string]interface{}{"b": "bv"}}, []interface{}{"A", "B"}, "bv", false},
|
2017-03-13 18:55:02 -04:00
|
|
|
// errors
|
|
|
|
{nil, nil, nil, true},
|
|
|
|
{[]int{0, 1}, []interface{}{"1"}, nil, true},
|
|
|
|
{[]int{0, 1}, []interface{}{nil}, nil, true},
|
|
|
|
{tstNoStringer{}, []interface{}{0}, nil, true},
|
|
|
|
} {
|
2019-11-11 07:54:57 -05:00
|
|
|
c.Run(fmt.Sprint(i), func(c *qt.C) {
|
|
|
|
errMsg := qt.Commentf("[%d] %v", i, test)
|
2017-03-13 18:55:02 -04:00
|
|
|
|
2019-11-11 07:54:57 -05:00
|
|
|
result, err := ns.Index(test.item, test.indices...)
|
2017-03-13 18:55:02 -04:00
|
|
|
|
2019-11-11 07:54:57 -05:00
|
|
|
if test.isErr {
|
|
|
|
c.Assert(err, qt.Not(qt.IsNil), errMsg)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c.Assert(err, qt.IsNil, errMsg)
|
|
|
|
c.Assert(result, qt.DeepEquals, test.expect, errMsg)
|
|
|
|
})
|
2017-03-13 18:55:02 -04:00
|
|
|
}
|
|
|
|
}
|