-
Notifications
You must be signed in to change notification settings - Fork 49
/
update_test.go
64 lines (51 loc) · 1.63 KB
/
update_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
53
54
55
56
57
58
59
60
61
62
63
64
package osm
import (
"testing"
"time"
)
func TestUpdates_UpTo(t *testing.T) {
us := Updates{
{Index: 1, Timestamp: time.Date(2012, 1, 1, 0, 0, 0, 0, time.UTC)},
{Index: 2, Timestamp: time.Date(2014, 1, 1, 0, 0, 0, 0, time.UTC)},
{Index: 3, Timestamp: time.Date(2013, 1, 1, 0, 0, 0, 0, time.UTC)},
}
if v := len(us.UpTo(time.Date(2011, 1, 1, 0, 0, 0, 0, time.UTC))); v != 0 {
t.Errorf("incorrect number of updates, got %v", v)
}
u := us.UpTo(time.Date(2012, 1, 1, 0, 0, 0, 0, time.UTC))
if v := len(u); v != 1 {
t.Errorf("incorrect number of updates, got %v", v)
}
if v := u[0].Index; v != 1 {
t.Errorf("incorrect value, got index: %v", v)
}
u = us.UpTo(time.Date(2013, 1, 1, 0, 0, 0, 0, time.UTC))
if v := len(u); v != 2 {
t.Errorf("incorrect number of updates, got %v", v)
}
if v := u[0].Index; v != 1 {
t.Errorf("incorrect value, got index: %v", v)
}
if v := u[1].Index; v != 3 {
t.Errorf("incorrect value, got index: %v", v)
}
if v := len(us.UpTo(time.Date(2013, 2, 1, 0, 0, 0, 0, time.UTC))); v != 2 {
t.Errorf("incorrect number of updates, got %v", v)
}
if v := len(us.UpTo(time.Date(2015, 1, 1, 0, 0, 0, 0, time.UTC))); v != 3 {
t.Errorf("incorrect number of updates, got %v", v)
}
}
func TestUpdates_SortByIndex(t *testing.T) {
us := Updates{
{Index: 1, Version: 0, Timestamp: time.Date(2012, 1, 1, 0, 0, 0, 0, time.UTC)},
{Index: 1, Version: 2, Timestamp: time.Date(2014, 1, 1, 0, 0, 0, 0, time.UTC)},
{Index: 1, Version: 1, Timestamp: time.Date(2013, 1, 1, 0, 0, 0, 0, time.UTC)},
}
us.SortByIndex()
for i, u := range us {
if u.Version != i {
t.Fatalf("incorrect sort: %v", us)
}
}
}