2018-10-08 04:25:15 -04:00
|
|
|
// 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 collections
|
|
|
|
|
|
|
|
import (
|
2019-10-09 05:36:25 -04:00
|
|
|
"html/template"
|
2018-10-08 04:25:15 -04:00
|
|
|
"testing"
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
qt "github.com/frankban/quicktest"
|
2018-10-08 04:25:15 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestAppend(t *testing.T) {
|
|
|
|
t.Parallel()
|
2019-08-10 15:05:17 -04:00
|
|
|
c := qt.New(t)
|
2018-10-08 04:25:15 -04:00
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
for _, test := range []struct {
|
2022-03-17 17:03:27 -04:00
|
|
|
start any
|
|
|
|
addend []any
|
|
|
|
expected any
|
2018-10-08 04:25:15 -04:00
|
|
|
}{
|
2022-03-17 17:03:27 -04:00
|
|
|
{[]string{"a", "b"}, []any{"c"}, []string{"a", "b", "c"}},
|
|
|
|
{[]string{"a", "b"}, []any{"c", "d", "e"}, []string{"a", "b", "c", "d", "e"}},
|
|
|
|
{[]string{"a", "b"}, []any{[]string{"c", "d", "e"}}, []string{"a", "b", "c", "d", "e"}},
|
|
|
|
{[]string{"a"}, []any{"b", template.HTML("c")}, []any{"a", "b", template.HTML("c")}},
|
|
|
|
{nil, []any{"a", "b"}, []string{"a", "b"}},
|
|
|
|
{nil, []any{nil}, []any{nil}},
|
|
|
|
{[]any{}, []any{[]string{"c", "d", "e"}}, []string{"c", "d", "e"}},
|
2020-12-02 07:23:25 -05:00
|
|
|
{
|
|
|
|
tstSlicers{&tstSlicer{"a"}, &tstSlicer{"b"}},
|
2022-03-17 17:03:27 -04:00
|
|
|
[]any{&tstSlicer{"c"}},
|
2020-12-02 07:23:25 -05:00
|
|
|
tstSlicers{&tstSlicer{"a"}, &tstSlicer{"b"}, &tstSlicer{"c"}},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&tstSlicers{&tstSlicer{"a"}, &tstSlicer{"b"}},
|
2022-03-17 17:03:27 -04:00
|
|
|
[]any{&tstSlicer{"c"}},
|
2020-12-02 07:23:25 -05:00
|
|
|
tstSlicers{
|
|
|
|
&tstSlicer{"a"},
|
2018-10-08 04:25:15 -04:00
|
|
|
&tstSlicer{"b"},
|
2020-12-02 07:23:25 -05:00
|
|
|
&tstSlicer{"c"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
testSlicerInterfaces{&tstSlicerIn1{"a"}, &tstSlicerIn1{"b"}},
|
2022-03-17 17:03:27 -04:00
|
|
|
[]any{&tstSlicerIn1{"c"}},
|
2020-12-02 07:23:25 -05:00
|
|
|
testSlicerInterfaces{&tstSlicerIn1{"a"}, &tstSlicerIn1{"b"}, &tstSlicerIn1{"c"}},
|
|
|
|
},
|
2018-10-27 05:10:39 -04:00
|
|
|
//https://github.com/gohugoio/hugo/issues/5361
|
2020-12-02 07:23:25 -05:00
|
|
|
{
|
|
|
|
[]string{"a", "b"},
|
2022-03-17 17:03:27 -04:00
|
|
|
[]any{tstSlicers{&tstSlicer{"a"}, &tstSlicer{"b"}}},
|
|
|
|
[]any{"a", "b", &tstSlicer{"a"}, &tstSlicer{"b"}},
|
2020-12-02 07:23:25 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
[]string{"a", "b"},
|
2022-03-17 17:03:27 -04:00
|
|
|
[]any{&tstSlicer{"a"}},
|
|
|
|
[]any{"a", "b", &tstSlicer{"a"}},
|
2020-12-02 07:23:25 -05:00
|
|
|
},
|
2018-10-08 04:25:15 -04:00
|
|
|
// Errors
|
2022-03-17 17:03:27 -04:00
|
|
|
{"", []any{[]string{"a", "b"}}, false},
|
2018-10-08 04:25:15 -04:00
|
|
|
// No string concatenation.
|
2020-12-02 07:23:25 -05:00
|
|
|
{
|
|
|
|
"ab",
|
2022-03-17 17:03:27 -04:00
|
|
|
[]any{"c"},
|
2020-12-02 07:23:25 -05:00
|
|
|
false,
|
|
|
|
},
|
2018-10-08 04:25:15 -04:00
|
|
|
} {
|
|
|
|
|
|
|
|
result, err := Append(test.start, test.addend...)
|
|
|
|
|
|
|
|
if b, ok := test.expected.(bool); ok && !b {
|
2019-08-10 15:05:17 -04:00
|
|
|
|
|
|
|
c.Assert(err, qt.Not(qt.IsNil))
|
2018-10-08 04:25:15 -04:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
c.Assert(result, qt.DeepEquals, test.expected)
|
2018-10-08 04:25:15 -04:00
|
|
|
}
|
|
|
|
}
|