2018-07-06 08:12:10 -04:00
|
|
|
// Copyright 2018 The Hugo Authors. All rights reserved.
|
2015-12-10 17:19:38 -05:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2018-07-06 08:12:10 -04:00
|
|
|
package maps
|
2014-12-26 15:18:26 -05:00
|
|
|
|
|
|
|
import (
|
2016-03-06 09:44:17 -05:00
|
|
|
"reflect"
|
2016-03-21 15:42:27 -04:00
|
|
|
"sync"
|
2014-12-26 15:18:26 -05:00
|
|
|
"testing"
|
2017-02-04 22:20:06 -05:00
|
|
|
|
2018-10-08 04:25:15 -04:00
|
|
|
"github.com/stretchr/testify/require"
|
2014-12-26 15:18:26 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestScratchAdd(t *testing.T) {
|
2017-02-04 22:20:06 -05:00
|
|
|
t.Parallel()
|
2018-10-08 04:25:15 -04:00
|
|
|
assert := require.New(t)
|
|
|
|
|
2018-07-06 08:12:10 -04:00
|
|
|
scratch := NewScratch()
|
2014-12-26 15:18:26 -05:00
|
|
|
scratch.Add("int1", 10)
|
|
|
|
scratch.Add("int1", 20)
|
|
|
|
scratch.Add("int2", 20)
|
|
|
|
|
2018-10-08 04:25:15 -04:00
|
|
|
assert.Equal(int64(30), scratch.Get("int1"))
|
|
|
|
assert.Equal(20, scratch.Get("int2"))
|
2014-12-26 15:18:26 -05:00
|
|
|
|
|
|
|
scratch.Add("float1", float64(10.5))
|
|
|
|
scratch.Add("float1", float64(20.1))
|
|
|
|
|
2018-10-08 04:25:15 -04:00
|
|
|
assert.Equal(float64(30.6), scratch.Get("float1"))
|
2014-12-26 15:18:26 -05:00
|
|
|
|
|
|
|
scratch.Add("string1", "Hello ")
|
|
|
|
scratch.Add("string1", "big ")
|
|
|
|
scratch.Add("string1", "World!")
|
|
|
|
|
2018-10-08 04:25:15 -04:00
|
|
|
assert.Equal("Hello big World!", scratch.Get("string1"))
|
2014-12-26 15:18:26 -05:00
|
|
|
|
|
|
|
scratch.Add("scratch", scratch)
|
|
|
|
_, err := scratch.Add("scratch", scratch)
|
|
|
|
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("Expected error from invalid arithmetic")
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-03-06 09:44:17 -05:00
|
|
|
func TestScratchAddSlice(t *testing.T) {
|
2017-02-04 22:20:06 -05:00
|
|
|
t.Parallel()
|
2018-10-08 04:25:15 -04:00
|
|
|
assert := require.New(t)
|
|
|
|
|
2018-07-06 08:12:10 -04:00
|
|
|
scratch := NewScratch()
|
2016-03-06 09:44:17 -05:00
|
|
|
|
|
|
|
_, err := scratch.Add("intSlice", []int{1, 2})
|
2018-10-08 04:25:15 -04:00
|
|
|
assert.NoError(err)
|
2016-03-06 09:44:17 -05:00
|
|
|
_, err = scratch.Add("intSlice", 3)
|
2018-10-08 04:25:15 -04:00
|
|
|
assert.NoError(err)
|
2016-03-06 09:44:17 -05:00
|
|
|
|
|
|
|
sl := scratch.Get("intSlice")
|
|
|
|
expected := []int{1, 2, 3}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(expected, sl) {
|
|
|
|
t.Errorf("Slice difference, go %q expected %q", sl, expected)
|
|
|
|
}
|
|
|
|
_, err = scratch.Add("intSlice", []int{4, 5})
|
|
|
|
|
2018-10-08 04:25:15 -04:00
|
|
|
assert.NoError(err)
|
2016-03-22 18:40:39 -04:00
|
|
|
|
2016-03-06 09:44:17 -05:00
|
|
|
sl = scratch.Get("intSlice")
|
|
|
|
expected = []int{1, 2, 3, 4, 5}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(expected, sl) {
|
|
|
|
t.Errorf("Slice difference, go %q expected %q", sl, expected)
|
|
|
|
}
|
2018-10-08 04:25:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// https://github.com/gohugoio/hugo/issues/5275
|
|
|
|
func TestScratchAddTypedSliceToInterfaceSlice(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
assert := require.New(t)
|
|
|
|
|
|
|
|
scratch := NewScratch()
|
|
|
|
scratch.Set("slice", []interface{}{})
|
|
|
|
|
|
|
|
_, err := scratch.Add("slice", []int{1, 2})
|
|
|
|
assert.NoError(err)
|
|
|
|
assert.Equal([]int{1, 2}, scratch.Get("slice"))
|
2016-03-06 09:44:17 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-10-27 05:10:39 -04:00
|
|
|
// https://github.com/gohugoio/hugo/issues/5361
|
|
|
|
func TestScratchAddDifferentTypedSliceToInterfaceSlice(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
assert := require.New(t)
|
|
|
|
|
|
|
|
scratch := NewScratch()
|
|
|
|
scratch.Set("slice", []string{"foo"})
|
|
|
|
|
|
|
|
_, err := scratch.Add("slice", []int{1, 2})
|
|
|
|
assert.NoError(err)
|
|
|
|
assert.Equal([]interface{}{"foo", 1, 2}, scratch.Get("slice"))
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-12-26 15:18:26 -05:00
|
|
|
func TestScratchSet(t *testing.T) {
|
2017-02-04 22:20:06 -05:00
|
|
|
t.Parallel()
|
2018-10-08 04:25:15 -04:00
|
|
|
assert := require.New(t)
|
|
|
|
|
2018-07-06 08:12:10 -04:00
|
|
|
scratch := NewScratch()
|
2014-12-26 15:18:26 -05:00
|
|
|
scratch.Set("key", "val")
|
2018-10-08 04:25:15 -04:00
|
|
|
assert.Equal("val", scratch.Get("key"))
|
2014-12-26 15:18:26 -05:00
|
|
|
}
|
|
|
|
|
2018-03-16 19:13:23 -04:00
|
|
|
func TestScratchDelete(t *testing.T) {
|
|
|
|
t.Parallel()
|
2018-10-08 04:25:15 -04:00
|
|
|
assert := require.New(t)
|
|
|
|
|
2018-07-06 08:12:10 -04:00
|
|
|
scratch := NewScratch()
|
2018-03-16 19:13:23 -04:00
|
|
|
scratch.Set("key", "val")
|
|
|
|
scratch.Delete("key")
|
|
|
|
scratch.Add("key", "Lucy Parsons")
|
2018-10-08 04:25:15 -04:00
|
|
|
assert.Equal("Lucy Parsons", scratch.Get("key"))
|
2018-03-16 19:13:23 -04:00
|
|
|
}
|
|
|
|
|
2016-03-21 15:42:27 -04:00
|
|
|
// Issue #2005
|
|
|
|
func TestScratchInParallel(t *testing.T) {
|
|
|
|
var wg sync.WaitGroup
|
2018-07-06 08:12:10 -04:00
|
|
|
scratch := NewScratch()
|
2018-10-08 04:25:15 -04:00
|
|
|
|
2016-03-21 15:42:27 -04:00
|
|
|
key := "counter"
|
2016-03-24 14:57:26 -04:00
|
|
|
scratch.Set(key, int64(1))
|
2016-03-21 15:42:27 -04:00
|
|
|
for i := 1; i <= 10; i++ {
|
|
|
|
wg.Add(1)
|
|
|
|
go func(j int) {
|
|
|
|
for k := 0; k < 10; k++ {
|
2016-03-24 14:57:26 -04:00
|
|
|
newVal := int64(k + j)
|
2016-03-21 15:42:27 -04:00
|
|
|
|
|
|
|
_, err := scratch.Add(key, newVal)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Got err %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
scratch.Set(key, newVal)
|
|
|
|
|
|
|
|
val := scratch.Get(key)
|
|
|
|
|
2016-03-24 14:57:26 -04:00
|
|
|
if counter, ok := val.(int64); ok {
|
2016-03-21 15:42:27 -04:00
|
|
|
if counter < 1 {
|
|
|
|
t.Errorf("Got %d", counter)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
t.Errorf("Got %T", val)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
wg.Done()
|
|
|
|
}(i)
|
|
|
|
}
|
|
|
|
wg.Wait()
|
|
|
|
}
|
|
|
|
|
2014-12-26 15:18:26 -05:00
|
|
|
func TestScratchGet(t *testing.T) {
|
2017-02-04 22:20:06 -05:00
|
|
|
t.Parallel()
|
2018-07-06 08:12:10 -04:00
|
|
|
scratch := NewScratch()
|
2014-12-26 15:18:26 -05:00
|
|
|
nothing := scratch.Get("nothing")
|
|
|
|
if nothing != nil {
|
|
|
|
t.Errorf("Should not return anything, but got %v", nothing)
|
|
|
|
}
|
|
|
|
}
|
2015-08-02 01:00:43 -04:00
|
|
|
|
|
|
|
func TestScratchSetInMap(t *testing.T) {
|
2017-02-04 22:20:06 -05:00
|
|
|
t.Parallel()
|
2018-10-08 04:25:15 -04:00
|
|
|
assert := require.New(t)
|
|
|
|
|
2018-07-06 08:12:10 -04:00
|
|
|
scratch := NewScratch()
|
2015-08-02 01:00:43 -04:00
|
|
|
scratch.SetInMap("key", "lux", "Lux")
|
|
|
|
scratch.SetInMap("key", "abc", "Abc")
|
|
|
|
scratch.SetInMap("key", "zyx", "Zyx")
|
|
|
|
scratch.SetInMap("key", "abc", "Abc (updated)")
|
|
|
|
scratch.SetInMap("key", "def", "Def")
|
2018-10-08 04:25:15 -04:00
|
|
|
assert.Equal([]interface{}{0: "Abc (updated)", 1: "Def", 2: "Lux", 3: "Zyx"}, scratch.GetSortedMapValues("key"))
|
2015-08-02 01:00:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestScratchGetSortedMapValues(t *testing.T) {
|
2017-02-04 22:20:06 -05:00
|
|
|
t.Parallel()
|
2018-07-06 08:12:10 -04:00
|
|
|
scratch := NewScratch()
|
2015-08-02 01:00:43 -04:00
|
|
|
nothing := scratch.GetSortedMapValues("nothing")
|
|
|
|
if nothing != nil {
|
|
|
|
t.Errorf("Should not return anything, but got %v", nothing)
|
|
|
|
}
|
|
|
|
}
|
2016-03-24 10:05:40 -04:00
|
|
|
|
|
|
|
func BenchmarkScratchGet(b *testing.B) {
|
2018-07-06 08:12:10 -04:00
|
|
|
scratch := NewScratch()
|
2016-03-24 10:05:40 -04:00
|
|
|
scratch.Add("A", 1)
|
|
|
|
b.ResetTimer()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
scratch.Get("A")
|
|
|
|
}
|
|
|
|
}
|