This repository has been archived by the owner on Jun 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcounter_tracker_test.go
89 lines (77 loc) · 2.52 KB
/
counter_tracker_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
/*
* Copyright 2017 Google Inc.
*
* 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 agreed to 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 nozzle
import (
"context"
"time"
"github.com/cloudfoundry-community/stackdriver-tools/src/stackdriver-nozzle/mocks"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
var _ = Describe("CounterTracker", func() {
var (
subject *counterTracker
counterTTL time.Duration
logger *mocks.MockLogger
)
BeforeEach(func() {
logger = &mocks.MockLogger{}
counterTTL = time.Duration(50) * time.Millisecond
countersExpiredCount.Set(0)
})
It("increments counters and handles counter resets", func() {
ctx, cancel := context.WithCancel(context.TODO())
defer cancel()
subject = NewCounterTracker(ctx, counterTTL, logger)
baseTime := time.Now()
incomingTotals := []float64{10, 15, 25, 40, 10, 20}
expectedTotals := []float64{5, 15, 30, 40, 50}
for idx, value := range incomingTotals {
ts := baseTime.Add(time.Duration(idx) * time.Millisecond)
total, st := subject.GetTotal("counterName", value, &ts)
if idx == 0 {
// First seen value initializes the counter.
Expect(st).To(BeNil())
} else {
Expect(total).To(Equal(expectedTotals[idx-1]))
Expect(*st).To(BeTemporally("~", baseTime))
}
}
})
It("expires old counters", func() {
ctx, cancel := context.WithCancel(context.TODO())
defer cancel()
subject = NewCounterTracker(ctx, counterTTL, logger)
runTest := func(baseTime time.Time) {
incomingTotals := []float64{150, 165, 165, 170, 200, 200}
expectedTotals := []float64{15, 15, 20, 50, 50}
for idx, value := range incomingTotals {
ts := baseTime.Add(time.Duration(idx) * time.Millisecond)
total, st := subject.GetTotal("counterName2", value, &ts)
if idx == 0 {
// First seen value initializes the counter.
Expect(st).To(BeNil())
} else {
Expect(total).To(Equal(expectedTotals[idx-1]))
Expect(*st).To(BeTemporally("~", baseTime))
}
}
}
runTest(time.Now())
Eventually(countersExpiredCount.IntValue).Should(Equal(1))
runTest(time.Now())
})
})