| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482 |
- //+build all unit
- package gocql
- import (
- "bytes"
- "math"
- "math/big"
- "net"
- "reflect"
- "strings"
- "testing"
- "time"
- "gopkg.in/inf.v0"
- )
- type AliasInt int
- var marshalTests = []struct {
- Info TypeInfo
- Data []byte
- Value interface{}
- MarshalError error
- UnmarshalError error
- }{
- {
- NativeType{proto: 2, typ: TypeVarchar},
- []byte("hello world"),
- []byte("hello world"),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeVarchar},
- []byte("hello world"),
- "hello world",
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeVarchar},
- []byte(nil),
- []byte(nil),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeVarchar},
- []byte("hello world"),
- MyString("hello world"),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeVarchar},
- []byte("HELLO WORLD"),
- CustomString("hello world"),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeBlob},
- []byte("hello\x00"),
- []byte("hello\x00"),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeBlob},
- []byte(nil),
- []byte(nil),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeTimeUUID},
- []byte{0x3d, 0xcd, 0x98, 0x0, 0xf3, 0xd9, 0x11, 0xbf, 0x86, 0xd4, 0xb8, 0xe8, 0x56, 0x2c, 0xc, 0xd0},
- func() UUID {
- x, _ := UUIDFromBytes([]byte{0x3d, 0xcd, 0x98, 0x0, 0xf3, 0xd9, 0x11, 0xbf, 0x86, 0xd4, 0xb8, 0xe8, 0x56, 0x2c, 0xc, 0xd0})
- return x
- }(),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeTimeUUID},
- []byte{0xb8, 0xe8, 0x56, 0x2c, 0xc, 0xd0},
- []byte{0xb8, 0xe8, 0x56, 0x2c, 0xc, 0xd0},
- MarshalError("can not marshal []byte 6 bytes long into timeuuid, must be exactly 16 bytes long"),
- UnmarshalError("Unable to parse UUID: UUIDs must be exactly 16 bytes long"),
- },
- {
- NativeType{proto: 2, typ: TypeInt},
- []byte("\x00\x00\x00\x00"),
- 0,
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeInt},
- []byte("\x01\x02\x03\x04"),
- int(16909060),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeInt},
- []byte("\x01\x02\x03\x04"),
- AliasInt(16909060),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeInt},
- []byte("\x80\x00\x00\x00"),
- int32(math.MinInt32),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeInt},
- []byte("\x7f\xff\xff\xff"),
- int32(math.MaxInt32),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeInt},
- []byte("\x00\x00\x00\x00"),
- "0",
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeInt},
- []byte("\x01\x02\x03\x04"),
- "16909060",
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeInt},
- []byte("\x80\x00\x00\x00"),
- "-2147483648", // math.MinInt32
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeInt},
- []byte("\x7f\xff\xff\xff"),
- "2147483647", // math.MaxInt32
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeBigInt},
- []byte("\x00\x00\x00\x00\x00\x00\x00\x00"),
- 0,
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeBigInt},
- []byte("\x01\x02\x03\x04\x05\x06\x07\x08"),
- 72623859790382856,
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeBigInt},
- []byte("\x80\x00\x00\x00\x00\x00\x00\x00"),
- int64(math.MinInt64),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeBigInt},
- []byte("\x7f\xff\xff\xff\xff\xff\xff\xff"),
- int64(math.MaxInt64),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeBigInt},
- []byte("\x00\x00\x00\x00\x00\x00\x00\x00"),
- "0",
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeBigInt},
- []byte("\x01\x02\x03\x04\x05\x06\x07\x08"),
- "72623859790382856",
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeBigInt},
- []byte("\x80\x00\x00\x00\x00\x00\x00\x00"),
- "-9223372036854775808", // math.MinInt64
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeBigInt},
- []byte("\x7f\xff\xff\xff\xff\xff\xff\xff"),
- "9223372036854775807", // math.MaxInt64
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeBoolean},
- []byte("\x00"),
- false,
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeBoolean},
- []byte("\x01"),
- true,
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeFloat},
- []byte("\x40\x49\x0f\xdb"),
- float32(3.14159265),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeDouble},
- []byte("\x40\x09\x21\xfb\x53\xc8\xd4\xf1"),
- float64(3.14159265),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeDecimal},
- []byte("\x00\x00\x00\x00\x00"),
- inf.NewDec(0, 0),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeDecimal},
- []byte("\x00\x00\x00\x00\x64"),
- inf.NewDec(100, 0),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeDecimal},
- []byte("\x00\x00\x00\x02\x19"),
- decimalize("0.25"),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeDecimal},
- []byte("\x00\x00\x00\x13\xD5\a;\x20\x14\xA2\x91"),
- decimalize("-0.0012095473475870063"), // From the iconara/cql-rb test suite
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeDecimal},
- []byte("\x00\x00\x00\x13*\xF8\xC4\xDF\xEB]o"),
- decimalize("0.0012095473475870063"), // From the iconara/cql-rb test suite
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeDecimal},
- []byte("\x00\x00\x00\x12\xF2\xD8\x02\xB6R\x7F\x99\xEE\x98#\x99\xA9V"),
- decimalize("-1042342234234.123423435647768234"), // From the iconara/cql-rb test suite
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeDecimal},
- []byte("\x00\x00\x00\r\nJ\x04\"^\x91\x04\x8a\xb1\x18\xfe"),
- decimalize("1243878957943.1234124191998"), // From the datastax/python-driver test suite
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeDecimal},
- []byte("\x00\x00\x00\x06\xe5\xde]\x98Y"),
- decimalize("-112233.441191"), // From the datastax/python-driver test suite
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeDecimal},
- []byte("\x00\x00\x00\x14\x00\xfa\xce"),
- decimalize("0.00000000000000064206"), // From the datastax/python-driver test suite
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeDecimal},
- []byte("\x00\x00\x00\x14\xff\x052"),
- decimalize("-0.00000000000000064206"), // From the datastax/python-driver test suite
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeDecimal},
- []byte("\xff\xff\xff\x9c\x00\xfa\xce"),
- inf.NewDec(64206, -100), // From the datastax/python-driver test suite
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeTimestamp},
- []byte("\x00\x00\x01\x40\x77\x16\xe1\xb8"),
- time.Date(2013, time.August, 13, 9, 52, 3, 0, time.UTC),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeTimestamp},
- []byte("\x00\x00\x01\x40\x77\x16\xe1\xb8"),
- int64(1376387523000),
- nil,
- nil,
- },
- {
- NativeType{proto: 5, typ: TypeDuration},
- []byte("\x89\xa2\xc3\xc2\x9a\xe0F\x91\x06"),
- Duration{Months: 1233, Days: 123213, Nanoseconds: 2312323},
- nil,
- nil,
- },
- {
- NativeType{proto: 5, typ: TypeDuration},
- []byte("\x89\xa1\xc3\xc2\x99\xe0F\x91\x05"),
- Duration{Months: -1233, Days: -123213, Nanoseconds: -2312323},
- nil,
- nil,
- },
- {
- NativeType{proto: 5, typ: TypeDuration},
- []byte("\x02\x04\x80\xe6"),
- Duration{Months: 1, Days: 2, Nanoseconds: 115},
- nil,
- nil,
- },
- {
- CollectionType{
- NativeType: NativeType{proto: 2, typ: TypeList},
- Elem: NativeType{proto: 2, typ: TypeInt},
- },
- []byte("\x00\x02\x00\x04\x00\x00\x00\x01\x00\x04\x00\x00\x00\x02"),
- []int{1, 2},
- nil,
- nil,
- },
- {
- CollectionType{
- NativeType: NativeType{proto: 2, typ: TypeList},
- Elem: NativeType{proto: 2, typ: TypeInt},
- },
- []byte("\x00\x02\x00\x04\x00\x00\x00\x01\x00\x04\x00\x00\x00\x02"),
- [2]int{1, 2},
- nil,
- nil,
- },
- {
- CollectionType{
- NativeType: NativeType{proto: 2, typ: TypeSet},
- Elem: NativeType{proto: 2, typ: TypeInt},
- },
- []byte("\x00\x02\x00\x04\x00\x00\x00\x01\x00\x04\x00\x00\x00\x02"),
- []int{1, 2},
- nil,
- nil,
- },
- {
- CollectionType{
- NativeType: NativeType{proto: 2, typ: TypeSet},
- Elem: NativeType{proto: 2, typ: TypeInt},
- },
- []byte{0, 0}, // encoding of a list should always include the size of the collection
- []int{},
- nil,
- nil,
- },
- {
- CollectionType{
- NativeType: NativeType{proto: 2, typ: TypeMap},
- Key: NativeType{proto: 2, typ: TypeVarchar},
- Elem: NativeType{proto: 2, typ: TypeInt},
- },
- []byte("\x00\x01\x00\x03foo\x00\x04\x00\x00\x00\x01"),
- map[string]int{"foo": 1},
- nil,
- nil,
- },
- {
- CollectionType{
- NativeType: NativeType{proto: 2, typ: TypeMap},
- Key: NativeType{proto: 2, typ: TypeVarchar},
- Elem: NativeType{proto: 2, typ: TypeInt},
- },
- []byte{0, 0},
- map[string]int{},
- nil,
- nil,
- },
- {
- CollectionType{
- NativeType: NativeType{proto: 2, typ: TypeList},
- Elem: NativeType{proto: 2, typ: TypeVarchar},
- },
- bytes.Join([][]byte{
- []byte("\x00\x01\xFF\xFF"),
- bytes.Repeat([]byte("X"), 65535)}, []byte("")),
- []string{strings.Repeat("X", 65535)},
- nil,
- nil,
- },
- {
- CollectionType{
- NativeType: NativeType{proto: 2, typ: TypeMap},
- Key: NativeType{proto: 2, typ: TypeVarchar},
- Elem: NativeType{proto: 2, typ: TypeVarchar},
- },
- bytes.Join([][]byte{
- []byte("\x00\x01\xFF\xFF"),
- bytes.Repeat([]byte("X"), 65535),
- []byte("\xFF\xFF"),
- bytes.Repeat([]byte("Y"), 65535)}, []byte("")),
- map[string]string{
- strings.Repeat("X", 65535): strings.Repeat("Y", 65535),
- },
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeVarint},
- []byte("\x00"),
- 0,
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeVarint},
- []byte("\x37\xE2\x3C\xEC"),
- int32(937573612),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeVarint},
- []byte("\x37\xE2\x3C\xEC"),
- big.NewInt(937573612),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeVarint},
- []byte("\x03\x9EV \x15\f\x03\x9DK\x18\xCDI\\$?\a["),
- bigintize("1231312312331283012830129382342342412123"), // From the iconara/cql-rb test suite
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeVarint},
- []byte("\xC9v\x8D:\x86"),
- big.NewInt(-234234234234), // From the iconara/cql-rb test suite
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeVarint},
- []byte("f\x1e\xfd\xf2\xe3\xb1\x9f|\x04_\x15"),
- bigintize("123456789123456789123456789"), // From the datastax/python-driver test suite
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeVarint},
- []byte(nil),
- nil,
- nil,
- UnmarshalError("can not unmarshal into non-pointer <nil>"),
- },
- {
- NativeType{proto: 2, typ: TypeInet},
- []byte("\x7F\x00\x00\x01"),
- net.ParseIP("127.0.0.1").To4(),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeInet},
- []byte("\xFF\xFF\xFF\xFF"),
- net.ParseIP("255.255.255.255").To4(),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeInet},
- []byte("\x7F\x00\x00\x01"),
- "127.0.0.1",
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeInet},
- []byte("\xFF\xFF\xFF\xFF"),
- "255.255.255.255",
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeInet},
- []byte("\x21\xDA\x00\xd3\x00\x00\x2f\x3b\x02\xaa\x00\xff\xfe\x28\x9c\x5a"),
- "21da:d3:0:2f3b:2aa:ff:fe28:9c5a",
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeInet},
- []byte("\xfe\x80\x00\x00\x00\x00\x00\x00\x02\x02\xb3\xff\xfe\x1e\x83\x29"),
- "fe80::202:b3ff:fe1e:8329",
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeInet},
- []byte("\x21\xDA\x00\xd3\x00\x00\x2f\x3b\x02\xaa\x00\xff\xfe\x28\x9c\x5a"),
- net.ParseIP("21da:d3:0:2f3b:2aa:ff:fe28:9c5a"),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeInet},
- []byte("\xfe\x80\x00\x00\x00\x00\x00\x00\x02\x02\xb3\xff\xfe\x1e\x83\x29"),
- net.ParseIP("fe80::202:b3ff:fe1e:8329"),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeInt},
- []byte(nil),
- nil,
- nil,
- UnmarshalError("can not unmarshal into non-pointer <nil>"),
- },
- {
- NativeType{proto: 2, typ: TypeVarchar},
- []byte("nullable string"),
- func() *string {
- value := "nullable string"
- return &value
- }(),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeVarchar},
- []byte(nil),
- (*string)(nil),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeInt},
- []byte("\x7f\xff\xff\xff"),
- func() *int {
- var value int = math.MaxInt32
- return &value
- }(),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeInt},
- []byte(nil),
- (*int)(nil),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeTimeUUID},
- []byte{0x3d, 0xcd, 0x98, 0x0, 0xf3, 0xd9, 0x11, 0xbf, 0x86, 0xd4, 0xb8, 0xe8, 0x56, 0x2c, 0xc, 0xd0},
- &UUID{0x3d, 0xcd, 0x98, 0x0, 0xf3, 0xd9, 0x11, 0xbf, 0x86, 0xd4, 0xb8, 0xe8, 0x56, 0x2c, 0xc, 0xd0},
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeTimeUUID},
- []byte(nil),
- (*UUID)(nil),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeTimestamp},
- []byte("\x00\x00\x01\x40\x77\x16\xe1\xb8"),
- func() *time.Time {
- t := time.Date(2013, time.August, 13, 9, 52, 3, 0, time.UTC)
- return &t
- }(),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeTimestamp},
- []byte(nil),
- (*time.Time)(nil),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeBoolean},
- []byte("\x00"),
- func() *bool {
- b := false
- return &b
- }(),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeBoolean},
- []byte("\x01"),
- func() *bool {
- b := true
- return &b
- }(),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeBoolean},
- []byte(nil),
- (*bool)(nil),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeFloat},
- []byte("\x40\x49\x0f\xdb"),
- func() *float32 {
- f := float32(3.14159265)
- return &f
- }(),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeFloat},
- []byte(nil),
- (*float32)(nil),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeDouble},
- []byte("\x40\x09\x21\xfb\x53\xc8\xd4\xf1"),
- func() *float64 {
- d := float64(3.14159265)
- return &d
- }(),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeDouble},
- []byte(nil),
- (*float64)(nil),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeInet},
- []byte("\x7F\x00\x00\x01"),
- func() *net.IP {
- ip := net.ParseIP("127.0.0.1").To4()
- return &ip
- }(),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeInet},
- []byte(nil),
- (*net.IP)(nil),
- nil,
- nil,
- },
- {
- CollectionType{
- NativeType: NativeType{proto: 2, typ: TypeList},
- Elem: NativeType{proto: 2, typ: TypeInt},
- },
- []byte("\x00\x02\x00\x04\x00\x00\x00\x01\x00\x04\x00\x00\x00\x02"),
- func() *[]int {
- l := []int{1, 2}
- return &l
- }(),
- nil,
- nil,
- },
- {
- CollectionType{
- NativeType: NativeType{proto: 2, typ: TypeList},
- Elem: NativeType{proto: 2, typ: TypeInt},
- },
- []byte(nil),
- (*[]int)(nil),
- nil,
- nil,
- },
- {
- CollectionType{
- NativeType: NativeType{proto: 2, typ: TypeMap},
- Key: NativeType{proto: 2, typ: TypeVarchar},
- Elem: NativeType{proto: 2, typ: TypeInt},
- },
- []byte("\x00\x01\x00\x03foo\x00\x04\x00\x00\x00\x01"),
- func() *map[string]int {
- m := map[string]int{"foo": 1}
- return &m
- }(),
- nil,
- nil,
- },
- {
- CollectionType{
- NativeType: NativeType{proto: 2, typ: TypeMap},
- Key: NativeType{proto: 2, typ: TypeVarchar},
- Elem: NativeType{proto: 2, typ: TypeInt},
- },
- []byte(nil),
- (*map[string]int)(nil),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeVarchar},
- []byte("HELLO WORLD"),
- func() *CustomString {
- customString := CustomString("hello world")
- return &customString
- }(),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeVarchar},
- []byte(nil),
- (*CustomString)(nil),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeSmallInt},
- []byte("\x7f\xff"),
- 32767, // math.MaxInt16
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeSmallInt},
- []byte("\x7f\xff"),
- "32767", // math.MaxInt16
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeSmallInt},
- []byte("\x00\x01"),
- int16(1),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeSmallInt},
- []byte("\xff\xff"),
- int16(-1),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeSmallInt},
- []byte("\xff\xff"),
- uint16(65535),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeTinyInt},
- []byte("\x7f"),
- 127, // math.MaxInt8
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeTinyInt},
- []byte("\x7f"),
- "127", // math.MaxInt8
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeTinyInt},
- []byte("\x01"),
- int16(1),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeTinyInt},
- []byte("\xff"),
- int16(-1),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeTinyInt},
- []byte("\xff"),
- uint8(255),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeTinyInt},
- []byte("\xff"),
- uint64(255),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeTinyInt},
- []byte("\xff"),
- uint32(255),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeTinyInt},
- []byte("\xff"),
- uint16(255),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeTinyInt},
- []byte("\xff"),
- uint(255),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeBigInt},
- []byte("\xff\xff\xff\xff\xff\xff\xff\xff"),
- uint64(math.MaxUint64),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeInt},
- []byte("\xff\xff\xff\xff"),
- uint32(math.MaxUint32),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeBlob},
- []byte(nil),
- ([]byte)(nil),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeVarchar},
- []byte{},
- func() interface{} {
- var s string
- return &s
- }(),
- nil,
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeTime},
- encBigInt(1000),
- time.Duration(1000),
- nil,
- nil,
- },
- }
- func decimalize(s string) *inf.Dec {
- i, _ := new(inf.Dec).SetString(s)
- return i
- }
- func bigintize(s string) *big.Int {
- i, _ := new(big.Int).SetString(s, 10)
- return i
- }
- func TestMarshal_Encode(t *testing.T) {
- for i, test := range marshalTests {
- if test.MarshalError == nil {
- data, err := Marshal(test.Info, test.Value)
- if err != nil {
- t.Errorf("marshalTest[%d]: %v", i, err)
- continue
- }
- if !bytes.Equal(data, test.Data) {
- t.Errorf("marshalTest[%d]: expected %q, got %q (%#v)", i, test.Data, data, test.Value)
- }
- } else {
- if _, err := Marshal(test.Info, test.Value); err != test.MarshalError {
- t.Errorf("unmarshalTest[%d] (%v=>%t): %#v returned error %#v, want %#v.", i, test.Info, test.Value, test.Value, err, test.MarshalError)
- }
- }
- }
- }
- func TestMarshal_Decode(t *testing.T) {
- for i, test := range marshalTests {
- if test.UnmarshalError == nil {
- v := reflect.New(reflect.TypeOf(test.Value))
- err := Unmarshal(test.Info, test.Data, v.Interface())
- if err != nil {
- t.Errorf("unmarshalTest[%d] (%v=>%T): %v", i, test.Info, test.Value, err)
- continue
- }
- if !reflect.DeepEqual(v.Elem().Interface(), test.Value) {
- t.Errorf("unmarshalTest[%d] (%v=>%T): expected %#v, got %#v.", i, test.Info, test.Value, test.Value, v.Elem().Interface())
- }
- } else {
- if err := Unmarshal(test.Info, test.Data, test.Value); err != test.UnmarshalError {
- t.Errorf("unmarshalTest[%d] (%v=>%t): %#v returned error %#v, want %#v.", i, test.Info, test.Value, test.Value, err, test.UnmarshalError)
- }
- }
- }
- }
- func TestMarshalVarint(t *testing.T) {
- varintTests := []struct {
- Value interface{}
- Marshaled []byte
- Unmarshaled *big.Int
- }{
- {
- Value: int8(0),
- Marshaled: []byte("\x00"),
- Unmarshaled: big.NewInt(0),
- },
- {
- Value: uint8(255),
- Marshaled: []byte("\x00\xFF"),
- Unmarshaled: big.NewInt(255),
- },
- {
- Value: int8(-1),
- Marshaled: []byte("\xFF"),
- Unmarshaled: big.NewInt(-1),
- },
- {
- Value: big.NewInt(math.MaxInt32),
- Marshaled: []byte("\x7F\xFF\xFF\xFF"),
- Unmarshaled: big.NewInt(math.MaxInt32),
- },
- {
- Value: big.NewInt(int64(math.MaxInt32) + 1),
- Marshaled: []byte("\x00\x80\x00\x00\x00"),
- Unmarshaled: big.NewInt(int64(math.MaxInt32) + 1),
- },
- {
- Value: big.NewInt(math.MinInt32),
- Marshaled: []byte("\x80\x00\x00\x00"),
- Unmarshaled: big.NewInt(math.MinInt32),
- },
- {
- Value: big.NewInt(int64(math.MinInt32) - 1),
- Marshaled: []byte("\xFF\x7F\xFF\xFF\xFF"),
- Unmarshaled: big.NewInt(int64(math.MinInt32) - 1),
- },
- {
- Value: math.MinInt64,
- Marshaled: []byte("\x80\x00\x00\x00\x00\x00\x00\x00"),
- Unmarshaled: big.NewInt(math.MinInt64),
- },
- {
- Value: uint64(math.MaxInt64) + 1,
- Marshaled: []byte("\x00\x80\x00\x00\x00\x00\x00\x00\x00"),
- Unmarshaled: bigintize("9223372036854775808"),
- },
- {
- Value: bigintize("2361183241434822606848"), // 2**71
- Marshaled: []byte("\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00"),
- Unmarshaled: bigintize("2361183241434822606848"),
- },
- {
- Value: bigintize("-9223372036854775809"), // -2**63 - 1
- Marshaled: []byte("\xFF\x7F\xFF\xFF\xFF\xFF\xFF\xFF\xFF"),
- Unmarshaled: bigintize("-9223372036854775809"),
- },
- }
- for i, test := range varintTests {
- data, err := Marshal(NativeType{proto: 2, typ: TypeVarint}, test.Value)
- if err != nil {
- t.Errorf("error marshaling varint: %v (test #%d)", err, i)
- }
- if !bytes.Equal(test.Marshaled, data) {
- t.Errorf("marshaled varint mismatch: expected %v, got %v (test #%d)", test.Marshaled, data, i)
- }
- binder := new(big.Int)
- err = Unmarshal(NativeType{proto: 2, typ: TypeVarint}, test.Marshaled, binder)
- if err != nil {
- t.Errorf("error unmarshaling varint: %v (test #%d)", err, i)
- }
- if test.Unmarshaled.Cmp(binder) != 0 {
- t.Errorf("unmarshaled varint mismatch: expected %v, got %v (test #%d)", test.Unmarshaled, binder, i)
- }
- }
- varintUint64Tests := []struct {
- Value interface{}
- Marshaled []byte
- Unmarshaled uint64
- }{
- {
- Value: int8(0),
- Marshaled: []byte("\x00"),
- Unmarshaled: 0,
- },
- {
- Value: uint8(255),
- Marshaled: []byte("\x00\xFF"),
- Unmarshaled: 255,
- },
- {
- Value: big.NewInt(math.MaxInt32),
- Marshaled: []byte("\x7F\xFF\xFF\xFF"),
- Unmarshaled: uint64(math.MaxInt32),
- },
- {
- Value: big.NewInt(int64(math.MaxInt32) + 1),
- Marshaled: []byte("\x00\x80\x00\x00\x00"),
- Unmarshaled: uint64(int64(math.MaxInt32) + 1),
- },
- {
- Value: uint64(math.MaxInt64) + 1,
- Marshaled: []byte("\x00\x80\x00\x00\x00\x00\x00\x00\x00"),
- Unmarshaled: 9223372036854775808,
- },
- {
- Value: uint64(math.MaxUint64),
- Marshaled: []byte("\x00\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"),
- Unmarshaled: uint64(math.MaxUint64),
- },
- }
- for i, test := range varintUint64Tests {
- data, err := Marshal(NativeType{proto: 2, typ: TypeVarint}, test.Value)
- if err != nil {
- t.Errorf("error marshaling varint: %v (test #%d)", err, i)
- }
- if !bytes.Equal(test.Marshaled, data) {
- t.Errorf("marshaled varint mismatch: expected %v, got %v (test #%d)", test.Marshaled, data, i)
- }
- var binder uint64
- err = Unmarshal(NativeType{proto: 2, typ: TypeVarint}, test.Marshaled, &binder)
- if err != nil {
- t.Errorf("error unmarshaling varint to uint64: %v (test #%d)", err, i)
- }
- if test.Unmarshaled != binder {
- t.Errorf("unmarshaled varint mismatch: expected %v, got %v (test #%d)", test.Unmarshaled, binder, i)
- }
- }
- }
- func equalStringSlice(leftList, rightList []string) bool {
- if len(leftList) != len(rightList) {
- return false
- }
- for index := range leftList {
- if rightList[index] != leftList[index] {
- return false
- }
- }
- return true
- }
- func TestMarshalList(t *testing.T) {
- typeInfo := CollectionType{
- NativeType: NativeType{proto: 2, typ: TypeList},
- Elem: NativeType{proto: 2, typ: TypeVarchar},
- }
- sourceLists := [][]string{
- {"valueA"},
- {"valueA", "valueB"},
- {"valueB"},
- }
- listDatas := [][]byte{}
- for _, list := range sourceLists {
- listData, marshalErr := Marshal(typeInfo, list)
- if nil != marshalErr {
- t.Errorf("Error marshal %+v of type %+v: %s", list, typeInfo, marshalErr)
- }
- listDatas = append(listDatas, listData)
- }
- outputLists := [][]string{}
- var outputList []string
- for _, listData := range listDatas {
- if unmarshalErr := Unmarshal(typeInfo, listData, &outputList); nil != unmarshalErr {
- t.Error(unmarshalErr)
- }
- outputLists = append(outputLists, outputList)
- }
- for index, sourceList := range sourceLists {
- outputList := outputLists[index]
- if !equalStringSlice(sourceList, outputList) {
- t.Errorf("Lists %+v not equal to lists %+v, but should", sourceList, outputList)
- }
- }
- }
- type CustomString string
- func (c CustomString) MarshalCQL(info TypeInfo) ([]byte, error) {
- return []byte(strings.ToUpper(string(c))), nil
- }
- func (c *CustomString) UnmarshalCQL(info TypeInfo, data []byte) error {
- *c = CustomString(strings.ToLower(string(data)))
- return nil
- }
- type MyString string
- type MyInt int
- var typeLookupTest = []struct {
- TypeName string
- ExpectedType Type
- }{
- {"AsciiType", TypeAscii},
- {"LongType", TypeBigInt},
- {"BytesType", TypeBlob},
- {"BooleanType", TypeBoolean},
- {"CounterColumnType", TypeCounter},
- {"DecimalType", TypeDecimal},
- {"DoubleType", TypeDouble},
- {"FloatType", TypeFloat},
- {"Int32Type", TypeInt},
- {"DateType", TypeTimestamp},
- {"TimestampType", TypeTimestamp},
- {"UUIDType", TypeUUID},
- {"UTF8Type", TypeVarchar},
- {"IntegerType", TypeVarint},
- {"TimeUUIDType", TypeTimeUUID},
- {"InetAddressType", TypeInet},
- {"MapType", TypeMap},
- {"ListType", TypeList},
- {"SetType", TypeSet},
- {"unknown", TypeCustom},
- {"ShortType", TypeSmallInt},
- {"ByteType", TypeTinyInt},
- }
- func testType(t *testing.T, cassType string, expectedType Type) {
- if computedType := getApacheCassandraType(apacheCassandraTypePrefix + cassType); computedType != expectedType {
- t.Errorf("Cassandra custom type lookup for %s failed. Expected %s, got %s.", cassType, expectedType.String(), computedType.String())
- }
- }
- func TestLookupCassType(t *testing.T) {
- for _, lookupTest := range typeLookupTest {
- testType(t, lookupTest.TypeName, lookupTest.ExpectedType)
- }
- }
- type MyPointerMarshaler struct{}
- func (m *MyPointerMarshaler) MarshalCQL(_ TypeInfo) ([]byte, error) {
- return []byte{42}, nil
- }
- func TestMarshalPointer(t *testing.T) {
- m := &MyPointerMarshaler{}
- typ := NativeType{proto: 2, typ: TypeInt}
- data, err := Marshal(typ, m)
- if err != nil {
- t.Errorf("Pointer marshaling failed. Error: %s", err)
- }
- if len(data) != 1 || data[0] != 42 {
- t.Errorf("Pointer marshaling failed. Expected %+v, got %+v", []byte{42}, data)
- }
- }
- func TestMarshalTimestamp(t *testing.T) {
- var marshalTimestampTests = []struct {
- Info TypeInfo
- Data []byte
- Value interface{}
- }{
- {
- NativeType{proto: 2, typ: TypeTimestamp},
- []byte("\x00\x00\x01\x40\x77\x16\xe1\xb8"),
- time.Date(2013, time.August, 13, 9, 52, 3, 0, time.UTC),
- },
- {
- NativeType{proto: 2, typ: TypeTimestamp},
- []byte("\x00\x00\x01\x40\x77\x16\xe1\xb8"),
- int64(1376387523000),
- },
- {
- // 9223372036854 is the maximum time representable in ms since the epoch
- // with int64 if using UnixNano to convert
- NativeType{proto: 2, typ: TypeTimestamp},
- []byte("\x00\x00\x08\x63\x7b\xd0\x5a\xf6"),
- time.Date(2262, time.April, 11, 23, 47, 16, 854775807, time.UTC),
- },
- {
- // One nanosecond after causes overflow when using UnixNano
- // Instead it should resolve to the same time in ms
- NativeType{proto: 2, typ: TypeTimestamp},
- []byte("\x00\x00\x08\x63\x7b\xd0\x5a\xf6"),
- time.Date(2262, time.April, 11, 23, 47, 16, 854775808, time.UTC),
- },
- {
- // -9223372036855 is the minimum time representable in ms since the epoch
- // with int64 if using UnixNano to convert
- NativeType{proto: 2, typ: TypeTimestamp},
- []byte("\xff\xff\xf7\x9c\x84\x2f\xa5\x09"),
- time.Date(1677, time.September, 21, 00, 12, 43, 145224192, time.UTC),
- },
- {
- // One nanosecond earlier causes overflow when using UnixNano
- // it should resolve to the same time in ms
- NativeType{proto: 2, typ: TypeTimestamp},
- []byte("\xff\xff\xf7\x9c\x84\x2f\xa5\x09"),
- time.Date(1677, time.September, 21, 00, 12, 43, 145224191, time.UTC),
- },
- {
- // Store the zero time as a blank slice
- NativeType{proto: 2, typ: TypeTimestamp},
- []byte{},
- time.Time{},
- },
- }
- for i, test := range marshalTimestampTests {
- t.Log(i, test)
- data, err := Marshal(test.Info, test.Value)
- if err != nil {
- t.Errorf("marshalTest[%d]: %v", i, err)
- continue
- }
- if !bytes.Equal(data, test.Data) {
- t.Errorf("marshalTest[%d]: expected %x (%v), got %x (%v) for time %s", i,
- test.Data, decBigInt(test.Data), data, decBigInt(data), test.Value)
- }
- }
- }
- func TestMarshalTuple(t *testing.T) {
- info := TupleTypeInfo{
- NativeType: NativeType{proto: 3, typ: TypeTuple},
- Elems: []TypeInfo{
- NativeType{proto: 3, typ: TypeVarchar},
- NativeType{proto: 3, typ: TypeVarchar},
- },
- }
- expectedData := []byte("\x00\x00\x00\x03foo\x00\x00\x00\x03bar")
- value := []interface{}{"foo", "bar"}
- data, err := Marshal(info, value)
- if err != nil {
- t.Errorf("marshalTest: %v", err)
- return
- }
- if !bytes.Equal(data, expectedData) {
- t.Errorf("marshalTest: expected %x (%v), got %x (%v)",
- expectedData, decBigInt(expectedData), data, decBigInt(data))
- return
- }
- var s1, s2 string
- val := []interface{}{&s1, &s2}
- err = Unmarshal(info, expectedData, val)
- if err != nil {
- t.Errorf("unmarshalTest: %v", err)
- return
- }
- if s1 != "foo" || s2 != "bar" {
- t.Errorf("unmarshalTest: expected [foo, bar], got [%s, %s]", s1, s2)
- }
- }
- func TestMarshalNil(t *testing.T) {
- types := []Type{
- TypeAscii,
- TypeBlob,
- TypeBoolean,
- TypeBigInt,
- TypeCounter,
- TypeDecimal,
- TypeDouble,
- TypeFloat,
- TypeInt,
- TypeTimestamp,
- TypeUUID,
- TypeVarchar,
- TypeVarint,
- TypeTimeUUID,
- TypeInet,
- }
- for _, typ := range types {
- data, err := Marshal(NativeType{proto: 3, typ: typ}, nil)
- if err != nil {
- t.Errorf("unable to marshal nil %v: %v\n", typ, err)
- } else if data != nil {
- t.Errorf("expected to get nil byte for nil %v got % X", typ, data)
- }
- }
- }
- func TestUnmarshalInetCopyBytes(t *testing.T) {
- data := []byte{127, 0, 0, 1}
- var ip net.IP
- if err := unmarshalInet(NativeType{proto: 2, typ: TypeInet}, data, &ip); err != nil {
- t.Fatal(err)
- }
- copy(data, []byte{0xFF, 0xFF, 0xFF, 0xFF})
- ip2 := net.IP(data)
- if !ip.Equal(net.IPv4(127, 0, 0, 1)) {
- t.Fatalf("IP memory shared with data: ip=%v ip2=%v", ip, ip2)
- }
- }
- func TestUnmarshalDate(t *testing.T) {
- data := []uint8{0x80, 0x0, 0x43, 0x31}
- var date time.Time
- if err := unmarshalDate(NativeType{proto: 2, typ: TypeDate}, data, &date); err != nil {
- t.Fatal(err)
- }
- expectedDate := "2017-02-04"
- formattedDate := date.Format("2006-01-02")
- if expectedDate != formattedDate {
- t.Errorf("marshalTest: expected %v, got %v", expectedDate, formattedDate)
- return
- }
- }
- func TestMarshalDate(t *testing.T) {
- now := time.Now().UTC()
- timestamp := now.UnixNano() / int64(time.Millisecond)
- expectedData := encInt(int32(timestamp/86400000 + int64(1<<31)))
- var marshalDateTests = []struct {
- Info TypeInfo
- Data []byte
- Value interface{}
- }{
- {
- NativeType{proto: 4, typ: TypeDate},
- expectedData,
- timestamp,
- },
- {
- NativeType{proto: 4, typ: TypeDate},
- expectedData,
- now,
- },
- {
- NativeType{proto: 4, typ: TypeDate},
- expectedData,
- &now,
- },
- {
- NativeType{proto: 4, typ: TypeDate},
- expectedData,
- now.Format("2006-01-02"),
- },
- }
- for i, test := range marshalDateTests {
- t.Log(i, test)
- data, err := Marshal(test.Info, test.Value)
- if err != nil {
- t.Errorf("marshalTest[%d]: %v", i, err)
- continue
- }
- if !bytes.Equal(data, test.Data) {
- t.Errorf("marshalTest[%d]: expected %x (%v), got %x (%v) for time %s", i,
- test.Data, decInt(test.Data), data, decInt(data), test.Value)
- }
- }
- }
- func BenchmarkUnmarshalVarchar(b *testing.B) {
- b.ReportAllocs()
- src := make([]byte, 1024)
- dst := make([]byte, len(src))
- b.ResetTimer()
- for i := 0; i < b.N; i++ {
- if err := unmarshalVarchar(NativeType{}, src, &dst); err != nil {
- b.Fatal(err)
- }
- }
- }
- func TestMarshalDuration(t *testing.T) {
- durationS := "1h10m10s"
- duration, _ := time.ParseDuration(durationS)
- expectedData := append([]byte{0, 0}, encVint(duration.Nanoseconds())...)
- var marshalDurationTests = []struct {
- Info TypeInfo
- Data []byte
- Value interface{}
- }{
- {
- NativeType{proto: 5, typ: TypeDuration},
- expectedData,
- duration.Nanoseconds(),
- },
- {
- NativeType{proto: 5, typ: TypeDuration},
- expectedData,
- duration,
- },
- {
- NativeType{proto: 5, typ: TypeDuration},
- expectedData,
- durationS,
- },
- {
- NativeType{proto: 5, typ: TypeDuration},
- expectedData,
- &duration,
- },
- }
- for i, test := range marshalDurationTests {
- t.Log(i, test)
- data, err := Marshal(test.Info, test.Value)
- if err != nil {
- t.Errorf("marshalTest[%d]: %v", i, err)
- continue
- }
- if !bytes.Equal(data, test.Data) {
- t.Errorf("marshalTest[%d]: expected %x (%v), got %x (%v) for time %s", i,
- test.Data, decInt(test.Data), data, decInt(data), test.Value)
- }
- }
- }
|