adding changing in glide yaml and vendor for network status features

This commit is contained in:
rkamudhan
2018-07-30 11:58:02 +01:00
committed by Kuralamudhan Ramakrishnan
parent 707007abba
commit 583cbe476a
6958 changed files with 838414 additions and 1370031 deletions

View File

@@ -0,0 +1,41 @@
package tests
import (
"github.com/modern-go/reflect2"
"testing"
)
func Test_slice_map(t *testing.T) {
t.Run("MakeSlice", testOp(func(api reflect2.API) interface{} {
valType := api.TypeOf([]map[int]int{}).(reflect2.SliceType)
obj := valType.MakeSlice(5, 10)
(*obj.(*[]map[int]int))[0] = map[int]int{1: 1}
(*obj.(*[]map[int]int))[4] = map[int]int{2: 2}
return obj
}))
t.Run("SetIndex", testOp(func(api reflect2.API) interface{} {
obj := []map[int]int{{1: 1}, nil}
valType := api.TypeOf(obj).(reflect2.SliceType)
valType.SetIndex(&obj, 0, &map[int]int{10: 10})
valType.SetIndex(&obj, 1, &map[int]int{2: 2})
return obj
}))
t.Run("GetIndex", testOp(func(api reflect2.API) interface{} {
obj := []map[int]int{{1: 1}, nil}
valType := api.TypeOf(obj).(reflect2.SliceType)
return []interface{}{
valType.GetIndex(&obj, 0),
valType.GetIndex(&obj, 1),
}
}))
t.Run("Append", testOp(func(api reflect2.API) interface{} {
obj := make([]map[int]int, 2, 3)
obj[0] = map[int]int{1: 1}
obj[1] = map[int]int{2: 2}
valType := api.TypeOf(obj).(reflect2.SliceType)
valType.Append(&obj, &map[int]int{3: 3})
// will trigger grow
valType.Append(&obj, &map[int]int{4: 4})
return obj
}))
}