-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdump_test.go
34 lines (27 loc) · 865 Bytes
/
dump_test.go
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
// Copyright 2016 Canonical Ltd.
// Licensed under the AGPLv3, see LICENCE file for details.
package state_test
import (
jc "github.com/juju/testing/checkers"
"github.com/juju/utils/set"
gc "gopkg.in/check.v1"
)
type dumpSuite struct {
ConnSuite
}
var _ = gc.Suite(&dumpSuite{})
func (s *dumpSuite) TestDumpAll(c *gc.C) {
value, err := s.State.DumpAll()
c.Assert(err, jc.ErrorIsNil)
models, ok := value["models"].(map[string]interface{})
c.Assert(ok, jc.IsTrue)
c.Assert(models["name"], gc.Equals, "testenv")
initialCollections := set.NewStrings()
for name := range value {
initialCollections.Add(name)
}
// check that there are some other collections there
c.Check(initialCollections.Contains("modelusers"), jc.IsTrue)
c.Check(initialCollections.Contains("leases"), jc.IsTrue)
c.Check(initialCollections.Contains("statuses"), jc.IsTrue)
}