123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280 |
- // comment this out // // + build testing
- // Copyright (c) 2012-2018 Ugorji Nwoke. All rights reserved.
- // Use of this source code is governed by a MIT license found in the LICENSE file.
- package codec
- import (
- "strings"
- "time"
- )
- const teststrucflexChanCap = 64
- // This file contains values used by tests alone.
- // This is where we may try out different things,
- // that other engines may not support or may barf upon
- // e.g. custom extensions for wrapped types, maps with non-string keys, etc.
- // some funky types to test codecgen
- type codecgenA struct {
- ZZ []byte
- }
- type codecgenB struct {
- AA codecgenA
- }
- type codecgenC struct {
- _struct struct{} `codec:",omitempty"`
- BB codecgenB
- }
- type TestCodecgenG struct {
- TestCodecgenG int
- }
- type codecgenH struct {
- TestCodecgenG
- }
- type codecgenI struct {
- codecgenH
- }
- type codecgenK struct {
- X int
- Y string
- }
- type codecgenL struct {
- X int
- Y uint32
- }
- type codecgenM struct {
- codecgenK
- codecgenL
- }
- // Some unused types just stored here
- type Bbool bool
- type Aarray [1]string
- type Sstring string
- type Sstructsmall struct {
- A int
- }
- type Sstructbig struct {
- A int
- B bool
- c string
- // Sval Sstruct
- Ssmallptr *Sstructsmall
- Ssmall *Sstructsmall
- Sptr *Sstructbig
- }
- type SstructbigMapBySlice struct {
- _struct struct{} `codec:",toarray"`
- A int
- B bool
- c string
- // Sval Sstruct
- Ssmallptr *Sstructsmall
- Ssmall *Sstructsmall
- Sptr *Sstructbig
- }
- // small struct for testing that codecgen works for unexported types
- type tLowerFirstLetter struct {
- I int
- u uint64
- S string
- b []byte
- }
- // Some used types
- type wrapInt64 int64
- type wrapUint8 uint8
- type wrapBytes []uint8
- type AnonInTestStrucIntf struct {
- Islice []interface{}
- Ms map[string]interface{}
- Nintf interface{} //don't set this, so we can test for nil
- T time.Time
- Tptr *time.Time
- }
- type missingFielderT1 struct {
- S string
- B bool
- f float64
- i int64
- }
- func (t *missingFielderT1) CodecMissingField(field []byte, value interface{}) bool {
- // xdebugf(">> calling CodecMissingField with field: %s, value: %v", field, value)
- switch string(field) {
- case "F":
- t.f = value.(float64)
- case "I":
- t.i = value.(int64)
- default:
- return false
- }
- return true
- }
- func (t *missingFielderT1) CodecMissingFields() map[string]interface{} {
- return map[string]interface{}{"F": t.f, "I": t.i}
- }
- type missingFielderT2 struct {
- S string
- B bool
- F float64
- I int64
- }
- var testWRepeated512 wrapBytes
- var testStrucTime = time.Date(2012, 2, 2, 2, 2, 2, 2000, time.UTC).UTC()
- func init() {
- var testARepeated512 [512]byte
- for i := range testARepeated512 {
- testARepeated512[i] = 'A'
- }
- testWRepeated512 = wrapBytes(testARepeated512[:])
- }
- type TestStrucFlex struct {
- _struct struct{} `codec:",omitempty"` //set omitempty for every field
- TestStrucCommon
- Chstr chan string
- Mis map[int]string
- Mbu64 map[bool]struct{}
- Miwu64s map[int]wrapUint64Slice
- Mfwss map[float64]wrapStringSlice
- Mf32wss map[float32]wrapStringSlice
- Mui2wss map[uint64]wrapStringSlice
- Msu2wss map[stringUint64T]wrapStringSlice
- Ci64 wrapInt64
- Swrapbytes []wrapBytes
- Swrapuint8 []wrapUint8
- ArrStrUi64T [4]stringUint64T
- Ui64array [4]uint64
- Ui64slicearray []*[4]uint64
- SintfAarray []interface{}
- // make this a ptr, so that it could be set or not.
- // for comparison (e.g. with msgp), give it a struct tag (so it is not inlined),
- // make this one omitempty (so it is excluded if nil).
- *AnonInTestStrucIntf `json:",omitempty"`
- //M map[interface{}]interface{} `json:"-",bson:"-"`
- Mtsptr map[string]*TestStrucFlex
- Mts map[string]TestStrucFlex
- Its []*TestStrucFlex
- Nteststruc *TestStrucFlex
- }
- func emptyTestStrucFlex() *TestStrucFlex {
- var ts TestStrucFlex
- // we initialize and start draining the chan, so that we can decode into it without it blocking due to no consumer
- ts.Chstr = make(chan string, teststrucflexChanCap)
- go func() {
- for range ts.Chstr {
- }
- }() // drain it
- return &ts
- }
- func newTestStrucFlex(depth, n int, bench, useInterface, useStringKeyOnly bool) (ts *TestStrucFlex) {
- ts = &TestStrucFlex{
- Chstr: make(chan string, teststrucflexChanCap),
- Miwu64s: map[int]wrapUint64Slice{
- 5: []wrapUint64{1, 2, 3, 4, 5},
- 3: []wrapUint64{1, 2, 3},
- },
- Mf32wss: map[float32]wrapStringSlice{
- 5.0: []wrapString{"1.0", "2.0", "3.0", "4.0", "5.0"},
- 3.0: []wrapString{"1.0", "2.0", "3.0"},
- },
- Mui2wss: map[uint64]wrapStringSlice{
- 5: []wrapString{"1.0", "2.0", "3.0", "4.0", "5.0"},
- 3: []wrapString{"1.0", "2.0", "3.0"},
- },
- Mfwss: map[float64]wrapStringSlice{
- 5.0: []wrapString{"1.0", "2.0", "3.0", "4.0", "5.0"},
- 3.0: []wrapString{"1.0", "2.0", "3.0"},
- },
- Mis: map[int]string{
- 1: "one",
- 22: "twenty two",
- -44: "minus forty four",
- },
- Mbu64: map[bool]struct{}{false: {}, true: {}},
- Ci64: -22,
- Swrapbytes: []wrapBytes{ // lengths of 1, 2, 4, 8, 16, 32, 64, 128, 256,
- testWRepeated512[:1],
- testWRepeated512[:2],
- testWRepeated512[:4],
- testWRepeated512[:8],
- testWRepeated512[:16],
- testWRepeated512[:32],
- testWRepeated512[:64],
- testWRepeated512[:128],
- testWRepeated512[:256],
- testWRepeated512[:512],
- },
- Swrapuint8: []wrapUint8{
- 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J',
- },
- Ui64array: [4]uint64{4, 16, 64, 256},
- ArrStrUi64T: [4]stringUint64T{{"4", 4}, {"3", 3}, {"2", 2}, {"1", 1}},
- SintfAarray: []interface{}{Aarray{"s"}},
- }
- numChanSend := cap(ts.Chstr) / 4 // 8
- for i := 0; i < numChanSend; i++ {
- ts.Chstr <- strings.Repeat("A", i+1)
- }
- ts.Ui64slicearray = []*[4]uint64{&ts.Ui64array, &ts.Ui64array}
- if useInterface {
- ts.AnonInTestStrucIntf = &AnonInTestStrucIntf{
- Islice: []interface{}{strRpt(n, "true"), true, strRpt(n, "no"), false, uint64(288), float64(0.4)},
- Ms: map[string]interface{}{
- strRpt(n, "true"): strRpt(n, "true"),
- strRpt(n, "int64(9)"): false,
- },
- T: testStrucTime,
- }
- }
- populateTestStrucCommon(&ts.TestStrucCommon, n, bench, useInterface, useStringKeyOnly)
- if depth > 0 {
- depth--
- if ts.Mtsptr == nil {
- ts.Mtsptr = make(map[string]*TestStrucFlex)
- }
- if ts.Mts == nil {
- ts.Mts = make(map[string]TestStrucFlex)
- }
- ts.Mtsptr["0"] = newTestStrucFlex(depth, n, bench, useInterface, useStringKeyOnly)
- ts.Mts["0"] = *(ts.Mtsptr["0"])
- ts.Its = append(ts.Its, ts.Mtsptr["0"])
- }
- return
- }
|