1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
package _generated
import (
"bytes"
"math"
"math/rand/v2"
"reflect"
"strconv"
"testing"
"github.com/tinylib/msgp/msgp"
)
func TestAutoShimKeys(t *testing.T) {
rng := rand.New(rand.NewPCG(0, 0))
// Generate a bunch of random maps
for i := range 500 {
var test MyMapKeyStruct3
if i != 0 {
// Don't add anything to the first object
test.MapString = make(map[string]int)
test.MapString2 = make(map[ExternalInt]int)
test.MapString3 = make(map[ExternalString]int)
test.MapFloat32 = make(map[float32]int)
test.MapFloat64 = make(map[float64]int)
test.MapUint = make(map[uint]int)
test.MapUint8 = make(map[uint8]int)
test.MapUint16 = make(map[uint16]int)
test.MapUint32 = make(map[uint32]int)
test.MapUint64 = make(map[uint64]int)
test.MapByte = make(map[byte]int)
test.MapInt = make(map[int]int)
test.MapInt8 = make(map[int8]int)
test.MapInt16 = make(map[int16]int)
test.MapInt32 = make(map[int32]int)
test.MapInt64 = make(map[int64]int)
test.MapBool = make(map[bool]int)
test.MapMapInt = make(map[int]map[int]int)
for range rng.IntN(50) {
test.MapString[string(strconv.Itoa(rng.IntN(math.MaxInt32)))] = rng.IntN(100)
}
for range rng.IntN(50) {
test.MapString3[ExternalString(strconv.Itoa(rng.IntN(math.MaxInt32)))] = rng.IntN(100)
}
for range rng.IntN(50) {
test.MapString2[ExternalInt(rng.IntN(math.MaxInt32))] = rng.IntN(100)
}
for range rng.IntN(50) {
test.MapFloat32[float32(rng.Float32())] = rng.IntN(100)
}
for range rng.IntN(50) {
test.MapFloat64[rng.Float64()] = rng.IntN(100)
}
for range rng.IntN(50) {
test.MapUint[uint(rng.Uint64())] = rng.IntN(100)
}
for range rng.IntN(50) {
test.MapUint8[uint8(rng.Uint64())] = rng.IntN(100)
}
for range rng.IntN(50) {
test.MapUint16[uint16(rng.Uint64())] = rng.IntN(100)
}
for range rng.IntN(50) {
test.MapUint32[rng.Uint32()] = rng.IntN(100)
}
for range rng.IntN(50) {
test.MapUint64[rng.Uint64()] = rng.IntN(100)
}
for range rng.IntN(50) {
test.MapByte[byte(uint8(rng.Uint64()))] = rng.IntN(100)
}
for range rng.IntN(50) {
test.MapInt[rng.IntN(math.MaxInt32)] = rng.IntN(100)
}
for range rng.IntN(50) {
test.MapInt8[int8(rng.IntN(int(math.MaxInt8)+1))] = rng.IntN(100)
}
for range rng.IntN(50) {
test.MapInt16[int16(rng.IntN(int(math.MaxInt16)+1))] = rng.IntN(100)
}
for range rng.IntN(50) {
test.MapInt32[int32(rng.IntN(int(math.MaxInt32)))] = rng.IntN(100)
}
for range rng.IntN(50) {
// Use only non-negative values to stay within IntN capabilities
test.MapInt64[int64(rng.IntN(int(math.MaxInt32)))] = rng.IntN(100)
}
if rng.IntN(2) == 0 {
test.MapBool[true] = rng.IntN(100)
}
if rng.IntN(2) == 0 {
test.MapBool[false] = rng.IntN(100)
}
for range rng.IntN(50) {
dst := make(map[int]int, 50)
test.MapMapInt[rng.Int()] = dst
for range rng.IntN(50) {
dst[rng.Int()] = rng.IntN(100)
}
}
}
var encoded [][]byte
b, err := test.MarshalMsg(nil)
if err != nil {
t.Fatal(err)
}
encoded = append(encoded, b)
var buf bytes.Buffer
en := msgp.NewWriter(&buf)
err = test.EncodeMsg(en)
if err != nil {
t.Fatal(err)
}
err = en.Flush()
if err != nil {
t.Fatal(err)
}
encoded = append(encoded, buf.Bytes())
for _, enc := range encoded {
var decoded, decoded2 MyMapKeyStruct3
_, err = decoded.UnmarshalMsg(enc)
if err != nil {
t.Fatal(err)
}
if !reflect.DeepEqual(&decoded, &test) {
t.Errorf("decoded != test")
}
dec := msgp.NewReader(bytes.NewReader(enc))
err = decoded2.DecodeMsg(dec)
if err != nil {
t.Fatal(err)
}
if !reflect.DeepEqual(&decoded2, &test) {
t.Errorf("decoded2 != test")
}
}
}
}
|