Jiri Simsa | d7616c9 | 2015-03-24 23:44:30 -0700 | [diff] [blame] | 1 | // 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 Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 5 | package stats_test |
| 6 | |
| 7 | import ( |
Robin Thellend | 208e0f3 | 2015-07-20 14:46:33 -0700 | [diff] [blame] | 8 | "path/filepath" |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 9 | "reflect" |
Robin Thellend | 208e0f3 | 2015-07-20 14:46:33 -0700 | [diff] [blame] | 10 | "runtime" |
| 11 | "sync" |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 12 | "testing" |
| 13 | "time" |
| 14 | |
Mike Burrows | 2c98937 | 2015-03-31 18:06:39 -0700 | [diff] [blame] | 15 | "v.io/v23/verror" |
Jiri Simsa | ffceefa | 2015-02-28 11:03:34 -0800 | [diff] [blame] | 16 | libstats "v.io/x/ref/lib/stats" |
| 17 | "v.io/x/ref/lib/stats/counter" |
| 18 | "v.io/x/ref/lib/stats/histogram" |
Todd Wang | 1ea8f19 | 2015-04-03 17:31:51 -0700 | [diff] [blame] | 19 | s_stats "v.io/x/ref/services/stats" |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 20 | ) |
| 21 | |
Robin Thellend | 14a09ef | 2014-08-29 13:55:19 -0700 | [diff] [blame] | 22 | func doGlob(root, pattern string, since time.Time, includeValues bool) ([]libstats.KeyValue, error) { |
| 23 | it := libstats.Glob(root, pattern, since, includeValues) |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 24 | out := []libstats.KeyValue{} |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 25 | for it.Advance() { |
Robin Thellend | fa70aaa | 2014-10-09 17:13:05 -0700 | [diff] [blame] | 26 | out = append(out, it.Value()) |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 27 | } |
| 28 | if err := it.Err(); err != nil { |
| 29 | return nil, err |
| 30 | } |
| 31 | return out, nil |
| 32 | } |
| 33 | |
| 34 | func TestStats(t *testing.T) { |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 35 | now := time.Unix(1, 0) |
Jungho Ahn | 58e85b8 | 2014-12-01 10:01:02 -0800 | [diff] [blame] | 36 | counter.TimeNow = func() time.Time { return now } |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 37 | |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 38 | 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 Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 42 | |
| 43 | a.Set(1) |
| 44 | b.Set(2) |
| 45 | c.Set("Hello") |
| 46 | d.Set(4) |
| 47 | |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 48 | got, err := libstats.Value("rpc/test/aaa") |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 49 | 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 Burrows | 2c98937 | 2015-03-31 18:06:39 -0700 | [diff] [blame] | 56 | 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 Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 58 | } |
Mike Burrows | 2c98937 | 2015-03-31 18:06:39 -0700 | [diff] [blame] | 59 | 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 Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 61 | } |
| 62 | |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 63 | root := libstats.NewInteger("") |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 64 | root.Set(42) |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 65 | got, err = libstats.Value("") |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 66 | 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 Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 73 | foo := libstats.NewInteger("foo") |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 74 | foo.Set(55) |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 75 | got, err = libstats.Value("foo") |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 76 | 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 Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 83 | bar := libstats.NewInteger("foo/bar") |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 84 | bar.Set(44) |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 85 | got, err = libstats.Value("foo/bar") |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 86 | 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 Thellend | 14a09ef | 2014-08-29 13:55:19 -0700 | [diff] [blame] | 93 | // Glob showing only nodes with a value. |
| 94 | result, err := doGlob("", "...", now, true) |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 95 | if err != nil { |
| 96 | t.Errorf("unexpected error: %v", err) |
| 97 | } |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 98 | 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 Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 102 | 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 Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 112 | } |
| 113 | if !reflect.DeepEqual(result, expected) { |
| 114 | t.Errorf("unexpected result. Got %#v, want %#v", result, expected) |
| 115 | } |
| 116 | |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 117 | result, err = doGlob("", "rpc/test/*", now, true) |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 118 | if err != nil { |
| 119 | t.Errorf("unexpected error: %v", err) |
| 120 | } |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 121 | expected = []libstats.KeyValue{ |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 122 | 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 Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 126 | } |
| 127 | if !reflect.DeepEqual(result, expected) { |
| 128 | t.Errorf("unexpected result. Got %#v, want %#v", result, expected) |
| 129 | } |
| 130 | |
Robin Thellend | 14a09ef | 2014-08-29 13:55:19 -0700 | [diff] [blame] | 131 | // Glob showing all nodes without values |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 132 | result, err = doGlob("", "rpc/...", time.Time{}, false) |
Robin Thellend | 14a09ef | 2014-08-29 13:55:19 -0700 | [diff] [blame] | 133 | if err != nil { |
| 134 | t.Errorf("unexpected error: %v", err) |
| 135 | } |
| 136 | expected = []libstats.KeyValue{ |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 137 | 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 Thellend | 14a09ef | 2014-08-29 13:55:19 -0700 | [diff] [blame] | 149 | } |
| 150 | if !reflect.DeepEqual(result, expected) { |
| 151 | t.Errorf("unexpected result. Got %#v, want %#v", result, expected) |
| 152 | } |
| 153 | |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 154 | // Test the rate counter. |
| 155 | now = now.Add(10 * time.Second) |
| 156 | d.Incr(100) |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 157 | result, err = doGlob("", "rpc/test/ddd/*", now, true) |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 158 | if err != nil { |
| 159 | t.Errorf("unexpected error: %v", err) |
| 160 | } |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 161 | expected = []libstats.KeyValue{ |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 162 | 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 Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 168 | } |
| 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 Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 174 | result, err = doGlob("rpc/test", "*", time.Time{}, true) |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 175 | if err != nil { |
| 176 | t.Errorf("unexpected error: %v", err) |
| 177 | } |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 178 | 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 Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 183 | } |
| 184 | if !reflect.DeepEqual(result, expected) { |
| 185 | t.Errorf("unexpected result. Got %#v, want %#v", result, expected) |
| 186 | } |
| 187 | |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 188 | result, err = doGlob("rpc/test/aaa", "", time.Time{}, true) |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 189 | if err != nil { |
| 190 | t.Errorf("unexpected error: %v", err) |
| 191 | } |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 192 | expected = []libstats.KeyValue{ |
| 193 | libstats.KeyValue{Key: "", Value: int64(1)}, |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 194 | } |
| 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 Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 200 | result, err = doGlob("rpc/test", "ddd", now, true) |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 201 | if err != nil { |
| 202 | t.Errorf("unexpected error: %v", err) |
| 203 | } |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 204 | expected = []libstats.KeyValue{ |
| 205 | libstats.KeyValue{Key: "ddd", Value: int64(104)}, |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 206 | } |
| 207 | if !reflect.DeepEqual(result, expected) { |
| 208 | t.Errorf("unexpected result. Got %#v, want %#v", result, expected) |
| 209 | } |
| 210 | |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 211 | result, err = doGlob("rpc/test", "ddd", now.Add(time.Second), true) |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 212 | if err != nil { |
| 213 | t.Errorf("unexpected error: %v", err) |
| 214 | } |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 215 | expected = []libstats.KeyValue{} |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 216 | if !reflect.DeepEqual(result, expected) { |
| 217 | t.Errorf("unexpected result. Got %#v, want %#v", result, expected) |
| 218 | } |
| 219 | |
| 220 | // Test histogram |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 221 | h := libstats.NewHistogram("rpc/test/hhh", histogram.Options{NumBuckets: 5, GrowthFactor: 0}) |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 222 | h.Add(1) |
| 223 | h.Add(2) |
| 224 | |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 225 | result, err = doGlob("", "rpc/test/hhh", now, true) |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 226 | if err != nil { |
| 227 | t.Errorf("unexpected error: %v", err) |
| 228 | } |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 229 | expected = []libstats.KeyValue{ |
| 230 | libstats.KeyValue{ |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 231 | Key: "rpc/test/hhh", |
Todd Wang | 1ea8f19 | 2015-04-03 17:31:51 -0700 | [diff] [blame] | 232 | Value: s_stats.HistogramValue{ |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 233 | Count: 2, |
| 234 | Sum: 3, |
Jungho Ahn | 58e85b8 | 2014-12-01 10:01:02 -0800 | [diff] [blame] | 235 | Min: 1, |
| 236 | Max: 2, |
Todd Wang | 1ea8f19 | 2015-04-03 17:31:51 -0700 | [diff] [blame] | 237 | 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 Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 243 | }, |
| 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 Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 256 | result, err = doGlob("", "rpc/test/hhh/delta1m", now, true) |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 257 | if err != nil { |
| 258 | t.Errorf("unexpected error: %v", err) |
| 259 | } |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 260 | expected = []libstats.KeyValue{ |
| 261 | libstats.KeyValue{ |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 262 | Key: "rpc/test/hhh/delta1m", |
Todd Wang | 1ea8f19 | 2015-04-03 17:31:51 -0700 | [diff] [blame] | 263 | Value: s_stats.HistogramValue{ |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 264 | Count: 2, |
| 265 | Sum: 5, |
Jungho Ahn | 58e85b8 | 2014-12-01 10:01:02 -0800 | [diff] [blame] | 266 | Min: 2, |
| 267 | Max: 3, |
Todd Wang | 1ea8f19 | 2015-04-03 17:31:51 -0700 | [diff] [blame] | 268 | 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 Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 274 | }, |
| 275 | }, |
| 276 | }, |
| 277 | } |
| 278 | if !reflect.DeepEqual(result, expected) { |
| 279 | t.Errorf("unexpected result. Got %#v, want %#v", result, expected) |
| 280 | } |
| 281 | } |
Robin Thellend | df42823 | 2014-10-06 12:50:44 -0700 | [diff] [blame] | 282 | |
Robin Thellend | fa70aaa | 2014-10-09 17:13:05 -0700 | [diff] [blame] | 283 | func TestMap(t *testing.T) { |
| 284 | m := libstats.NewMap("testing/foo") |
Robin Thellend | d46f3c4 | 2015-05-04 13:43:01 -0700 | [diff] [blame] | 285 | m.Set([]libstats.KeyValue{{"a", uint64(1)}, {"b", 2}, {"c", float64(10.0)}}) |
Robin Thellend | fa70aaa | 2014-10-09 17:13:05 -0700 | [diff] [blame] | 286 | |
| 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 Thellend | d46f3c4 | 2015-05-04 13:43:01 -0700 | [diff] [blame] | 305 | libstats.KeyValue{Key: "foo/a", Value: uint64(1)}, |
Robin Thellend | fa70aaa | 2014-10-09 17:13:05 -0700 | [diff] [blame] | 306 | libstats.KeyValue{Key: "foo/b", Value: int64(2)}, |
Robin Thellend | d46f3c4 | 2015-05-04 13:43:01 -0700 | [diff] [blame] | 307 | libstats.KeyValue{Key: "foo/c", Value: float64(10.0)}, |
Robin Thellend | fa70aaa | 2014-10-09 17:13:05 -0700 | [diff] [blame] | 308 | } |
| 309 | if !reflect.DeepEqual(got, expected) { |
| 310 | t.Errorf("unexpected result. Got %#v, want %#v", got, expected) |
| 311 | } |
| 312 | } |
Robin Thellend | d46f3c4 | 2015-05-04 13:43:01 -0700 | [diff] [blame] | 313 | // 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 Shankar | a036a0f | 2015-05-08 11:22:54 -0700 | [diff] [blame] | 327 | t.Errorf("unexpected result for #%d. Got %v, expected %v", i, got, tc.expected) |
Robin Thellend | d46f3c4 | 2015-05-04 13:43:01 -0700 | [diff] [blame] | 328 | } |
| 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 Thellend | fa70aaa | 2014-10-09 17:13:05 -0700 | [diff] [blame] | 337 | |
| 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 Thellend | d46f3c4 | 2015-05-04 13:43:01 -0700 | [diff] [blame] | 348 | 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 Thellend | fa70aaa | 2014-10-09 17:13:05 -0700 | [diff] [blame] | 351 | } |
| 352 | if !reflect.DeepEqual(got, expected) { |
| 353 | t.Errorf("unexpected result. Got %#v, want %#v", got, expected) |
| 354 | } |
| 355 | } |
| 356 | } |
| 357 | |
Robin Thellend | 8cc0aee | 2014-10-16 10:58:24 -0700 | [diff] [blame] | 358 | func 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 Thellend | 208e0f3 | 2015-07-20 14:46:33 -0700 | [diff] [blame] | 363 | |
| 364 | libstats.NewIntegerFunc("testing/timeout", func() int64 { |
| 365 | time.Sleep(time.Second) |
| 366 | return -1 |
| 367 | }) |
| 368 | |
Robin Thellend | 8cc0aee | 2014-10-16 10:58:24 -0700 | [diff] [blame] | 369 | 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 Thellend | 208e0f3 | 2015-07-20 14:46:33 -0700 | [diff] [blame] | 380 | {"testing/timeout", nil}, // Times out |
Robin Thellend | 8cc0aee | 2014-10-16 10:58:24 -0700 | [diff] [blame] | 381 | } |
| 382 | for _, tc := range testcases { |
| 383 | checkVariable(t, tc.name, tc.expected) |
| 384 | } |
Robin Thellend | 208e0f3 | 2015-07-20 14:46:33 -0700 | [diff] [blame] | 385 | |
| 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 Thellend | 8cc0aee | 2014-10-16 10:58:24 -0700 | [diff] [blame] | 396 | ch <- int64(0) |
Robin Thellend | 208e0f3 | 2015-07-20 14:46:33 -0700 | [diff] [blame] | 397 | then = time.Now() |
Robin Thellend | 8cc0aee | 2014-10-16 10:58:24 -0700 | [diff] [blame] | 398 | checkVariable(t, "testing/slowint", int64(0)) // New value |
Robin Thellend | 208e0f3 | 2015-07-20 14:46:33 -0700 | [diff] [blame] | 399 | if took := time.Now().Sub(then); took > 100*time.Millisecond { |
| 400 | t.Fatalf("unexpected timeout: took %s", took) |
| 401 | } |
Robin Thellend | 8cc0aee | 2014-10-16 10:58:24 -0700 | [diff] [blame] | 402 | 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 Thellend | 208e0f3 | 2015-07-20 14:46:33 -0700 | [diff] [blame] | 408 | |
| 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 Thellend | 8cc0aee | 2014-10-16 10:58:24 -0700 | [diff] [blame] | 420 | } |
| 421 | |
| 422 | func 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 Thellend | 208e0f3 | 2015-07-20 14:46:33 -0700 | [diff] [blame] | 428 | _, 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 Thellend | 8cc0aee | 2014-10-16 10:58:24 -0700 | [diff] [blame] | 430 | } |
| 431 | } |
| 432 | |
Robin Thellend | df42823 | 2014-10-06 12:50:44 -0700 | [diff] [blame] | 433 | func 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 Burrows | 2c98937 | 2015-03-31 18:06:39 -0700 | [diff] [blame] | 441 | 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 Thellend | df42823 | 2014-10-06 12:50:44 -0700 | [diff] [blame] | 443 | } |
| 444 | if err := libstats.Delete("a/b"); err != nil { |
| 445 | t.Errorf("unexpected error value: %v", err) |
| 446 | } |
Mike Burrows | 2c98937 | 2015-03-31 18:06:39 -0700 | [diff] [blame] | 447 | 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 Thellend | df42823 | 2014-10-06 12:50:44 -0700 | [diff] [blame] | 449 | } |
Mike Burrows | 2c98937 | 2015-03-31 18:06:39 -0700 | [diff] [blame] | 450 | 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 Thellend | df42823 | 2014-10-06 12:50:44 -0700 | [diff] [blame] | 452 | } |
| 453 | } |