Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 1 | package stats_test |
| 2 | |
| 3 | import ( |
| 4 | "reflect" |
| 5 | "testing" |
| 6 | "time" |
| 7 | |
Jiri Simsa | 519c507 | 2014-09-17 21:37:57 -0700 | [diff] [blame] | 8 | libstats "veyron.io/veyron/veyron/lib/stats" |
| 9 | "veyron.io/veyron/veyron/lib/stats/counter" |
| 10 | "veyron.io/veyron/veyron/lib/stats/histogram" |
| 11 | istats "veyron.io/veyron/veyron/services/mgmt/stats" |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 12 | ) |
| 13 | |
Robin Thellend | 14a09ef | 2014-08-29 13:55:19 -0700 | [diff] [blame] | 14 | func doGlob(root, pattern string, since time.Time, includeValues bool) ([]libstats.KeyValue, error) { |
| 15 | it := libstats.Glob(root, pattern, since, includeValues) |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 16 | out := []libstats.KeyValue{} |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 17 | for it.Advance() { |
Robin Thellend | fa70aaa | 2014-10-09 17:13:05 -0700 | [diff] [blame] | 18 | out = append(out, it.Value()) |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 19 | } |
| 20 | if err := it.Err(); err != nil { |
| 21 | return nil, err |
| 22 | } |
| 23 | return out, nil |
| 24 | } |
| 25 | |
| 26 | func TestStats(t *testing.T) { |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 27 | now := time.Unix(1, 0) |
Jungho Ahn | 58e85b8 | 2014-12-01 10:01:02 -0800 | [diff] [blame] | 28 | counter.TimeNow = func() time.Time { return now } |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 29 | |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 30 | a := libstats.NewInteger("ipc/test/aaa") |
| 31 | b := libstats.NewFloat("ipc/test/bbb") |
| 32 | c := libstats.NewString("ipc/test/ccc") |
| 33 | d := libstats.NewCounter("ipc/test/ddd") |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 34 | |
| 35 | a.Set(1) |
| 36 | b.Set(2) |
| 37 | c.Set("Hello") |
| 38 | d.Set(4) |
| 39 | |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 40 | got, err := libstats.Value("ipc/test/aaa") |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 41 | if err != nil { |
| 42 | t.Errorf("unexpected error: %v", err) |
| 43 | } |
| 44 | if expected := int64(1); got != expected { |
| 45 | t.Errorf("unexpected result. Got %v, want %v", got, expected) |
| 46 | } |
| 47 | |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 48 | if _, err := libstats.Value(""); err != libstats.ErrNotFound { |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 49 | t.Errorf("expected error, got err=%v", err) |
| 50 | } |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 51 | if _, err := libstats.Value("does/not/exist"); err != libstats.ErrNotFound { |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 52 | t.Errorf("expected error, got err=%v", err) |
| 53 | } |
| 54 | |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 55 | root := libstats.NewInteger("") |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 56 | root.Set(42) |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 57 | got, err = libstats.Value("") |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 58 | if err != nil { |
| 59 | t.Errorf("unexpected error: %v", err) |
| 60 | } |
| 61 | if expected := int64(42); got != expected { |
| 62 | t.Errorf("unexpected result. Got %v, want %v", got, expected) |
| 63 | } |
| 64 | |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 65 | foo := libstats.NewInteger("foo") |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 66 | foo.Set(55) |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 67 | got, err = libstats.Value("foo") |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 68 | if err != nil { |
| 69 | t.Errorf("unexpected error: %v", err) |
| 70 | } |
| 71 | if expected := int64(55); got != expected { |
| 72 | t.Errorf("unexpected result. Got %v, want %v", got, expected) |
| 73 | } |
| 74 | |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 75 | bar := libstats.NewInteger("foo/bar") |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 76 | bar.Set(44) |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 77 | got, err = libstats.Value("foo/bar") |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 78 | if err != nil { |
| 79 | t.Errorf("unexpected error: %v", err) |
| 80 | } |
| 81 | if expected := int64(44); got != expected { |
| 82 | t.Errorf("unexpected result. Got %v, want %v", got, expected) |
| 83 | } |
| 84 | |
Robin Thellend | 14a09ef | 2014-08-29 13:55:19 -0700 | [diff] [blame] | 85 | // Glob showing only nodes with a value. |
| 86 | result, err := doGlob("", "...", now, true) |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 87 | if err != nil { |
| 88 | t.Errorf("unexpected error: %v", err) |
| 89 | } |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 90 | expected := []libstats.KeyValue{ |
| 91 | libstats.KeyValue{Key: "", Value: int64(42)}, |
| 92 | libstats.KeyValue{Key: "foo", Value: int64(55)}, |
| 93 | libstats.KeyValue{Key: "foo/bar", Value: int64(44)}, |
| 94 | libstats.KeyValue{Key: "ipc/test/aaa", Value: int64(1)}, |
| 95 | libstats.KeyValue{Key: "ipc/test/bbb", Value: float64(2)}, |
| 96 | libstats.KeyValue{Key: "ipc/test/ccc", Value: string("Hello")}, |
| 97 | libstats.KeyValue{Key: "ipc/test/ddd", Value: int64(4)}, |
Robin Thellend | 1eb8169 | 2014-09-03 10:48:24 -0700 | [diff] [blame] | 98 | libstats.KeyValue{Key: "ipc/test/ddd/delta10m", Value: int64(4)}, |
| 99 | libstats.KeyValue{Key: "ipc/test/ddd/delta1h", Value: int64(4)}, |
| 100 | libstats.KeyValue{Key: "ipc/test/ddd/delta1m", Value: int64(4)}, |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 101 | libstats.KeyValue{Key: "ipc/test/ddd/rate10m", Value: float64(0)}, |
| 102 | libstats.KeyValue{Key: "ipc/test/ddd/rate1h", Value: float64(0)}, |
| 103 | libstats.KeyValue{Key: "ipc/test/ddd/rate1m", Value: float64(0)}, |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 104 | } |
| 105 | if !reflect.DeepEqual(result, expected) { |
| 106 | t.Errorf("unexpected result. Got %#v, want %#v", result, expected) |
| 107 | } |
| 108 | |
Robin Thellend | 14a09ef | 2014-08-29 13:55:19 -0700 | [diff] [blame] | 109 | result, err = doGlob("", "ipc/test/*", now, true) |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 110 | if err != nil { |
| 111 | t.Errorf("unexpected error: %v", err) |
| 112 | } |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 113 | expected = []libstats.KeyValue{ |
| 114 | libstats.KeyValue{Key: "ipc/test/aaa", Value: int64(1)}, |
| 115 | libstats.KeyValue{Key: "ipc/test/bbb", Value: float64(2)}, |
| 116 | libstats.KeyValue{Key: "ipc/test/ccc", Value: string("Hello")}, |
| 117 | libstats.KeyValue{Key: "ipc/test/ddd", Value: int64(4)}, |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 118 | } |
| 119 | if !reflect.DeepEqual(result, expected) { |
| 120 | t.Errorf("unexpected result. Got %#v, want %#v", result, expected) |
| 121 | } |
| 122 | |
Robin Thellend | 14a09ef | 2014-08-29 13:55:19 -0700 | [diff] [blame] | 123 | // Glob showing all nodes without values |
| 124 | result, err = doGlob("", "ipc/...", time.Time{}, false) |
| 125 | if err != nil { |
| 126 | t.Errorf("unexpected error: %v", err) |
| 127 | } |
| 128 | expected = []libstats.KeyValue{ |
| 129 | libstats.KeyValue{Key: "ipc"}, |
| 130 | libstats.KeyValue{Key: "ipc/test"}, |
| 131 | libstats.KeyValue{Key: "ipc/test/aaa"}, |
| 132 | libstats.KeyValue{Key: "ipc/test/bbb"}, |
| 133 | libstats.KeyValue{Key: "ipc/test/ccc"}, |
| 134 | libstats.KeyValue{Key: "ipc/test/ddd"}, |
| 135 | libstats.KeyValue{Key: "ipc/test/ddd/delta10m"}, |
| 136 | libstats.KeyValue{Key: "ipc/test/ddd/delta1h"}, |
| 137 | libstats.KeyValue{Key: "ipc/test/ddd/delta1m"}, |
| 138 | libstats.KeyValue{Key: "ipc/test/ddd/rate10m"}, |
| 139 | libstats.KeyValue{Key: "ipc/test/ddd/rate1h"}, |
| 140 | libstats.KeyValue{Key: "ipc/test/ddd/rate1m"}, |
| 141 | } |
| 142 | if !reflect.DeepEqual(result, expected) { |
| 143 | t.Errorf("unexpected result. Got %#v, want %#v", result, expected) |
| 144 | } |
| 145 | |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 146 | // Test the rate counter. |
| 147 | now = now.Add(10 * time.Second) |
| 148 | d.Incr(100) |
Robin Thellend | 14a09ef | 2014-08-29 13:55:19 -0700 | [diff] [blame] | 149 | result, err = doGlob("", "ipc/test/ddd/*", now, true) |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 150 | if err != nil { |
| 151 | t.Errorf("unexpected error: %v", err) |
| 152 | } |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 153 | expected = []libstats.KeyValue{ |
Robin Thellend | 1eb8169 | 2014-09-03 10:48:24 -0700 | [diff] [blame] | 154 | libstats.KeyValue{Key: "ipc/test/ddd/delta10m", Value: int64(104)}, |
| 155 | libstats.KeyValue{Key: "ipc/test/ddd/delta1h", Value: int64(104)}, |
| 156 | libstats.KeyValue{Key: "ipc/test/ddd/delta1m", Value: int64(104)}, |
| 157 | libstats.KeyValue{Key: "ipc/test/ddd/rate10m", Value: float64(10.4)}, |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 158 | libstats.KeyValue{Key: "ipc/test/ddd/rate1h", Value: float64(0)}, |
Robin Thellend | 1eb8169 | 2014-09-03 10:48:24 -0700 | [diff] [blame] | 159 | libstats.KeyValue{Key: "ipc/test/ddd/rate1m", Value: float64(10.4)}, |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 160 | } |
| 161 | if !reflect.DeepEqual(result, expected) { |
| 162 | t.Errorf("unexpected result. Got %#v, want %#v", result, expected) |
| 163 | } |
| 164 | |
| 165 | // Test Glob on non-root object. |
Robin Thellend | 14a09ef | 2014-08-29 13:55:19 -0700 | [diff] [blame] | 166 | result, err = doGlob("ipc/test", "*", time.Time{}, true) |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 167 | if err != nil { |
| 168 | t.Errorf("unexpected error: %v", err) |
| 169 | } |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 170 | expected = []libstats.KeyValue{ |
| 171 | libstats.KeyValue{Key: "aaa", Value: int64(1)}, |
| 172 | libstats.KeyValue{Key: "bbb", Value: float64(2)}, |
| 173 | libstats.KeyValue{Key: "ccc", Value: string("Hello")}, |
| 174 | libstats.KeyValue{Key: "ddd", Value: int64(104)}, |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 175 | } |
| 176 | if !reflect.DeepEqual(result, expected) { |
| 177 | t.Errorf("unexpected result. Got %#v, want %#v", result, expected) |
| 178 | } |
| 179 | |
Robin Thellend | 14a09ef | 2014-08-29 13:55:19 -0700 | [diff] [blame] | 180 | result, err = doGlob("ipc/test/aaa", "", time.Time{}, true) |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 181 | if err != nil { |
| 182 | t.Errorf("unexpected error: %v", err) |
| 183 | } |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 184 | expected = []libstats.KeyValue{ |
| 185 | libstats.KeyValue{Key: "", Value: int64(1)}, |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 186 | } |
| 187 | if !reflect.DeepEqual(result, expected) { |
| 188 | t.Errorf("unexpected result. Got %#v, want %#v", result, expected) |
| 189 | } |
| 190 | |
| 191 | // Test LastUpdate. The test only works on Counters. |
Robin Thellend | 14a09ef | 2014-08-29 13:55:19 -0700 | [diff] [blame] | 192 | result, err = doGlob("ipc/test", "ddd", now, true) |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 193 | if err != nil { |
| 194 | t.Errorf("unexpected error: %v", err) |
| 195 | } |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 196 | expected = []libstats.KeyValue{ |
| 197 | libstats.KeyValue{Key: "ddd", Value: int64(104)}, |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 198 | } |
| 199 | if !reflect.DeepEqual(result, expected) { |
| 200 | t.Errorf("unexpected result. Got %#v, want %#v", result, expected) |
| 201 | } |
| 202 | |
Robin Thellend | 14a09ef | 2014-08-29 13:55:19 -0700 | [diff] [blame] | 203 | result, err = doGlob("ipc/test", "ddd", now.Add(time.Second), true) |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 204 | if err != nil { |
| 205 | t.Errorf("unexpected error: %v", err) |
| 206 | } |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 207 | expected = []libstats.KeyValue{} |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 208 | if !reflect.DeepEqual(result, expected) { |
| 209 | t.Errorf("unexpected result. Got %#v, want %#v", result, expected) |
| 210 | } |
| 211 | |
| 212 | // Test histogram |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 213 | h := libstats.NewHistogram("ipc/test/hhh", histogram.Options{NumBuckets: 5, GrowthFactor: 0}) |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 214 | h.Add(1) |
| 215 | h.Add(2) |
| 216 | |
Robin Thellend | 14a09ef | 2014-08-29 13:55:19 -0700 | [diff] [blame] | 217 | result, err = doGlob("", "ipc/test/hhh", now, true) |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 218 | if err != nil { |
| 219 | t.Errorf("unexpected error: %v", err) |
| 220 | } |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 221 | expected = []libstats.KeyValue{ |
| 222 | libstats.KeyValue{ |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 223 | Key: "ipc/test/hhh", |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 224 | Value: istats.HistogramValue{ |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 225 | Count: 2, |
| 226 | Sum: 3, |
Jungho Ahn | 58e85b8 | 2014-12-01 10:01:02 -0800 | [diff] [blame] | 227 | Min: 1, |
| 228 | Max: 2, |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 229 | Buckets: []istats.HistogramBucket{ |
| 230 | istats.HistogramBucket{LowBound: 0, Count: 0}, |
| 231 | istats.HistogramBucket{LowBound: 1, Count: 1}, |
| 232 | istats.HistogramBucket{LowBound: 2, Count: 1}, |
| 233 | istats.HistogramBucket{LowBound: 3, Count: 0}, |
| 234 | istats.HistogramBucket{LowBound: 4, Count: 0}, |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 235 | }, |
| 236 | }, |
| 237 | }, |
| 238 | } |
| 239 | if !reflect.DeepEqual(result, expected) { |
| 240 | t.Errorf("unexpected result. Got %#v, want %#v", result, expected) |
| 241 | } |
| 242 | |
| 243 | now = now.Add(30 * time.Second) |
| 244 | h.Add(2) |
| 245 | now = now.Add(30 * time.Second) |
| 246 | h.Add(3) |
| 247 | |
Robin Thellend | 14a09ef | 2014-08-29 13:55:19 -0700 | [diff] [blame] | 248 | result, err = doGlob("", "ipc/test/hhh/delta1m", now, true) |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 249 | if err != nil { |
| 250 | t.Errorf("unexpected error: %v", err) |
| 251 | } |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 252 | expected = []libstats.KeyValue{ |
| 253 | libstats.KeyValue{ |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 254 | Key: "ipc/test/hhh/delta1m", |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 255 | Value: istats.HistogramValue{ |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 256 | Count: 2, |
| 257 | Sum: 5, |
Jungho Ahn | 58e85b8 | 2014-12-01 10:01:02 -0800 | [diff] [blame] | 258 | Min: 2, |
| 259 | Max: 3, |
Robin Thellend | 7a44243 | 2014-08-22 09:05:08 -0700 | [diff] [blame] | 260 | Buckets: []istats.HistogramBucket{ |
| 261 | istats.HistogramBucket{LowBound: 0, Count: 0}, |
| 262 | istats.HistogramBucket{LowBound: 1, Count: 0}, |
| 263 | istats.HistogramBucket{LowBound: 2, Count: 1}, |
| 264 | istats.HistogramBucket{LowBound: 3, Count: 1}, |
| 265 | istats.HistogramBucket{LowBound: 4, Count: 0}, |
Robin Thellend | ac59e97 | 2014-08-19 18:26:11 -0700 | [diff] [blame] | 266 | }, |
| 267 | }, |
| 268 | }, |
| 269 | } |
| 270 | if !reflect.DeepEqual(result, expected) { |
| 271 | t.Errorf("unexpected result. Got %#v, want %#v", result, expected) |
| 272 | } |
| 273 | } |
Robin Thellend | df42823 | 2014-10-06 12:50:44 -0700 | [diff] [blame] | 274 | |
Robin Thellend | fa70aaa | 2014-10-09 17:13:05 -0700 | [diff] [blame] | 275 | func TestMap(t *testing.T) { |
| 276 | m := libstats.NewMap("testing/foo") |
| 277 | m.Set([]libstats.KeyValue{{"a", 1}, {"b", 2}}) |
| 278 | |
| 279 | // Test the Value of the map. |
| 280 | { |
| 281 | got, err := libstats.Value("testing/foo") |
| 282 | if err != nil { |
| 283 | t.Errorf("unexpected error: %v", err) |
| 284 | } |
| 285 | if expected := interface{}(nil); got != expected { |
| 286 | t.Errorf("unexpected result. Got %v, want %v", got, expected) |
| 287 | } |
| 288 | } |
| 289 | // Test Glob on the map object. |
| 290 | { |
| 291 | got, err := doGlob("testing", "foo/...", time.Time{}, true) |
| 292 | if err != nil { |
| 293 | t.Errorf("unexpected error: %v", err) |
| 294 | } |
| 295 | expected := []libstats.KeyValue{ |
| 296 | libstats.KeyValue{Key: "foo", Value: nil}, |
| 297 | libstats.KeyValue{Key: "foo/a", Value: int64(1)}, |
| 298 | libstats.KeyValue{Key: "foo/b", Value: int64(2)}, |
| 299 | } |
| 300 | if !reflect.DeepEqual(got, expected) { |
| 301 | t.Errorf("unexpected result. Got %#v, want %#v", got, expected) |
| 302 | } |
| 303 | } |
| 304 | |
| 305 | m.Delete([]string{"a"}) |
| 306 | |
| 307 | // Test Glob on the map object. |
| 308 | { |
| 309 | got, err := doGlob("testing", "foo/...", time.Time{}, true) |
| 310 | if err != nil { |
| 311 | t.Errorf("unexpected error: %v", err) |
| 312 | } |
| 313 | expected := []libstats.KeyValue{ |
| 314 | libstats.KeyValue{Key: "foo", Value: nil}, |
| 315 | libstats.KeyValue{Key: "foo/b", Value: int64(2)}, |
| 316 | } |
| 317 | if !reflect.DeepEqual(got, expected) { |
| 318 | t.Errorf("unexpected result. Got %#v, want %#v", got, expected) |
| 319 | } |
| 320 | } |
| 321 | } |
| 322 | |
Robin Thellend | 8cc0aee | 2014-10-16 10:58:24 -0700 | [diff] [blame] | 323 | func TestFunc(t *testing.T) { |
| 324 | libstats.NewIntegerFunc("testing/integer", func() int64 { return 123 }) |
| 325 | libstats.NewFloatFunc("testing/float", func() float64 { return 456.789 }) |
| 326 | libstats.NewStringFunc("testing/string", func() string { return "Hello World" }) |
| 327 | ch := make(chan int64, 5) |
| 328 | libstats.NewIntegerFunc("testing/slowint", func() int64 { |
| 329 | return <-ch |
| 330 | }) |
| 331 | |
| 332 | testcases := []struct { |
| 333 | name string |
| 334 | expected interface{} |
| 335 | }{ |
| 336 | {"testing/integer", int64(123)}, |
| 337 | {"testing/float", float64(456.789)}, |
| 338 | {"testing/string", "Hello World"}, |
| 339 | {"testing/slowint", nil}, // Times out |
| 340 | } |
| 341 | for _, tc := range testcases { |
| 342 | checkVariable(t, tc.name, tc.expected) |
| 343 | } |
| 344 | checkVariable(t, "testing/slowint", nil) // Times out |
| 345 | checkVariable(t, "testing/slowint", nil) // Times out |
| 346 | ch <- int64(0) |
| 347 | checkVariable(t, "testing/slowint", int64(0)) // New value |
| 348 | checkVariable(t, "testing/slowint", int64(0)) // Times out |
| 349 | for i := 1; i <= 5; i++ { |
| 350 | ch <- int64(i) |
| 351 | } |
| 352 | for i := 1; i <= 5; i++ { |
| 353 | checkVariable(t, "testing/slowint", int64(i)) // New value each time |
| 354 | } |
| 355 | } |
| 356 | |
| 357 | func checkVariable(t *testing.T, name string, expected interface{}) { |
| 358 | got, err := libstats.Value(name) |
| 359 | if err != nil { |
| 360 | t.Errorf("unexpected error for %q: %v", name, err) |
| 361 | } |
| 362 | if got != expected { |
| 363 | t.Errorf("unexpected result for %q. Got %v, want %v", name, got, expected) |
| 364 | } |
| 365 | } |
| 366 | |
Robin Thellend | df42823 | 2014-10-06 12:50:44 -0700 | [diff] [blame] | 367 | func TestDelete(t *testing.T) { |
| 368 | _ = libstats.NewInteger("a/b/c/d") |
| 369 | if _, err := libstats.GetStatsObject("a/b/c/d"); err != nil { |
| 370 | t.Errorf("unexpected error value: %v", err) |
| 371 | } |
| 372 | if err := libstats.Delete("a/b/c/d"); err != nil { |
| 373 | t.Errorf("unexpected error value: %v", err) |
| 374 | } |
| 375 | if _, err := libstats.GetStatsObject("a/b/c/d"); err != libstats.ErrNotFound { |
| 376 | t.Errorf("unexpected error value: Got %v, want %v", err, libstats.ErrNotFound) |
| 377 | } |
| 378 | if err := libstats.Delete("a/b"); err != nil { |
| 379 | t.Errorf("unexpected error value: %v", err) |
| 380 | } |
| 381 | if _, err := libstats.GetStatsObject("a/b"); err != libstats.ErrNotFound { |
| 382 | t.Errorf("unexpected error value: Got %v, want %v", err, libstats.ErrNotFound) |
| 383 | } |
| 384 | if _, err := libstats.GetStatsObject("a/b/c"); err != libstats.ErrNotFound { |
| 385 | t.Errorf("unexpected error value: Got %v, want %v", err, libstats.ErrNotFound) |
| 386 | } |
| 387 | } |