| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094 |
- // +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{}
- }{
- {
- NativeType{proto: 2, typ: TypeVarchar},
- []byte("hello world"),
- []byte("hello world"),
- },
- {
- NativeType{proto: 2, typ: TypeVarchar},
- []byte("hello world"),
- "hello world",
- },
- {
- NativeType{proto: 2, typ: TypeVarchar},
- []byte(nil),
- []byte(nil),
- },
- {
- NativeType{proto: 2, typ: TypeVarchar},
- []byte("hello world"),
- MyString("hello world"),
- },
- {
- NativeType{proto: 2, typ: TypeVarchar},
- []byte("HELLO WORLD"),
- CustomString("hello world"),
- },
- {
- NativeType{proto: 2, typ: TypeBlob},
- []byte("hello\x00"),
- []byte("hello\x00"),
- },
- {
- NativeType{proto: 2, typ: TypeBlob},
- []byte(nil),
- []byte(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
- }(),
- },
- {
- NativeType{proto: 2, typ: TypeInt},
- []byte("\x00\x00\x00\x00"),
- 0,
- },
- {
- NativeType{proto: 2, typ: TypeInt},
- []byte("\x01\x02\x03\x04"),
- int(16909060),
- },
- {
- NativeType{proto: 2, typ: TypeInt},
- []byte("\x01\x02\x03\x04"),
- AliasInt(16909060),
- },
- {
- NativeType{proto: 2, typ: TypeInt},
- []byte("\x80\x00\x00\x00"),
- int32(math.MinInt32),
- },
- {
- NativeType{proto: 2, typ: TypeInt},
- []byte("\x7f\xff\xff\xff"),
- int32(math.MaxInt32),
- },
- {
- NativeType{proto: 2, typ: TypeInt},
- []byte("\x00\x00\x00\x00"),
- "0",
- },
- {
- NativeType{proto: 2, typ: TypeInt},
- []byte("\x01\x02\x03\x04"),
- "16909060",
- },
- {
- NativeType{proto: 2, typ: TypeInt},
- []byte("\x80\x00\x00\x00"),
- "-2147483648", // math.MinInt32
- },
- {
- NativeType{proto: 2, typ: TypeInt},
- []byte("\x7f\xff\xff\xff"),
- "2147483647", // math.MaxInt32
- },
- {
- NativeType{proto: 2, typ: TypeBigInt},
- []byte("\x00\x00\x00\x00\x00\x00\x00\x00"),
- 0,
- },
- {
- NativeType{proto: 2, typ: TypeBigInt},
- []byte("\x01\x02\x03\x04\x05\x06\x07\x08"),
- 72623859790382856,
- },
- {
- NativeType{proto: 2, typ: TypeBigInt},
- []byte("\x80\x00\x00\x00\x00\x00\x00\x00"),
- int64(math.MinInt64),
- },
- {
- NativeType{proto: 2, typ: TypeBigInt},
- []byte("\x7f\xff\xff\xff\xff\xff\xff\xff"),
- int64(math.MaxInt64),
- },
- {
- NativeType{proto: 2, typ: TypeBigInt},
- []byte("\x00\x00\x00\x00\x00\x00\x00\x00"),
- "0",
- },
- {
- NativeType{proto: 2, typ: TypeBigInt},
- []byte("\x01\x02\x03\x04\x05\x06\x07\x08"),
- "72623859790382856",
- },
- {
- NativeType{proto: 2, typ: TypeBigInt},
- []byte("\x80\x00\x00\x00\x00\x00\x00\x00"),
- "-9223372036854775808", // math.MinInt64
- },
- {
- NativeType{proto: 2, typ: TypeBigInt},
- []byte("\x7f\xff\xff\xff\xff\xff\xff\xff"),
- "9223372036854775807", // math.MaxInt64
- },
- {
- NativeType{proto: 2, typ: TypeBoolean},
- []byte("\x00"),
- false,
- },
- {
- NativeType{proto: 2, typ: TypeBoolean},
- []byte("\x01"),
- true,
- },
- {
- NativeType{proto: 2, typ: TypeFloat},
- []byte("\x40\x49\x0f\xdb"),
- float32(3.14159265),
- },
- {
- NativeType{proto: 2, typ: TypeDouble},
- []byte("\x40\x09\x21\xfb\x53\xc8\xd4\xf1"),
- float64(3.14159265),
- },
- {
- NativeType{proto: 2, typ: TypeDecimal},
- []byte("\x00\x00\x00\x00\x00"),
- inf.NewDec(0, 0),
- },
- {
- NativeType{proto: 2, typ: TypeDecimal},
- []byte("\x00\x00\x00\x00\x64"),
- inf.NewDec(100, 0),
- },
- {
- NativeType{proto: 2, typ: TypeDecimal},
- []byte("\x00\x00\x00\x02\x19"),
- decimalize("0.25"),
- },
- {
- 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
- },
- {
- 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
- },
- {
- 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
- },
- {
- 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
- },
- {
- NativeType{proto: 2, typ: TypeDecimal},
- []byte("\x00\x00\x00\x06\xe5\xde]\x98Y"),
- decimalize("-112233.441191"), // From the datastax/python-driver test suite
- },
- {
- NativeType{proto: 2, typ: TypeDecimal},
- []byte("\x00\x00\x00\x14\x00\xfa\xce"),
- decimalize("0.00000000000000064206"), // From the datastax/python-driver test suite
- },
- {
- NativeType{proto: 2, typ: TypeDecimal},
- []byte("\x00\x00\x00\x14\xff\x052"),
- decimalize("-0.00000000000000064206"), // From the datastax/python-driver test suite
- },
- {
- NativeType{proto: 2, typ: TypeDecimal},
- []byte("\xff\xff\xff\x9c\x00\xfa\xce"),
- inf.NewDec(64206, -100), // From the datastax/python-driver test suite
- },
- {
- 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),
- },
- {
- 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},
- },
- {
- 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},
- },
- {
- 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},
- },
- {
- 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{},
- },
- {
- 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},
- },
- {
- 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{},
- },
- {
- 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)},
- },
- {
- 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),
- },
- },
- {
- NativeType{proto: 2, typ: TypeVarint},
- []byte("\x00"),
- 0,
- },
- {
- NativeType{proto: 2, typ: TypeVarint},
- []byte("\x37\xE2\x3C\xEC"),
- int32(937573612),
- },
- {
- NativeType{proto: 2, typ: TypeVarint},
- []byte("\x37\xE2\x3C\xEC"),
- big.NewInt(937573612),
- },
- {
- NativeType{proto: 2, typ: TypeVarint},
- []byte("\x03\x9EV \x15\f\x03\x9DK\x18\xCDI\\$?\a["),
- bigintize("1231312312331283012830129382342342412123"), // From the iconara/cql-rb test suite
- },
- {
- NativeType{proto: 2, typ: TypeVarint},
- []byte("\xC9v\x8D:\x86"),
- big.NewInt(-234234234234), // From the iconara/cql-rb test suite
- },
- {
- NativeType{proto: 2, typ: TypeVarint},
- []byte("f\x1e\xfd\xf2\xe3\xb1\x9f|\x04_\x15"),
- bigintize("123456789123456789123456789"), // From the datastax/python-driver test suite
- },
- {
- NativeType{proto: 2, typ: TypeVarint},
- []byte(nil),
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeInet},
- []byte("\x7F\x00\x00\x01"),
- net.ParseIP("127.0.0.1").To4(),
- },
- {
- NativeType{proto: 2, typ: TypeInet},
- []byte("\xFF\xFF\xFF\xFF"),
- net.ParseIP("255.255.255.255").To4(),
- },
- {
- NativeType{proto: 2, typ: TypeInet},
- []byte("\x7F\x00\x00\x01"),
- "127.0.0.1",
- },
- {
- NativeType{proto: 2, typ: TypeInet},
- []byte("\xFF\xFF\xFF\xFF"),
- "255.255.255.255",
- },
- {
- 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",
- },
- {
- 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",
- },
- {
- 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"),
- },
- {
- 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"),
- },
- {
- NativeType{proto: 2, typ: TypeInt},
- []byte(nil),
- nil,
- },
- {
- NativeType{proto: 2, typ: TypeVarchar},
- []byte("nullable string"),
- func() *string {
- value := "nullable string"
- return &value
- }(),
- },
- {
- NativeType{proto: 2, typ: TypeVarchar},
- []byte{},
- (*string)(nil),
- },
- {
- NativeType{proto: 2, typ: TypeInt},
- []byte("\x7f\xff\xff\xff"),
- func() *int {
- var value int = math.MaxInt32
- return &value
- }(),
- },
- {
- NativeType{proto: 2, typ: TypeInt},
- []byte(nil),
- (*int)(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},
- },
- {
- NativeType{proto: 2, typ: TypeTimeUUID},
- []byte{},
- (*UUID)(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
- }(),
- },
- {
- NativeType{proto: 2, typ: TypeTimestamp},
- []byte(nil),
- (*time.Time)(nil),
- },
- {
- NativeType{proto: 2, typ: TypeBoolean},
- []byte("\x00"),
- func() *bool {
- b := false
- return &b
- }(),
- },
- {
- NativeType{proto: 2, typ: TypeBoolean},
- []byte("\x01"),
- func() *bool {
- b := true
- return &b
- }(),
- },
- {
- NativeType{proto: 2, typ: TypeBoolean},
- []byte(nil),
- (*bool)(nil),
- },
- {
- NativeType{proto: 2, typ: TypeFloat},
- []byte("\x40\x49\x0f\xdb"),
- func() *float32 {
- f := float32(3.14159265)
- return &f
- }(),
- },
- {
- NativeType{proto: 2, typ: TypeFloat},
- []byte(nil),
- (*float32)(nil),
- },
- {
- NativeType{proto: 2, typ: TypeDouble},
- []byte("\x40\x09\x21\xfb\x53\xc8\xd4\xf1"),
- func() *float64 {
- d := float64(3.14159265)
- return &d
- }(),
- },
- {
- NativeType{proto: 2, typ: TypeDouble},
- []byte(nil),
- (*float64)(nil),
- },
- {
- NativeType{proto: 2, typ: TypeInet},
- []byte("\x7F\x00\x00\x01"),
- func() *net.IP {
- ip := net.ParseIP("127.0.0.1").To4()
- return &ip
- }(),
- },
- {
- NativeType{proto: 2, typ: TypeInet},
- []byte(nil),
- (*net.IP)(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
- }(),
- },
- {
- CollectionType{
- NativeType: NativeType{proto: 2, typ: TypeList},
- Elem: NativeType{proto: 2, typ: TypeInt},
- },
- []byte(nil),
- (*[]int)(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
- }(),
- },
- {
- 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),
- },
- {
- NativeType{proto: 2, typ: TypeVarchar},
- []byte("HELLO WORLD"),
- func() *CustomString {
- customString := CustomString("hello world")
- return &customString
- }(),
- },
- {
- NativeType{proto: 2, typ: TypeVarchar},
- []byte(nil),
- (*CustomString)(nil),
- },
- {
- NativeType{proto: 2, typ: TypeSmallInt},
- []byte("\x7f\xff"),
- 32767, // math.MaxInt16
- },
- {
- NativeType{proto: 2, typ: TypeSmallInt},
- []byte("\x7f\xff"),
- "32767", // math.MaxInt16
- },
- {
- NativeType{proto: 2, typ: TypeSmallInt},
- []byte("\x00\x01"),
- int16(1),
- },
- {
- NativeType{proto: 2, typ: TypeSmallInt},
- []byte("\xff\xff"),
- int16(-1),
- },
- {
- NativeType{proto: 2, typ: TypeSmallInt},
- []byte("\xff\xff"),
- uint16(65535),
- },
- {
- NativeType{proto: 2, typ: TypeTinyInt},
- []byte("\x7f"),
- 127, // math.MaxInt8
- },
- {
- NativeType{proto: 2, typ: TypeTinyInt},
- []byte("\x7f"),
- "127", // math.MaxInt8
- },
- {
- NativeType{proto: 2, typ: TypeTinyInt},
- []byte("\x01"),
- int16(1),
- },
- {
- NativeType{proto: 2, typ: TypeTinyInt},
- []byte("\xff"),
- int16(-1),
- },
- {
- NativeType{proto: 2, typ: TypeTinyInt},
- []byte("\xff"),
- uint8(255),
- },
- {
- NativeType{proto: 2, typ: TypeTinyInt},
- []byte("\xff"),
- uint64(255),
- },
- {
- NativeType{proto: 2, typ: TypeTinyInt},
- []byte("\xff"),
- uint32(255),
- },
- {
- NativeType{proto: 2, typ: TypeTinyInt},
- []byte("\xff"),
- uint16(255),
- },
- {
- NativeType{proto: 2, typ: TypeTinyInt},
- []byte("\xff"),
- uint(255),
- },
- {
- NativeType{proto: 2, typ: TypeBigInt},
- []byte("\xff\xff\xff\xff\xff\xff\xff\xff"),
- uint64(math.MaxUint64),
- },
- {
- NativeType{proto: 2, typ: TypeInt},
- []byte("\xff\xff\xff\xff"),
- uint32(math.MaxUint32),
- },
- }
- 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 {
- 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)
- }
- }
- }
- func TestMarshal_Decode(t *testing.T) {
- for i, test := range marshalTests {
- if test.Value != 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); nil == err {
- t.Errorf("unmarshalTest[%d] (%v=>%t): %#v not return error.", i, test.Info, test.Value, test.Value)
- }
- }
- }
- }
- 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)
- }
- }
|