blob: 9135dd5740bbe34d0244c12e2baaa650e4717773 [file] [log] [blame]
package tests
import (
"github.com/modern-go/reflect2"
"testing"
"time"
)
func Test_map_elem_struct(t *testing.T) {
var pInt = func(val int) *int {
return &val
}
t.Run("SetIndex", testOp(func(api reflect2.API) interface{} {
obj := map[int]time.Time{}
valType := api.TypeOf(obj).(reflect2.MapType)
valType.SetIndex(&obj, pInt(2), &time.Time{})
valType.SetIndex(&obj, pInt(3), &time.Time{})
return obj
}))
t.Run("SetIndex single ptr struct", testOp(func(api reflect2.API) interface{} {
type TestObject struct {
Field1 *int
}
obj := map[int]TestObject{}
valType := api.TypeOf(obj).(reflect2.MapType)
valType.SetIndex(&obj, pInt(2), &TestObject{})
valType.SetIndex(&obj, pInt(3), &TestObject{})
return obj
}))
t.Run("SetIndex single map struct", testOp(func(api reflect2.API) interface{} {
type TestObject struct {
Field1 map[int]int
}
obj := map[int]TestObject{}
valType := api.TypeOf(obj).(reflect2.MapType)
valType.SetIndex(&obj, pInt(2), &TestObject{})
valType.SetIndex(&obj, pInt(3), &TestObject{})
return obj
}))
t.Run("SetIndex single chan struct", testOp(func(api reflect2.API) interface{} {
type TestObject struct {
Field1 chan int
}
obj := map[int]TestObject{}
valType := api.TypeOf(obj).(reflect2.MapType)
valType.SetIndex(&obj, pInt(2), &TestObject{})
valType.SetIndex(&obj, pInt(3), &TestObject{})
return obj
}))
t.Run("SetIndex single func struct", testOp(func(api reflect2.API) interface{} {
type TestObject struct {
Field1 func()
}
obj := map[int]TestObject{}
valType := api.TypeOf(obj).(reflect2.MapType)
valType.SetIndex(&obj, pInt(2), &TestObject{})
valType.SetIndex(&obj, pInt(3), &TestObject{})
return obj
}))
}