David Symonds | 3cc702b | 2009-04-19 21:17:27 -0700 | [diff] [blame] | 1 | // Copyright 2009 The Go 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 | |
Rob Pike | 0632bb4 | 2009-09-30 13:11:33 -0700 | [diff] [blame^] | 5 | package expvar |
David Symonds | 3cc702b | 2009-04-19 21:17:27 -0700 | [diff] [blame] | 6 | |
| 7 | import ( |
David Symonds | 2f28494 | 2009-05-04 15:14:22 -0700 | [diff] [blame] | 8 | "json"; |
David Symonds | 3cc702b | 2009-04-19 21:17:27 -0700 | [diff] [blame] | 9 | "testing"; |
| 10 | ) |
| 11 | |
David Symonds | 2f28494 | 2009-05-04 15:14:22 -0700 | [diff] [blame] | 12 | func TestInt(t *testing.T) { |
| 13 | reqs := NewInt("requests"); |
| 14 | if reqs.i != 0 { |
| 15 | t.Errorf("reqs.i = %v, want 4", reqs.i) |
| 16 | } |
| 17 | if reqs != Get("requests").(*Int) { |
| 18 | t.Errorf("Get() failed.") |
David Symonds | 3cc702b | 2009-04-19 21:17:27 -0700 | [diff] [blame] | 19 | } |
| 20 | |
David Symonds | 2f28494 | 2009-05-04 15:14:22 -0700 | [diff] [blame] | 21 | reqs.Add(1); |
| 22 | reqs.Add(3); |
| 23 | if reqs.i != 4 { |
| 24 | t.Errorf("reqs.i = %v, want 4", reqs.i) |
David Symonds | 3cc702b | 2009-04-19 21:17:27 -0700 | [diff] [blame] | 25 | } |
| 26 | |
David Symonds | 2f28494 | 2009-05-04 15:14:22 -0700 | [diff] [blame] | 27 | if s := reqs.String(); s != "4" { |
| 28 | t.Errorf("reqs.String() = %q, want \"4\"", s); |
David Symonds | 3cc702b | 2009-04-19 21:17:27 -0700 | [diff] [blame] | 29 | } |
| 30 | } |
| 31 | |
David Symonds | 2f28494 | 2009-05-04 15:14:22 -0700 | [diff] [blame] | 32 | func TestString(t *testing.T) { |
| 33 | name := NewString("my-name"); |
| 34 | if name.s != "" { |
| 35 | t.Errorf("name.s = %q, want \"\"", name.s) |
David Symonds | f4b92c8 | 2009-04-26 20:57:01 -0700 | [diff] [blame] | 36 | } |
| 37 | |
David Symonds | 2f28494 | 2009-05-04 15:14:22 -0700 | [diff] [blame] | 38 | name.Set("Mike"); |
| 39 | if name.s != "Mike" { |
| 40 | t.Errorf("name.s = %q, want \"Mike\"", name.s) |
David Symonds | de489fb | 2009-04-20 22:38:14 -0700 | [diff] [blame] | 41 | } |
| 42 | |
David Symonds | 2f28494 | 2009-05-04 15:14:22 -0700 | [diff] [blame] | 43 | if s := name.String(); s != "\"Mike\"" { |
| 44 | t.Errorf("reqs.String() = %q, want \"\"Mike\"\"", s); |
David Symonds | de489fb | 2009-04-20 22:38:14 -0700 | [diff] [blame] | 45 | } |
| 46 | } |
| 47 | |
| 48 | func TestMapCounter(t *testing.T) { |
David Symonds | 2f28494 | 2009-05-04 15:14:22 -0700 | [diff] [blame] | 49 | colours := NewMap("bike-shed-colours"); |
| 50 | |
| 51 | colours.Add("red", 1); |
| 52 | colours.Add("red", 2); |
| 53 | colours.Add("blue", 4); |
| 54 | if x := colours.m["red"].(*Int).i; x != 3 { |
| 55 | t.Errorf("colours.m[\"red\"] = %v, want 3", x) |
| 56 | } |
| 57 | if x := colours.m["blue"].(*Int).i; x != 4 { |
| 58 | t.Errorf("colours.m[\"blue\"] = %v, want 4", x) |
David Symonds | de489fb | 2009-04-20 22:38:14 -0700 | [diff] [blame] | 59 | } |
| 60 | |
David Symonds | 2f28494 | 2009-05-04 15:14:22 -0700 | [diff] [blame] | 61 | // colours.String() should be '{"red":3, "blue":4}', |
| 62 | // though the order of red and blue could vary. |
| 63 | s := colours.String(); |
| 64 | j, ok, errtok := json.StringToJson(s); |
| 65 | if !ok { |
| 66 | t.Errorf("colours.String() isn't valid JSON: %v", errtok) |
David Symonds | de489fb | 2009-04-20 22:38:14 -0700 | [diff] [blame] | 67 | } |
David Symonds | 2f28494 | 2009-05-04 15:14:22 -0700 | [diff] [blame] | 68 | if j.Kind() != json.MapKind { |
| 69 | t.Error("colours.String() didn't produce a map.") |
David Symonds | de489fb | 2009-04-20 22:38:14 -0700 | [diff] [blame] | 70 | } |
David Symonds | 2f28494 | 2009-05-04 15:14:22 -0700 | [diff] [blame] | 71 | red := j.Get("red"); |
| 72 | if red.Kind() != json.NumberKind { |
| 73 | t.Error("red.Kind() is not a NumberKind.") |
David Symonds | 3cc702b | 2009-04-19 21:17:27 -0700 | [diff] [blame] | 74 | } |
David Symonds | 2f28494 | 2009-05-04 15:14:22 -0700 | [diff] [blame] | 75 | if x := red.Number(); x != 3 { |
| 76 | t.Error("red = %v, want 3", x) |
David Symonds | 3cc702b | 2009-04-19 21:17:27 -0700 | [diff] [blame] | 77 | } |
| 78 | } |
David Symonds | 5a12b18 | 2009-05-24 15:04:43 -0700 | [diff] [blame] | 79 | |
| 80 | func TestIntFunc(t *testing.T) { |
| 81 | x := int(4); |
| 82 | ix := IntFunc(func() int64 { return int64(x) }); |
| 83 | if s := ix.String(); s != "4" { |
| 84 | t.Errorf("ix.String() = %v, want 4", s); |
| 85 | } |
| 86 | |
| 87 | x++; |
| 88 | if s := ix.String(); s != "5" { |
| 89 | t.Errorf("ix.String() = %v, want 5", s); |
| 90 | } |
| 91 | } |