forked from paulmach/osm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinterval_test.go
48 lines (39 loc) · 1.09 KB
/
interval_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
package replication
import (
"testing"
"time"
)
func TestDecodeIntervalState(t *testing.T) {
data := []byte(`#Sat Jul 16 06:28:03 UTC 2016
txnMaxQueried=836441250
sequenceNumber=2010594
timestamp=2016-07-16T06\:28\:02Z
txnReadyList=
txnMax=836441259
txnActiveList=836441203
`)
state, err := decodeIntervalState(data)
if v := MinuteSeqNum(state.SeqNum); v != 2010594 {
t.Errorf("incorrect id, got %v", v)
}
if !state.Timestamp.Equal(time.Date(2016, 7, 16, 6, 28, 2, 0, time.UTC)) {
t.Errorf("incorrect time, got %v", state.Timestamp)
}
if v := state.TxnMax; v != 836441259 {
t.Errorf("incorrect txnMax, got %v", v)
}
if v := state.TxnMaxQueried; v != 836441250 {
t.Errorf("incorrect txnMaxQueried, got %v", v)
}
if err != nil {
t.Errorf("got error: %v", err)
}
// to do some live testing
// ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
// defer cancel()
// log.Println(CurrentMinuteState(ctx))
// log.Println(MinuteState(ctx, 2139244))
// log.Println(CurrentHourState(ctx))
// log.Println(CurrentDayState(ctx))
// log.Println(Minute(ctx, 2010617))
}