2019-05-08 17:21:18 +08:00
|
|
|
// Copyright 2017-2019 gf Author(https://github.com/gogf/gf). All Rights Reserved.
|
|
|
|
//
|
|
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
|
|
// If a copy of the MIT was not distributed with gm file,
|
|
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
|
2019-04-11 17:33:52 +08:00
|
|
|
package gmap_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gogf/gf/g/container/gmap"
|
|
|
|
"github.com/gogf/gf/g/test/gtest"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2019-05-08 17:21:18 +08:00
|
|
|
func getStr() string {
|
2019-04-11 17:33:52 +08:00
|
|
|
return "z"
|
|
|
|
}
|
2019-05-08 17:21:18 +08:00
|
|
|
func intStrCallBack(int, string) bool {
|
2019-04-11 17:33:52 +08:00
|
|
|
return true
|
|
|
|
}
|
2019-05-08 17:21:18 +08:00
|
|
|
func Test_IntStrMap_Basic(t *testing.T) {
|
2019-04-11 17:33:52 +08:00
|
|
|
gtest.Case(t, func() {
|
2019-05-08 17:21:18 +08:00
|
|
|
m := gmap.NewIntStrMap()
|
2019-04-11 17:33:52 +08:00
|
|
|
m.Set(1, "a")
|
|
|
|
|
|
|
|
gtest.Assert(m.Get(1), "a")
|
|
|
|
gtest.Assert(m.Size(), 1)
|
|
|
|
gtest.Assert(m.IsEmpty(), false)
|
|
|
|
|
|
|
|
gtest.Assert(m.GetOrSet(2, "b"), "b")
|
|
|
|
gtest.Assert(m.SetIfNotExist(2, "b"), false)
|
|
|
|
|
|
|
|
gtest.Assert(m.SetIfNotExist(3, "c"), true)
|
|
|
|
|
|
|
|
gtest.Assert(m.Remove(2), "b")
|
|
|
|
gtest.Assert(m.Contains(2), false)
|
|
|
|
|
|
|
|
gtest.AssertIN(3, m.Keys())
|
|
|
|
gtest.AssertIN(1, m.Keys())
|
|
|
|
gtest.AssertIN("a", m.Values())
|
|
|
|
gtest.AssertIN("c", m.Values())
|
|
|
|
|
|
|
|
//反转之后不成为以下 map,flip 操作只是翻转原 map
|
|
|
|
//gtest.Assert(m.Map(), map[string]int{"a": 1, "c": 3})
|
2019-05-08 17:21:18 +08:00
|
|
|
m_f := gmap.NewIntStrMap()
|
2019-04-11 17:46:19 +08:00
|
|
|
m_f.Set(1, "2")
|
2019-04-11 17:33:52 +08:00
|
|
|
m_f.Flip()
|
2019-04-11 17:46:19 +08:00
|
|
|
gtest.Assert(m_f.Map(), map[int]string{2: "1"})
|
2019-04-11 17:33:52 +08:00
|
|
|
|
|
|
|
m.Clear()
|
|
|
|
gtest.Assert(m.Size(), 0)
|
|
|
|
gtest.Assert(m.IsEmpty(), true)
|
|
|
|
|
2019-05-08 17:21:18 +08:00
|
|
|
m2 := gmap.NewIntStrMapFrom(map[int]string{1: "a", 2: "b"})
|
2019-04-11 17:33:52 +08:00
|
|
|
gtest.Assert(m2.Map(), map[int]string{1: "a", 2: "b"})
|
|
|
|
})
|
|
|
|
}
|
2019-05-08 17:21:18 +08:00
|
|
|
func Test_IntStrMap_Set_Fun(t *testing.T) {
|
|
|
|
m := gmap.NewIntStrMap()
|
2019-04-11 17:33:52 +08:00
|
|
|
|
2019-05-08 17:21:18 +08:00
|
|
|
m.GetOrSetFunc(1, getStr)
|
|
|
|
m.GetOrSetFuncLock(2, getStr)
|
2019-04-11 17:33:52 +08:00
|
|
|
gtest.Assert(m.Get(1), "z")
|
|
|
|
gtest.Assert(m.Get(2), "z")
|
2019-05-08 17:21:18 +08:00
|
|
|
gtest.Assert(m.SetIfNotExistFunc(1, getStr), false)
|
|
|
|
gtest.Assert(m.SetIfNotExistFunc(3, getStr), true)
|
2019-04-12 10:59:05 +08:00
|
|
|
|
2019-05-08 17:21:18 +08:00
|
|
|
gtest.Assert(m.SetIfNotExistFuncLock(2, getStr), false)
|
|
|
|
gtest.Assert(m.SetIfNotExistFuncLock(4, getStr), true)
|
2019-04-12 10:59:05 +08:00
|
|
|
|
2019-04-11 17:33:52 +08:00
|
|
|
}
|
|
|
|
|
2019-05-08 17:21:18 +08:00
|
|
|
func Test_IntStrMap_Batch(t *testing.T) {
|
|
|
|
m := gmap.NewIntStrMap()
|
2019-04-11 17:33:52 +08:00
|
|
|
|
2019-05-08 17:21:18 +08:00
|
|
|
m.Sets(map[int]string{1: "a", 2: "b", 3: "c"})
|
2019-06-19 09:06:52 +08:00
|
|
|
gtest.Assert(m.Map(), map[int]string{1: "a", 2: "b", 3: "c"})
|
2019-05-08 17:21:18 +08:00
|
|
|
m.Removes([]int{1, 2})
|
2019-04-11 17:33:52 +08:00
|
|
|
gtest.Assert(m.Map(), map[int]interface{}{3: "c"})
|
|
|
|
}
|
2019-06-19 09:06:52 +08:00
|
|
|
func Test_IntStrMap_Iterator(t *testing.T) {
|
2019-04-16 14:28:25 +08:00
|
|
|
expect := map[int]string{1: "a", 2: "b"}
|
2019-06-19 09:06:52 +08:00
|
|
|
m := gmap.NewIntStrMapFrom(expect)
|
2019-04-16 14:28:25 +08:00
|
|
|
m.Iterator(func(k int, v string) bool {
|
|
|
|
gtest.Assert(expect[k], v)
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
// 断言返回值对遍历控制
|
|
|
|
i := 0
|
|
|
|
j := 0
|
|
|
|
m.Iterator(func(k int, v string) bool {
|
|
|
|
i++
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
m.Iterator(func(k int, v string) bool {
|
|
|
|
j++
|
|
|
|
return false
|
|
|
|
})
|
|
|
|
gtest.Assert(i, 2)
|
|
|
|
gtest.Assert(j, 1)
|
2019-04-12 10:59:05 +08:00
|
|
|
}
|
2019-04-11 17:33:52 +08:00
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
func Test_IntStrMap_Lock(t *testing.T) {
|
2019-04-16 14:28:25 +08:00
|
|
|
|
|
|
|
expect := map[int]string{1: "a", 2: "b", 3: "c"}
|
2019-06-19 09:06:52 +08:00
|
|
|
m := gmap.NewIntStrMapFrom(expect)
|
2019-04-16 14:28:25 +08:00
|
|
|
m.LockFunc(func(m map[int]string) {
|
|
|
|
gtest.Assert(m, expect)
|
|
|
|
})
|
|
|
|
m.RLockFunc(func(m map[int]string) {
|
|
|
|
gtest.Assert(m, expect)
|
|
|
|
})
|
|
|
|
|
2019-04-12 10:59:05 +08:00
|
|
|
}
|
2019-05-08 17:21:18 +08:00
|
|
|
func Test_IntStrMap_Clone(t *testing.T) {
|
2019-04-11 17:33:52 +08:00
|
|
|
//clone 方法是深克隆
|
2019-05-08 17:21:18 +08:00
|
|
|
m := gmap.NewIntStrMapFrom(map[int]string{1: "a", 2: "b", 3: "c"})
|
2019-04-11 17:33:52 +08:00
|
|
|
|
|
|
|
m_clone := m.Clone()
|
|
|
|
m.Remove(1)
|
|
|
|
//修改原 map,clone 后的 map 不影响
|
|
|
|
gtest.AssertIN(1, m_clone.Keys())
|
|
|
|
|
|
|
|
m_clone.Remove(2)
|
|
|
|
//修改clone map,原 map 不影响
|
|
|
|
gtest.AssertIN(2, m.Keys())
|
|
|
|
}
|
2019-05-08 17:21:18 +08:00
|
|
|
func Test_IntStrMap_Merge(t *testing.T) {
|
|
|
|
m1 := gmap.NewIntStrMap()
|
|
|
|
m2 := gmap.NewIntStrMap()
|
2019-04-11 17:33:52 +08:00
|
|
|
m1.Set(1, "a")
|
|
|
|
m2.Set(2, "b")
|
|
|
|
m1.Merge(m2)
|
|
|
|
gtest.Assert(m1.Map(), map[int]string{1: "a", 2: "b"})
|
|
|
|
}
|