blob: 4a9cfbd80e44a37745584d222f6fb75415e35252 [file] [log] [blame]
Jiri Simsad7616c92015-03-24 23:44:30 -07001// Copyright 2015 The Vanadium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Robin Thellendac59e972014-08-19 18:26:11 -07005package stats_test
6
7import (
Robin Thellend208e0f32015-07-20 14:46:33 -07008 "path/filepath"
Robin Thellendac59e972014-08-19 18:26:11 -07009 "reflect"
Robin Thellend208e0f32015-07-20 14:46:33 -070010 "runtime"
11 "sync"
Robin Thellendac59e972014-08-19 18:26:11 -070012 "testing"
13 "time"
14
Mike Burrows2c989372015-03-31 18:06:39 -070015 "v.io/v23/verror"
Jiri Simsaffceefa2015-02-28 11:03:34 -080016 libstats "v.io/x/ref/lib/stats"
17 "v.io/x/ref/lib/stats/counter"
18 "v.io/x/ref/lib/stats/histogram"
Todd Wang1ea8f192015-04-03 17:31:51 -070019 s_stats "v.io/x/ref/services/stats"
Robin Thellendac59e972014-08-19 18:26:11 -070020)
21
Robin Thellend14a09ef2014-08-29 13:55:19 -070022func doGlob(root, pattern string, since time.Time, includeValues bool) ([]libstats.KeyValue, error) {
23 it := libstats.Glob(root, pattern, since, includeValues)
Robin Thellend7a442432014-08-22 09:05:08 -070024 out := []libstats.KeyValue{}
Robin Thellendac59e972014-08-19 18:26:11 -070025 for it.Advance() {
Robin Thellendfa70aaa2014-10-09 17:13:05 -070026 out = append(out, it.Value())
Robin Thellendac59e972014-08-19 18:26:11 -070027 }
28 if err := it.Err(); err != nil {
29 return nil, err
30 }
31 return out, nil
32}
33
34func TestStats(t *testing.T) {
Robin Thellendac59e972014-08-19 18:26:11 -070035 now := time.Unix(1, 0)
Jungho Ahn58e85b82014-12-01 10:01:02 -080036 counter.TimeNow = func() time.Time { return now }
Robin Thellendac59e972014-08-19 18:26:11 -070037
Matt Rosencrantz94502cf2015-03-18 09:43:44 -070038 a := libstats.NewInteger("rpc/test/aaa")
39 b := libstats.NewFloat("rpc/test/bbb")
40 c := libstats.NewString("rpc/test/ccc")
41 d := libstats.NewCounter("rpc/test/ddd")
Robin Thellendac59e972014-08-19 18:26:11 -070042
43 a.Set(1)
44 b.Set(2)
45 c.Set("Hello")
46 d.Set(4)
47
Matt Rosencrantz94502cf2015-03-18 09:43:44 -070048 got, err := libstats.Value("rpc/test/aaa")
Robin Thellendac59e972014-08-19 18:26:11 -070049 if err != nil {
50 t.Errorf("unexpected error: %v", err)
51 }
52 if expected := int64(1); got != expected {
53 t.Errorf("unexpected result. Got %v, want %v", got, expected)
54 }
55
Mike Burrows2c989372015-03-31 18:06:39 -070056 if _, err := libstats.Value(""); verror.ErrorID(err) != verror.ErrNoExist.ID {
57 t.Errorf("expected error %s, got err=%s", verror.ErrNoExist.ID, verror.ErrorID(err))
Robin Thellendac59e972014-08-19 18:26:11 -070058 }
Mike Burrows2c989372015-03-31 18:06:39 -070059 if _, err := libstats.Value("does/not/exist"); verror.ErrorID(err) != verror.ErrNoExist.ID {
60 t.Errorf("expected error %s, got err=%s", verror.ErrNoExist.ID, verror.ErrorID(err))
Robin Thellendac59e972014-08-19 18:26:11 -070061 }
62
Robin Thellend7a442432014-08-22 09:05:08 -070063 root := libstats.NewInteger("")
Robin Thellendac59e972014-08-19 18:26:11 -070064 root.Set(42)
Robin Thellend7a442432014-08-22 09:05:08 -070065 got, err = libstats.Value("")
Robin Thellendac59e972014-08-19 18:26:11 -070066 if err != nil {
67 t.Errorf("unexpected error: %v", err)
68 }
69 if expected := int64(42); got != expected {
70 t.Errorf("unexpected result. Got %v, want %v", got, expected)
71 }
72
Robin Thellend7a442432014-08-22 09:05:08 -070073 foo := libstats.NewInteger("foo")
Robin Thellendac59e972014-08-19 18:26:11 -070074 foo.Set(55)
Robin Thellend7a442432014-08-22 09:05:08 -070075 got, err = libstats.Value("foo")
Robin Thellendac59e972014-08-19 18:26:11 -070076 if err != nil {
77 t.Errorf("unexpected error: %v", err)
78 }
79 if expected := int64(55); got != expected {
80 t.Errorf("unexpected result. Got %v, want %v", got, expected)
81 }
82
Robin Thellend7a442432014-08-22 09:05:08 -070083 bar := libstats.NewInteger("foo/bar")
Robin Thellendac59e972014-08-19 18:26:11 -070084 bar.Set(44)
Robin Thellend7a442432014-08-22 09:05:08 -070085 got, err = libstats.Value("foo/bar")
Robin Thellendac59e972014-08-19 18:26:11 -070086 if err != nil {
87 t.Errorf("unexpected error: %v", err)
88 }
89 if expected := int64(44); got != expected {
90 t.Errorf("unexpected result. Got %v, want %v", got, expected)
91 }
92
Robin Thellend14a09ef2014-08-29 13:55:19 -070093 // Glob showing only nodes with a value.
94 result, err := doGlob("", "...", now, true)
Robin Thellendac59e972014-08-19 18:26:11 -070095 if err != nil {
96 t.Errorf("unexpected error: %v", err)
97 }
Robin Thellend7a442432014-08-22 09:05:08 -070098 expected := []libstats.KeyValue{
99 libstats.KeyValue{Key: "", Value: int64(42)},
100 libstats.KeyValue{Key: "foo", Value: int64(55)},
101 libstats.KeyValue{Key: "foo/bar", Value: int64(44)},
Matt Rosencrantz94502cf2015-03-18 09:43:44 -0700102 libstats.KeyValue{Key: "rpc/test/aaa", Value: int64(1)},
103 libstats.KeyValue{Key: "rpc/test/bbb", Value: float64(2)},
104 libstats.KeyValue{Key: "rpc/test/ccc", Value: string("Hello")},
105 libstats.KeyValue{Key: "rpc/test/ddd", Value: int64(4)},
106 libstats.KeyValue{Key: "rpc/test/ddd/delta10m", Value: int64(4)},
107 libstats.KeyValue{Key: "rpc/test/ddd/delta1h", Value: int64(4)},
108 libstats.KeyValue{Key: "rpc/test/ddd/delta1m", Value: int64(4)},
109 libstats.KeyValue{Key: "rpc/test/ddd/rate10m", Value: float64(0)},
110 libstats.KeyValue{Key: "rpc/test/ddd/rate1h", Value: float64(0)},
111 libstats.KeyValue{Key: "rpc/test/ddd/rate1m", Value: float64(0)},
Robin Thellendac59e972014-08-19 18:26:11 -0700112 }
113 if !reflect.DeepEqual(result, expected) {
114 t.Errorf("unexpected result. Got %#v, want %#v", result, expected)
115 }
116
Matt Rosencrantz94502cf2015-03-18 09:43:44 -0700117 result, err = doGlob("", "rpc/test/*", now, true)
Robin Thellendac59e972014-08-19 18:26:11 -0700118 if err != nil {
119 t.Errorf("unexpected error: %v", err)
120 }
Robin Thellend7a442432014-08-22 09:05:08 -0700121 expected = []libstats.KeyValue{
Matt Rosencrantz94502cf2015-03-18 09:43:44 -0700122 libstats.KeyValue{Key: "rpc/test/aaa", Value: int64(1)},
123 libstats.KeyValue{Key: "rpc/test/bbb", Value: float64(2)},
124 libstats.KeyValue{Key: "rpc/test/ccc", Value: string("Hello")},
125 libstats.KeyValue{Key: "rpc/test/ddd", Value: int64(4)},
Robin Thellendac59e972014-08-19 18:26:11 -0700126 }
127 if !reflect.DeepEqual(result, expected) {
128 t.Errorf("unexpected result. Got %#v, want %#v", result, expected)
129 }
130
Robin Thellend14a09ef2014-08-29 13:55:19 -0700131 // Glob showing all nodes without values
Matt Rosencrantz94502cf2015-03-18 09:43:44 -0700132 result, err = doGlob("", "rpc/...", time.Time{}, false)
Robin Thellend14a09ef2014-08-29 13:55:19 -0700133 if err != nil {
134 t.Errorf("unexpected error: %v", err)
135 }
136 expected = []libstats.KeyValue{
Matt Rosencrantz94502cf2015-03-18 09:43:44 -0700137 libstats.KeyValue{Key: "rpc"},
138 libstats.KeyValue{Key: "rpc/test"},
139 libstats.KeyValue{Key: "rpc/test/aaa"},
140 libstats.KeyValue{Key: "rpc/test/bbb"},
141 libstats.KeyValue{Key: "rpc/test/ccc"},
142 libstats.KeyValue{Key: "rpc/test/ddd"},
143 libstats.KeyValue{Key: "rpc/test/ddd/delta10m"},
144 libstats.KeyValue{Key: "rpc/test/ddd/delta1h"},
145 libstats.KeyValue{Key: "rpc/test/ddd/delta1m"},
146 libstats.KeyValue{Key: "rpc/test/ddd/rate10m"},
147 libstats.KeyValue{Key: "rpc/test/ddd/rate1h"},
148 libstats.KeyValue{Key: "rpc/test/ddd/rate1m"},
Robin Thellend14a09ef2014-08-29 13:55:19 -0700149 }
150 if !reflect.DeepEqual(result, expected) {
151 t.Errorf("unexpected result. Got %#v, want %#v", result, expected)
152 }
153
Robin Thellendac59e972014-08-19 18:26:11 -0700154 // Test the rate counter.
155 now = now.Add(10 * time.Second)
156 d.Incr(100)
Matt Rosencrantz94502cf2015-03-18 09:43:44 -0700157 result, err = doGlob("", "rpc/test/ddd/*", now, true)
Robin Thellendac59e972014-08-19 18:26:11 -0700158 if err != nil {
159 t.Errorf("unexpected error: %v", err)
160 }
Robin Thellend7a442432014-08-22 09:05:08 -0700161 expected = []libstats.KeyValue{
Matt Rosencrantz94502cf2015-03-18 09:43:44 -0700162 libstats.KeyValue{Key: "rpc/test/ddd/delta10m", Value: int64(104)},
163 libstats.KeyValue{Key: "rpc/test/ddd/delta1h", Value: int64(104)},
164 libstats.KeyValue{Key: "rpc/test/ddd/delta1m", Value: int64(104)},
165 libstats.KeyValue{Key: "rpc/test/ddd/rate10m", Value: float64(10.4)},
166 libstats.KeyValue{Key: "rpc/test/ddd/rate1h", Value: float64(0)},
167 libstats.KeyValue{Key: "rpc/test/ddd/rate1m", Value: float64(10.4)},
Robin Thellendac59e972014-08-19 18:26:11 -0700168 }
169 if !reflect.DeepEqual(result, expected) {
170 t.Errorf("unexpected result. Got %#v, want %#v", result, expected)
171 }
172
173 // Test Glob on non-root object.
Matt Rosencrantz94502cf2015-03-18 09:43:44 -0700174 result, err = doGlob("rpc/test", "*", time.Time{}, true)
Robin Thellendac59e972014-08-19 18:26:11 -0700175 if err != nil {
176 t.Errorf("unexpected error: %v", err)
177 }
Robin Thellend7a442432014-08-22 09:05:08 -0700178 expected = []libstats.KeyValue{
179 libstats.KeyValue{Key: "aaa", Value: int64(1)},
180 libstats.KeyValue{Key: "bbb", Value: float64(2)},
181 libstats.KeyValue{Key: "ccc", Value: string("Hello")},
182 libstats.KeyValue{Key: "ddd", Value: int64(104)},
Robin Thellendac59e972014-08-19 18:26:11 -0700183 }
184 if !reflect.DeepEqual(result, expected) {
185 t.Errorf("unexpected result. Got %#v, want %#v", result, expected)
186 }
187
Matt Rosencrantz94502cf2015-03-18 09:43:44 -0700188 result, err = doGlob("rpc/test/aaa", "", time.Time{}, true)
Robin Thellendac59e972014-08-19 18:26:11 -0700189 if err != nil {
190 t.Errorf("unexpected error: %v", err)
191 }
Robin Thellend7a442432014-08-22 09:05:08 -0700192 expected = []libstats.KeyValue{
193 libstats.KeyValue{Key: "", Value: int64(1)},
Robin Thellendac59e972014-08-19 18:26:11 -0700194 }
195 if !reflect.DeepEqual(result, expected) {
196 t.Errorf("unexpected result. Got %#v, want %#v", result, expected)
197 }
198
199 // Test LastUpdate. The test only works on Counters.
Matt Rosencrantz94502cf2015-03-18 09:43:44 -0700200 result, err = doGlob("rpc/test", "ddd", now, true)
Robin Thellendac59e972014-08-19 18:26:11 -0700201 if err != nil {
202 t.Errorf("unexpected error: %v", err)
203 }
Robin Thellend7a442432014-08-22 09:05:08 -0700204 expected = []libstats.KeyValue{
205 libstats.KeyValue{Key: "ddd", Value: int64(104)},
Robin Thellendac59e972014-08-19 18:26:11 -0700206 }
207 if !reflect.DeepEqual(result, expected) {
208 t.Errorf("unexpected result. Got %#v, want %#v", result, expected)
209 }
210
Matt Rosencrantz94502cf2015-03-18 09:43:44 -0700211 result, err = doGlob("rpc/test", "ddd", now.Add(time.Second), true)
Robin Thellendac59e972014-08-19 18:26:11 -0700212 if err != nil {
213 t.Errorf("unexpected error: %v", err)
214 }
Robin Thellend7a442432014-08-22 09:05:08 -0700215 expected = []libstats.KeyValue{}
Robin Thellendac59e972014-08-19 18:26:11 -0700216 if !reflect.DeepEqual(result, expected) {
217 t.Errorf("unexpected result. Got %#v, want %#v", result, expected)
218 }
219
220 // Test histogram
Matt Rosencrantz94502cf2015-03-18 09:43:44 -0700221 h := libstats.NewHistogram("rpc/test/hhh", histogram.Options{NumBuckets: 5, GrowthFactor: 0})
Robin Thellendac59e972014-08-19 18:26:11 -0700222 h.Add(1)
223 h.Add(2)
224
Matt Rosencrantz94502cf2015-03-18 09:43:44 -0700225 result, err = doGlob("", "rpc/test/hhh", now, true)
Robin Thellendac59e972014-08-19 18:26:11 -0700226 if err != nil {
227 t.Errorf("unexpected error: %v", err)
228 }
Robin Thellend7a442432014-08-22 09:05:08 -0700229 expected = []libstats.KeyValue{
230 libstats.KeyValue{
Matt Rosencrantz94502cf2015-03-18 09:43:44 -0700231 Key: "rpc/test/hhh",
Todd Wang1ea8f192015-04-03 17:31:51 -0700232 Value: s_stats.HistogramValue{
Robin Thellendac59e972014-08-19 18:26:11 -0700233 Count: 2,
234 Sum: 3,
Jungho Ahn58e85b82014-12-01 10:01:02 -0800235 Min: 1,
236 Max: 2,
Todd Wang1ea8f192015-04-03 17:31:51 -0700237 Buckets: []s_stats.HistogramBucket{
238 s_stats.HistogramBucket{LowBound: 0, Count: 0},
239 s_stats.HistogramBucket{LowBound: 1, Count: 1},
240 s_stats.HistogramBucket{LowBound: 2, Count: 1},
241 s_stats.HistogramBucket{LowBound: 3, Count: 0},
242 s_stats.HistogramBucket{LowBound: 4, Count: 0},
Robin Thellendac59e972014-08-19 18:26:11 -0700243 },
244 },
245 },
246 }
247 if !reflect.DeepEqual(result, expected) {
248 t.Errorf("unexpected result. Got %#v, want %#v", result, expected)
249 }
250
251 now = now.Add(30 * time.Second)
252 h.Add(2)
253 now = now.Add(30 * time.Second)
254 h.Add(3)
255
Matt Rosencrantz94502cf2015-03-18 09:43:44 -0700256 result, err = doGlob("", "rpc/test/hhh/delta1m", now, true)
Robin Thellendac59e972014-08-19 18:26:11 -0700257 if err != nil {
258 t.Errorf("unexpected error: %v", err)
259 }
Robin Thellend7a442432014-08-22 09:05:08 -0700260 expected = []libstats.KeyValue{
261 libstats.KeyValue{
Matt Rosencrantz94502cf2015-03-18 09:43:44 -0700262 Key: "rpc/test/hhh/delta1m",
Todd Wang1ea8f192015-04-03 17:31:51 -0700263 Value: s_stats.HistogramValue{
Robin Thellendac59e972014-08-19 18:26:11 -0700264 Count: 2,
265 Sum: 5,
Jungho Ahn58e85b82014-12-01 10:01:02 -0800266 Min: 2,
267 Max: 3,
Todd Wang1ea8f192015-04-03 17:31:51 -0700268 Buckets: []s_stats.HistogramBucket{
269 s_stats.HistogramBucket{LowBound: 0, Count: 0},
270 s_stats.HistogramBucket{LowBound: 1, Count: 0},
271 s_stats.HistogramBucket{LowBound: 2, Count: 1},
272 s_stats.HistogramBucket{LowBound: 3, Count: 1},
273 s_stats.HistogramBucket{LowBound: 4, Count: 0},
Robin Thellendac59e972014-08-19 18:26:11 -0700274 },
275 },
276 },
277 }
278 if !reflect.DeepEqual(result, expected) {
279 t.Errorf("unexpected result. Got %#v, want %#v", result, expected)
280 }
281}
Robin Thellenddf428232014-10-06 12:50:44 -0700282
Robin Thellendfa70aaa2014-10-09 17:13:05 -0700283func TestMap(t *testing.T) {
284 m := libstats.NewMap("testing/foo")
Robin Thellendd46f3c42015-05-04 13:43:01 -0700285 m.Set([]libstats.KeyValue{{"a", uint64(1)}, {"b", 2}, {"c", float64(10.0)}})
Robin Thellendfa70aaa2014-10-09 17:13:05 -0700286
287 // Test the Value of the map.
288 {
289 got, err := libstats.Value("testing/foo")
290 if err != nil {
291 t.Errorf("unexpected error: %v", err)
292 }
293 if expected := interface{}(nil); got != expected {
294 t.Errorf("unexpected result. Got %v, want %v", got, expected)
295 }
296 }
297 // Test Glob on the map object.
298 {
299 got, err := doGlob("testing", "foo/...", time.Time{}, true)
300 if err != nil {
301 t.Errorf("unexpected error: %v", err)
302 }
303 expected := []libstats.KeyValue{
304 libstats.KeyValue{Key: "foo", Value: nil},
Robin Thellendd46f3c42015-05-04 13:43:01 -0700305 libstats.KeyValue{Key: "foo/a", Value: uint64(1)},
Robin Thellendfa70aaa2014-10-09 17:13:05 -0700306 libstats.KeyValue{Key: "foo/b", Value: int64(2)},
Robin Thellendd46f3c42015-05-04 13:43:01 -0700307 libstats.KeyValue{Key: "foo/c", Value: float64(10.0)},
Robin Thellendfa70aaa2014-10-09 17:13:05 -0700308 }
309 if !reflect.DeepEqual(got, expected) {
310 t.Errorf("unexpected result. Got %#v, want %#v", got, expected)
311 }
312 }
Robin Thellendd46f3c42015-05-04 13:43:01 -0700313 // Test Incr
314 testcases := []struct {
315 key string
316 incr int64
317 expected interface{}
318 }{
319 {"a", 2, uint64(3)},
320 {"a", -1, uint64(2)},
321 {"b", 5, int64(7)},
322 {"c", -2, float64(8)},
323 {"d", -2, int64(-2)},
324 }
325 for i, tc := range testcases {
326 if got := m.Incr(tc.key, tc.incr); got != tc.expected {
Asim Shankara036a0f2015-05-08 11:22:54 -0700327 t.Errorf("unexpected result for #%d. Got %v, expected %v", i, got, tc.expected)
Robin Thellendd46f3c42015-05-04 13:43:01 -0700328 }
329 got, err := libstats.Value("testing/foo/" + tc.key)
330 if err != nil {
331 t.Errorf("unexpected error for #%d: %v", i, err)
332 }
333 if got != tc.expected {
334 t.Errorf("unexpected result for #%d. Got %v, want %v", i, got, tc.expected)
335 }
336 }
Robin Thellendfa70aaa2014-10-09 17:13:05 -0700337
338 m.Delete([]string{"a"})
339
340 // Test Glob on the map object.
341 {
342 got, err := doGlob("testing", "foo/...", time.Time{}, true)
343 if err != nil {
344 t.Errorf("unexpected error: %v", err)
345 }
346 expected := []libstats.KeyValue{
347 libstats.KeyValue{Key: "foo", Value: nil},
Robin Thellendd46f3c42015-05-04 13:43:01 -0700348 libstats.KeyValue{Key: "foo/b", Value: int64(7)},
349 libstats.KeyValue{Key: "foo/c", Value: float64(8)},
350 libstats.KeyValue{Key: "foo/d", Value: int64(-2)},
Robin Thellendfa70aaa2014-10-09 17:13:05 -0700351 }
352 if !reflect.DeepEqual(got, expected) {
353 t.Errorf("unexpected result. Got %#v, want %#v", got, expected)
354 }
355 }
356}
357
Robin Thellend8cc0aee2014-10-16 10:58:24 -0700358func TestFunc(t *testing.T) {
359 libstats.NewIntegerFunc("testing/integer", func() int64 { return 123 })
360 libstats.NewFloatFunc("testing/float", func() float64 { return 456.789 })
361 libstats.NewStringFunc("testing/string", func() string { return "Hello World" })
362 ch := make(chan int64, 5)
Robin Thellend208e0f32015-07-20 14:46:33 -0700363
364 libstats.NewIntegerFunc("testing/timeout", func() int64 {
365 time.Sleep(time.Second)
366 return -1
367 })
368
Robin Thellend8cc0aee2014-10-16 10:58:24 -0700369 libstats.NewIntegerFunc("testing/slowint", func() int64 {
370 return <-ch
371 })
372
373 testcases := []struct {
374 name string
375 expected interface{}
376 }{
377 {"testing/integer", int64(123)},
378 {"testing/float", float64(456.789)},
379 {"testing/string", "Hello World"},
Robin Thellend208e0f32015-07-20 14:46:33 -0700380 {"testing/timeout", nil}, // Times out
Robin Thellend8cc0aee2014-10-16 10:58:24 -0700381 }
382 for _, tc := range testcases {
383 checkVariable(t, tc.name, tc.expected)
384 }
Robin Thellend208e0f32015-07-20 14:46:33 -0700385
386 then := time.Now()
387 checkVariable(t, "testing/timeout", nil) // Times out
388 if took := time.Now().Sub(then); took < 100*time.Millisecond {
389 t.Fatalf("expected a timeout: took %s", took)
390 }
391 checkVariable(t, "testing/timeout", nil) // Times out
392 if took := time.Now().Sub(then); took < 100*time.Millisecond {
393 t.Fatalf("expected a timeout: took %s", took)
394 }
395
Robin Thellend8cc0aee2014-10-16 10:58:24 -0700396 ch <- int64(0)
Robin Thellend208e0f32015-07-20 14:46:33 -0700397 then = time.Now()
Robin Thellend8cc0aee2014-10-16 10:58:24 -0700398 checkVariable(t, "testing/slowint", int64(0)) // New value
Robin Thellend208e0f32015-07-20 14:46:33 -0700399 if took := time.Now().Sub(then); took > 100*time.Millisecond {
400 t.Fatalf("unexpected timeout: took %s", took)
401 }
Robin Thellend8cc0aee2014-10-16 10:58:24 -0700402 for i := 1; i <= 5; i++ {
403 ch <- int64(i)
404 }
405 for i := 1; i <= 5; i++ {
406 checkVariable(t, "testing/slowint", int64(i)) // New value each time
407 }
Robin Thellend208e0f32015-07-20 14:46:33 -0700408
409 // Parallel access
410 var wg sync.WaitGroup
411 for i := 1; i <= 5; i++ {
412 wg.Add(1)
413 go func() {
414 checkVariable(t, "testing/slowint", int64(555))
415 wg.Done()
416 }()
417 }
418 ch <- int64(555)
419 wg.Wait()
Robin Thellend8cc0aee2014-10-16 10:58:24 -0700420}
421
422func checkVariable(t *testing.T, name string, expected interface{}) {
423 got, err := libstats.Value(name)
424 if err != nil {
425 t.Errorf("unexpected error for %q: %v", name, err)
426 }
427 if got != expected {
Robin Thellend208e0f32015-07-20 14:46:33 -0700428 _, file, line, _ := runtime.Caller(1)
429 t.Errorf("%s:%d: unexpected result for %q. Got %v, want %v", filepath.Base(file), line, name, got, expected)
Robin Thellend8cc0aee2014-10-16 10:58:24 -0700430 }
431}
432
Robin Thellenddf428232014-10-06 12:50:44 -0700433func TestDelete(t *testing.T) {
434 _ = libstats.NewInteger("a/b/c/d")
435 if _, err := libstats.GetStatsObject("a/b/c/d"); err != nil {
436 t.Errorf("unexpected error value: %v", err)
437 }
438 if err := libstats.Delete("a/b/c/d"); err != nil {
439 t.Errorf("unexpected error value: %v", err)
440 }
Mike Burrows2c989372015-03-31 18:06:39 -0700441 if _, err := libstats.GetStatsObject("a/b/c/d"); verror.ErrorID(err) != verror.ErrNoExist.ID {
442 t.Errorf("unexpected error value: Got %v, want %v", verror.ErrorID(err), verror.ErrNoExist.ID)
Robin Thellenddf428232014-10-06 12:50:44 -0700443 }
444 if err := libstats.Delete("a/b"); err != nil {
445 t.Errorf("unexpected error value: %v", err)
446 }
Mike Burrows2c989372015-03-31 18:06:39 -0700447 if _, err := libstats.GetStatsObject("a/b"); verror.ErrorID(err) != verror.ErrNoExist.ID {
448 t.Errorf("unexpected error value: Got %v, want %v", verror.ErrorID(err), verror.ErrNoExist.ID)
Robin Thellenddf428232014-10-06 12:50:44 -0700449 }
Mike Burrows2c989372015-03-31 18:06:39 -0700450 if _, err := libstats.GetStatsObject("a/b/c"); verror.ErrorID(err) != verror.ErrNoExist.ID {
451 t.Errorf("unexpected error value: Got %v, want %v", verror.ErrorID(err), verror.ErrNoExist.ID)
Robin Thellenddf428232014-10-06 12:50:44 -0700452 }
453}