-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathclock_test.go
52 lines (46 loc) · 1.04 KB
/
clock_test.go
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
package ron
import "testing"
import (
"time"
)
func TestClock_Format(t *testing.T) {
tests := [][]string{
{"Fri Jan 1 00:00:00 UTC 2010", "0"},
{"Sat May 1 01:02:00 UTC 2010", "04012"},
{"Fri May 27 20:50:00 UTC 2016", "1CQKn"},
}
for i, pair := range tests {
date, err := time.Parse(time.UnixDate, pair[0])
if err != nil {
t.Fail()
break
}
ui := EncodeCalendar(date)
s := FormatInt([]byte{}, ui)
str := string(s)
if str != pair[1] {
t.Logf("case %d: %s must be %s", i, str, pair[1])
t.Fail()
}
t2 := DecodeCalendar(ui)
str2 := t2.Format(time.UnixDate)
if str2 != pair[0] {
t.Logf("case %d: %s must be %s", i, str2, pair[0])
t.Fail()
}
}
}
func BenchmarkClock_Time(b *testing.B) {
var prev UUID = ZERO_UUID
var clock = Clock{}
clock.lastSeen = NewEventUUID(0, 1)
for i := 0; i < b.N; i++ {
next := clock.Time()
if next.Value() <= prev.Value() {
b.Fail()
b.Logf("%s (%s) <= %s (%s) at %d\n", next.String(), next.String(), prev.String(), prev.String(), i)
break
}
prev = next
}
}