blob: 1f3e3d686df4a1503bf1b69aca41619b570e91c5 [file] [log] [blame]
David Symonds3cc702b2009-04-19 21:17:27 -07001// 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 Pike0632bb42009-09-30 13:11:33 -07005package expvar
David Symonds3cc702b2009-04-19 21:17:27 -07006
7import (
David Symonds2f284942009-05-04 15:14:22 -07008 "json";
David Symonds3cc702b2009-04-19 21:17:27 -07009 "testing";
10)
11
David Symonds2f284942009-05-04 15:14:22 -070012func 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 Symonds3cc702b2009-04-19 21:17:27 -070019 }
20
David Symonds2f284942009-05-04 15:14:22 -070021 reqs.Add(1);
22 reqs.Add(3);
23 if reqs.i != 4 {
24 t.Errorf("reqs.i = %v, want 4", reqs.i)
David Symonds3cc702b2009-04-19 21:17:27 -070025 }
26
David Symonds2f284942009-05-04 15:14:22 -070027 if s := reqs.String(); s != "4" {
28 t.Errorf("reqs.String() = %q, want \"4\"", s);
David Symonds3cc702b2009-04-19 21:17:27 -070029 }
30}
31
David Symonds2f284942009-05-04 15:14:22 -070032func TestString(t *testing.T) {
33 name := NewString("my-name");
34 if name.s != "" {
35 t.Errorf("name.s = %q, want \"\"", name.s)
David Symondsf4b92c82009-04-26 20:57:01 -070036 }
37
David Symonds2f284942009-05-04 15:14:22 -070038 name.Set("Mike");
39 if name.s != "Mike" {
40 t.Errorf("name.s = %q, want \"Mike\"", name.s)
David Symondsde489fb2009-04-20 22:38:14 -070041 }
42
David Symonds2f284942009-05-04 15:14:22 -070043 if s := name.String(); s != "\"Mike\"" {
44 t.Errorf("reqs.String() = %q, want \"\"Mike\"\"", s);
David Symondsde489fb2009-04-20 22:38:14 -070045 }
46}
47
48func TestMapCounter(t *testing.T) {
David Symonds2f284942009-05-04 15:14:22 -070049 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 Symondsde489fb2009-04-20 22:38:14 -070059 }
60
David Symonds2f284942009-05-04 15:14:22 -070061 // 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 Symondsde489fb2009-04-20 22:38:14 -070067 }
David Symonds2f284942009-05-04 15:14:22 -070068 if j.Kind() != json.MapKind {
69 t.Error("colours.String() didn't produce a map.")
David Symondsde489fb2009-04-20 22:38:14 -070070 }
David Symonds2f284942009-05-04 15:14:22 -070071 red := j.Get("red");
72 if red.Kind() != json.NumberKind {
73 t.Error("red.Kind() is not a NumberKind.")
David Symonds3cc702b2009-04-19 21:17:27 -070074 }
David Symonds2f284942009-05-04 15:14:22 -070075 if x := red.Number(); x != 3 {
76 t.Error("red = %v, want 3", x)
David Symonds3cc702b2009-04-19 21:17:27 -070077 }
78}
David Symonds5a12b182009-05-24 15:04:43 -070079
80func 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}