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 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
|
// +build all unit
package gocql
import (
"bytes"
"strings"
"testing"
"time"
)
func TestUUIDNil(t *testing.T) {
var uuid UUID
want, got := "00000000-0000-0000-0000-000000000000", uuid.String()
if want != got {
t.Fatalf("TestNil: expected %q got %q", want, got)
}
}
var testsUUID = []struct {
input string
variant int
version int
}{
{"b4f00409-cef8-4822-802c-deb20704c365", VariantIETF, 4},
{"B4F00409-CEF8-4822-802C-DEB20704C365", VariantIETF, 4}, //Use capital letters
{"f81d4fae-7dec-11d0-a765-00a0c91e6bf6", VariantIETF, 1},
{"00000000-7dec-11d0-a765-00a0c91e6bf6", VariantIETF, 1},
{"3051a8d7-aea7-1801-e0bf-bc539dd60cf3", VariantFuture, 1},
{"3051a8d7-aea7-2801-e0bf-bc539dd60cf3", VariantFuture, 2},
{"3051a8d7-aea7-3801-e0bf-bc539dd60cf3", VariantFuture, 3},
{"3051a8d7-aea7-4801-e0bf-bc539dd60cf3", VariantFuture, 4},
{"3051a8d7-aea7-3801-e0bf-bc539dd60cf3", VariantFuture, 5},
{"d0e817e1-e4b1-1801-3fe6-b4b60ccecf9d", VariantNCSCompat, 0},
{"d0e817e1-e4b1-1801-bfe6-b4b60ccecf9d", VariantIETF, 1},
{"d0e817e1-e4b1-1801-dfe6-b4b60ccecf9d", VariantMicrosoft, 0},
{"d0e817e1-e4b1-1801-ffe6-b4b60ccecf9d", VariantFuture, 0},
}
func TestPredefinedUUID(t *testing.T) {
for i := range testsUUID {
uuid, err := ParseUUID(testsUUID[i].input)
if err != nil {
t.Errorf("ParseUUID #%d: %v", i, err)
continue
}
if str := uuid.String(); str != strings.ToLower(testsUUID[i].input) {
t.Errorf("String #%d: expected %q got %q", i, testsUUID[i].input, str)
continue
}
if variant := uuid.Variant(); variant != testsUUID[i].variant {
t.Errorf("Variant #%d: expected %d got %d", i, testsUUID[i].variant, variant)
}
if testsUUID[i].variant == VariantIETF {
if version := uuid.Version(); version != testsUUID[i].version {
t.Errorf("Version #%d: expected %d got %d", i, testsUUID[i].version, version)
}
}
json, err := uuid.MarshalJSON()
if err != nil {
t.Errorf("MarshalJSON #%d: %v", i, err)
}
expectedJson := `"` + strings.ToLower(testsUUID[i].input) + `"`
if string(json) != expectedJson {
t.Errorf("MarshalJSON #%d: expected %v got %v", i, expectedJson, string(json))
}
var unmarshaled UUID
err = unmarshaled.UnmarshalJSON(json)
if err != nil {
t.Errorf("UnmarshalJSON #%d: %v", i, err)
}
if unmarshaled != uuid {
t.Errorf("UnmarshalJSON #%d: expected %v got %v", i, uuid, unmarshaled)
}
}
}
func TestInvalidUUIDCharacter(t *testing.T) {
_, err := ParseUUID("z4f00409-cef8-4822-802c-deb20704c365")
if err == nil || !strings.Contains(err.Error(), "invalid UUID") {
t.Fatalf("expected invalid UUID error, got '%v' ", err)
}
}
func TestInvalidUUIDLength(t *testing.T) {
_, err := ParseUUID("4f00")
if err == nil || !strings.Contains(err.Error(), "invalid UUID") {
t.Fatalf("expected invalid UUID error, got '%v' ", err)
}
_, err = UUIDFromBytes(TimeUUID().Bytes()[:15])
if err == nil || err.Error() != "UUIDs must be exactly 16 bytes long" {
t.Fatalf("expected error '%v', got '%v'", "UUIDs must be exactly 16 bytes long", err)
}
}
func TestRandomUUID(t *testing.T) {
for i := 0; i < 20; i++ {
uuid, err := RandomUUID()
if err != nil {
t.Errorf("RandomUUID: %v", err)
}
if variant := uuid.Variant(); variant != VariantIETF {
t.Errorf("wrong variant. expected %d got %d", VariantIETF, variant)
}
if version := uuid.Version(); version != 4 {
t.Errorf("wrong version. expected %d got %d", 4, version)
}
}
}
func TestRandomUUIDInvalidAPICalls(t *testing.T) {
uuid, err := RandomUUID()
if err != nil {
t.Fatalf("unexpected error %v", err)
}
if node := uuid.Node(); node != nil {
t.Fatalf("expected nil, got %v", node)
}
if stamp := uuid.Timestamp(); stamp != 0 {
t.Fatalf("expceted 0, got %v", stamp)
}
zeroT := time.Time{}
if to := uuid.Time(); to != zeroT {
t.Fatalf("expected %v, got %v", zeroT, to)
}
}
func TestUUIDFromTime(t *testing.T) {
date := time.Date(1982, 5, 5, 12, 34, 56, 400, time.UTC)
uuid := UUIDFromTime(date)
if uuid.Time() != date {
t.Errorf("embedded time incorrect. Expected %v got %v", date, uuid.Time())
}
}
func TestTimeUUIDWith(t *testing.T) {
utcTime := time.Date(1982, 5, 5, 12, 34, 56, 400, time.UTC)
ts := int64(utcTime.Unix()-timeBase)*10000000 + int64(utcTime.Nanosecond()/100)
clockSeq := uint32(0x3FFF) // Max number of clock sequence.
node := [7]byte{0, 1, 2, 3, 4, 5, 6} // The last element should be ignored.
uuid := TimeUUIDWith(ts, clockSeq, node[:])
if got := uuid.Variant(); got != VariantIETF {
t.Errorf("wrong variant. expected %d got %d", VariantIETF, got)
}
if got, want := uuid.Version(), 1; got != want {
t.Errorf("wrong version. Expected %v got %v", want, got)
}
if got := uuid.Timestamp(); got != int64(ts) {
t.Errorf("wrong timestamp. Expected %v got %v", ts, got)
}
if got := uuid.Clock(); uint32(got) != clockSeq {
t.Errorf("wrong clock. expected %v got %v", clockSeq, got)
}
if got, want := uuid.Node(), node[:6]; !bytes.Equal(got, want) {
t.Errorf("wrong node. expected %x, bot %x", want, got)
}
}
func TestParseUUID(t *testing.T) {
uuid, _ := ParseUUID("486f3a88-775b-11e3-ae07-d231feb1dc81")
if uuid.Time() != time.Date(2014, 1, 7, 5, 19, 29, 222516000, time.UTC) {
t.Errorf("Expected date of 1/7/2014 at 5:19:29.222516, got %v", uuid.Time())
}
}
func TestTimeUUID(t *testing.T) {
var node []byte
timestamp := int64(0)
for i := 0; i < 20; i++ {
uuid := TimeUUID()
if variant := uuid.Variant(); variant != VariantIETF {
t.Errorf("wrong variant. expected %d got %d", VariantIETF, variant)
}
if version := uuid.Version(); version != 1 {
t.Errorf("wrong version. expected %d got %d", 1, version)
}
if n := uuid.Node(); !bytes.Equal(n, node) && i > 0 {
t.Errorf("wrong node. expected %x, got %x", node, n)
} else if i == 0 {
node = n
}
ts := uuid.Timestamp()
if ts < timestamp {
t.Errorf("timestamps must grow: timestamp=%v ts=%v", timestamp, ts)
}
timestamp = ts
}
}
func TestUnmarshalJSON(t *testing.T) {
var withHyphens, withoutHypens, tooLong UUID
withHyphens.UnmarshalJSON([]byte(`"486f3a88-775b-11e3-ae07-d231feb1dc81"`))
if withHyphens.Time().Truncate(time.Second) != time.Date(2014, 1, 7, 5, 19, 29, 0, time.UTC) {
t.Errorf("Expected date of 1/7/2014 at 5:19:29, got %v", withHyphens.Time())
}
withoutHypens.UnmarshalJSON([]byte(`"486f3a88775b11e3ae07d231feb1dc81"`))
if withoutHypens.Time().Truncate(time.Second) != time.Date(2014, 1, 7, 5, 19, 29, 0, time.UTC) {
t.Errorf("Expected date of 1/7/2014 at 5:19:29, got %v", withoutHypens.Time())
}
err := tooLong.UnmarshalJSON([]byte(`"486f3a88-775b-11e3-ae07-d231feb1dc81486f3a88"`))
if err == nil {
t.Errorf("no error for invalid JSON UUID")
}
}
func TestMarshalText(t *testing.T) {
u, err := ParseUUID("486f3a88-775b-11e3-ae07-d231feb1dc81")
if err != nil {
t.Fatal(err)
}
text, err := u.MarshalText()
if err != nil {
t.Fatal(err)
}
var u2 UUID
if err := u2.UnmarshalText(text); err != nil {
t.Fatal(err)
}
if u != u2 {
t.Fatalf("uuids not equal after marshalling: before=%s after=%s", u, u2)
}
}
func TestMinTimeUUID(t *testing.T) {
aTime := time.Now()
minTimeUUID := MinTimeUUID(aTime)
ts := aTime.Unix()
tsFromUUID := minTimeUUID.Time().Unix()
if ts != tsFromUUID {
t.Errorf("timestamps are not equal: expected %d, got %d", ts, tsFromUUID)
}
clockFromUUID := minTimeUUID.Clock()
// clear two most significant bits, as they are used for IETF variant
if minClock&0x3FFF != clockFromUUID {
t.Errorf("clocks are not equal: expected %08b, got %08b", minClock&0x3FFF, clockFromUUID)
}
nodeFromUUID := minTimeUUID.Node()
if !bytes.Equal(minNode, nodeFromUUID) {
t.Errorf("nodes are not equal: expected %08b, got %08b", minNode, nodeFromUUID)
}
}
func TestMaxTimeUUID(t *testing.T) {
aTime := time.Now()
maxTimeUUID := MaxTimeUUID(aTime)
ts := aTime.Unix()
tsFromUUID := maxTimeUUID.Time().Unix()
if ts != tsFromUUID {
t.Errorf("timestamps are not equal: expected %d, got %d", ts, tsFromUUID)
}
clockFromUUID := maxTimeUUID.Clock()
if maxClock&0x3FFF != clockFromUUID {
t.Errorf("clocks are not equal: expected %08b, got %08b", maxClock&0x3FFF, clockFromUUID)
}
nodeFromUUID := maxTimeUUID.Node()
if !bytes.Equal(maxNode, nodeFromUUID) {
t.Errorf("nodes are not equal: expected %08b, got %08b", maxNode, nodeFromUUID)
}
}
|