-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcircular_buffer_test.go
More file actions
127 lines (104 loc) · 3.32 KB
/
circular_buffer_test.go
File metadata and controls
127 lines (104 loc) · 3.32 KB
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
package main
import (
"testing"
)
func TestNewCircularBuffer_returnsUsableBuffer(t *testing.T) {
b := newCircularBuffer(10)
if b == nil {
t.Error("expected a buffer but got nil")
}
}
func TestSnapshot_returnsCorrectlySizedBuffer(t *testing.T) {
expected := 10
b := newCircularBuffer(expected)
snap := b.snapshot()
if len(snap) != expected {
t.Errorf("expected buffer of size %d, but it was %d", expected, len(snap))
}
}
func TestSnapshot_returnsCorrectSnapshotForJustSaturatedBuffer(t *testing.T) {
b := newCircularBuffer(4)
b.insert(latencyDataPoint{latency: 1.0})
b.insert(latencyDataPoint{latency: 2.0})
b.insert(latencyDataPoint{latency: 3.0})
b.insert(latencyDataPoint{latency: 4.0})
snap := b.snapshot()
expected := latencyDataPoint{latency: 1.0}
if snap[0] != expected {
t.Errorf("expected '%v' but got '%v'", expected, snap[0])
}
expected = latencyDataPoint{latency: 2.0}
if snap[1] != expected {
t.Errorf("expected '%v' but got '%v'", expected, snap[1])
}
expected = latencyDataPoint{latency: 3.0}
if snap[2] != expected {
t.Errorf("expected '%v' but got '%v'", expected, snap[2])
}
expected = latencyDataPoint{latency: 4.0}
if snap[3] != expected {
t.Errorf("expected '%v' but got '%v'", expected, snap[3])
}
}
func TestSnapshot_returnsCorrectSnapshotForOverSaturatedBuffer(t *testing.T) {
b := newCircularBuffer(4)
b.insert(latencyDataPoint{latency: 1.0})
b.insert(latencyDataPoint{latency: 2.0})
b.insert(latencyDataPoint{latency: 3.0})
b.insert(latencyDataPoint{latency: 4.0})
b.insert(latencyDataPoint{latency: 5.0})
snap := b.snapshot()
expected := latencyDataPoint{latency: 2.0}
if snap[0] != expected {
t.Errorf("expected '%v' but got '%v'", expected, snap[0])
}
expected = latencyDataPoint{latency: 3.0}
if snap[1] != expected {
t.Errorf("expected '%v' but got '%v'", expected, snap[1])
}
expected = latencyDataPoint{latency: 4.0}
if snap[2] != expected {
t.Errorf("expected '%v' but got '%v'", expected, snap[2])
}
expected = latencyDataPoint{latency: 5.0}
if snap[3] != expected {
t.Errorf("expected '%v' but got '%v'", expected, snap[3])
}
}
func TestSnapshot_returnsCorrectSnapshotForNonSaturatedBuffer(t *testing.T) {
b := newCircularBuffer(4)
b.insert(latencyDataPoint{latency: 1.0})
b.insert(latencyDataPoint{latency: 2.0})
b.insert(latencyDataPoint{latency: 3.0})
snap := b.snapshot()
expected := latencyDataPoint{latency: 1.0}
if snap[0] != expected {
t.Errorf("expected '%v' but got '%v'", expected, snap[0])
}
expected = latencyDataPoint{latency: 2.0}
if snap[1] != expected {
t.Errorf("expected '%v' but got '%v'", expected, snap[1])
}
expected = latencyDataPoint{latency: 3.0}
if snap[2] != expected {
t.Errorf("expected '%v' but got '%v'", expected, snap[2])
}
}
func TestInsert_addsValueToBuffer(t *testing.T) {
b := newCircularBuffer(10)
expected := latencyDataPoint{latency: 1.0}
b.insert(expected)
if snap := b.snapshot(); snap[0] != expected {
t.Errorf("expected '%v' but got '%v'", expected, snap[0])
}
}
func TestInsert_overwritesOldestValueWhenBufferIsFull(t *testing.T) {
b := newCircularBuffer(1)
b.insert(latencyDataPoint{latency: 1.0})
b.insert(latencyDataPoint{latency: 2.0})
snap := b.snapshot()
expected := latencyDataPoint{latency: 2.0}
if snap[0] != expected {
t.Errorf("expected '%v' but got '%v'", expected, snap[0])
}
}