forked from vitessio/vitess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhistory_test.go
109 lines (91 loc) · 2.65 KB
/
history_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
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
/*
Copyright 2019 The Vitess Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreedto in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package history
import (
"testing"
)
func TestHistory(t *testing.T) {
q := New(4)
i := 0
for ; i < 2; i++ {
q.Add(i)
}
want := []int{1, 0}
records := q.Records()
if want, got := len(want), len(records); want != got {
t.Errorf("len(records): want %v, got %v. records: %+v", want, got, q)
}
for i, record := range records {
if record != want[i] {
t.Errorf("record doesn't match: want %v, got %v", want[i], record)
}
}
for ; i < 6; i++ {
q.Add(i)
}
want = []int{5, 4, 3, 2}
records = q.Records()
if want, got := len(want), len(records); want != got {
t.Errorf("len(records): want %v, got %v. records: %+v", want, got, q)
}
for i, record := range records {
if record != want[i] {
t.Errorf("record doesn't match: want %v, got %v", want[i], record)
}
}
}
func TestLatest(t *testing.T) {
h := New(4)
// Add first value.
h.Add(mod10(1))
if got, want := int(h.Records()[0].(mod10)), 1; got != want {
t.Errorf("h.Records()[0] = %v, want %v", got, want)
}
if got, want := int(h.Latest().(mod10)), 1; got != want {
t.Errorf("h.Latest() = %v, want %v", got, want)
}
// Add value that isn't a "duplicate".
h.Add(mod10(2))
if got, want := int(h.Records()[0].(mod10)), 2; got != want {
t.Errorf("h.Records()[0] = %v, want %v", got, want)
}
if got, want := int(h.Latest().(mod10)), 2; got != want {
t.Errorf("h.Latest() = %v, want %v", got, want)
}
// Add value that IS a "duplicate".
h.Add(mod10(12))
// Records()[0] doesn't change.
if got, want := int(h.Records()[0].(mod10)), 2; got != want {
t.Errorf("h.Records()[0] = %v, want %v", got, want)
}
// Latest() does change.
if got, want := int(h.Latest().(mod10)), 12; got != want {
t.Errorf("h.Latest() = %v, want %v", got, want)
}
}
type duplic int
func (d duplic) IsDuplicate(other interface{}) bool {
return d == other
}
func TestIsEquivalent(t *testing.T) {
q := New(4)
q.Add(duplic(0))
q.Add(duplic(0))
if got, want := len(q.Records()), 1; got != want {
t.Errorf("len(q.Records())=%v, want %v", got, want)
}
}
type mod10 int
func (m mod10) IsDuplicate(other interface{}) bool {
return m%10 == other.(mod10)%10
}