1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
|
// Copyright 2014 Canonical Ltd.
// Licensed under the LGPLv3, see LICENCE file for details.
package debugstatus_test
import (
"errors"
"time"
jujutesting "github.com/juju/testing"
jc "github.com/juju/testing/checkers"
"golang.org/x/net/context"
gc "gopkg.in/check.v1"
"gopkg.in/mgo.v2"
"github.com/juju/utils/debugstatus"
)
type statusSuite struct {
jujutesting.IsolationSuite
}
var _ = gc.Suite(&statusSuite{})
func makeCheckerFunc(key, name, value string, passed bool) debugstatus.CheckerFunc {
return func(context.Context) (string, debugstatus.CheckResult) {
time.Sleep(time.Microsecond)
return key, debugstatus.CheckResult{
Name: name,
Value: value,
Passed: passed,
}
}
}
func (s *statusSuite) TestCheck(c *gc.C) {
results := debugstatus.Check(
context.Background(),
makeCheckerFunc("check1", "check1 name", "value1", true),
makeCheckerFunc("check2", "check2 name", "value2", false),
makeCheckerFunc("check3", "check3 name", "value3", true),
)
for key, r := range results {
if r.Duration < time.Microsecond {
c.Errorf("got %v want >1µs", r.Duration)
}
r.Duration = 0
results[key] = r
}
c.Assert(results, jc.DeepEquals, map[string]debugstatus.CheckResult{
"check1": {
Name: "check1 name",
Value: "value1",
Passed: true,
},
"check2": {
Name: "check2 name",
Value: "value2",
Passed: false,
},
"check3": {
Name: "check3 name",
Value: "value3",
Passed: true,
},
})
}
func (s *statusSuite) TestServerStartTime(c *gc.C) {
startTime := time.Now()
s.PatchValue(&debugstatus.StartTime, startTime)
key, result := debugstatus.ServerStartTime(context.Background())
c.Assert(key, gc.Equals, "server_started")
c.Assert(result, jc.DeepEquals, debugstatus.CheckResult{
Name: "Server started",
Value: startTime.String(),
Passed: true,
})
}
func (s *statusSuite) TestConnection(c *gc.C) {
// Ensure a connection established is properly reported.
check := debugstatus.Connection(pinger{nil})
key, result := check(context.Background())
c.Assert(key, gc.Equals, "mongo_connected")
c.Assert(result, jc.DeepEquals, debugstatus.CheckResult{
Name: "MongoDB is connected",
Value: "Connected",
Passed: true,
})
// An error is reported if ping fails.
check = debugstatus.Connection(pinger{errors.New("bad wolf")})
key, result = check(context.Background())
c.Assert(key, gc.Equals, "mongo_connected")
c.Assert(result, jc.DeepEquals, debugstatus.CheckResult{
Name: "MongoDB is connected",
Value: "Ping error: bad wolf",
Passed: false,
})
}
// pinger implements a debugstatus.Pinger used for tests.
type pinger struct {
err error
}
func (p pinger) Ping() error {
return p.err
}
var mongoCollectionsTests = []struct {
about string
collector collector
expectValue string
expectPassed bool
}{{
about: "all collection exist",
collector: collector{
expected: []string{"coll1", "coll2"},
obtained: []string{"coll1", "coll2"},
},
expectValue: "All required collections exist",
expectPassed: true,
}, {
about: "no collections",
expectValue: "All required collections exist",
expectPassed: true,
}, {
about: "missing collections",
collector: collector{
expected: []string{"coll1", "coll2", "coll3"},
obtained: []string{"coll2"},
},
expectValue: "Missing collections: [coll1 coll3]",
}, {
about: "error retrieving collections",
collector: collector{
err: errors.New("bad wolf"),
},
expectValue: "Cannot get collections: bad wolf",
}}
func (s *statusSuite) TestMongoCollections(c *gc.C) {
for i, test := range mongoCollectionsTests {
c.Logf("test %d: %s", i, test.about)
// Ensure a connection established is properly reported.
check := debugstatus.MongoCollections(test.collector)
key, result := check(context.Background())
c.Assert(key, gc.Equals, "mongo_collections")
c.Assert(result, jc.DeepEquals, debugstatus.CheckResult{
Name: "MongoDB collections",
Value: test.expectValue,
Passed: test.expectPassed,
})
}
}
// collector implements a debugstatus.Collector used for tests.
type collector struct {
expected []string
obtained []string
err error
}
func (c collector) CollectionNames() ([]string, error) {
return c.obtained, c.err
}
func (c collector) Collections() []*mgo.Collection {
collections := make([]*mgo.Collection, len(c.expected))
for i, name := range c.expected {
collections[i] = &mgo.Collection{Name: name}
}
return collections
}
var renameTests = []struct {
about string
key string
name string
}{{
about: "rename key",
key: "new-key",
}, {
about: "rename name",
name: "new name",
}, {
about: "rename both",
key: "another-key",
name: "another name",
}, {
about: "do not rename",
}}
func (s *statusSuite) TestRename(c *gc.C) {
check := makeCheckerFunc("old-key", "old name", "value", true)
for i, test := range renameTests {
c.Logf("test %d: %s", i, test.about)
// Rename and run the check.
key, result := debugstatus.Rename(test.key, test.name, check)(context.Background())
// Ensure the results are successfully renamed.
expectKey := test.key
if expectKey == "" {
expectKey = "old-key"
}
expectName := test.name
if expectName == "" {
expectName = "old name"
}
c.Assert(key, gc.Equals, expectKey)
c.Assert(result, jc.DeepEquals, debugstatus.CheckResult{
Name: expectName,
Value: "value",
Passed: true,
})
}
}
|