-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenviron_test.go
55 lines (44 loc) · 1.22 KB
/
environ_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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Copyright 2013 Canonical Ltd.
// Licensed under the AGPLv3, see LICENCE file for details.
package state_test
import (
"github.com/juju/names"
gc "launchpad.net/gocheck"
"github.com/juju/juju/state"
)
type EnvironSuite struct {
ConnSuite
env *state.Environment
}
var _ = gc.Suite(&EnvironSuite{})
func (s *EnvironSuite) SetUpTest(c *gc.C) {
s.ConnSuite.SetUpTest(c)
env, err := s.State.Environment()
c.Assert(err, gc.IsNil)
s.env = env
}
func (s *EnvironSuite) TestTag(c *gc.C) {
expected := names.NewEnvironTag(s.env.UUID())
c.Assert(s.env.Tag(), gc.Equals, expected)
}
func (s *EnvironSuite) TestName(c *gc.C) {
c.Assert(s.env.Name(), gc.Equals, "testenv")
}
func (s *EnvironSuite) TestUUID(c *gc.C) {
uuidA := s.env.UUID()
c.Assert(uuidA, gc.HasLen, 36)
// Check that two environments have different UUIDs.
s.State.Close()
s.MgoSuite.TearDownTest(c)
s.MgoSuite.SetUpTest(c)
s.State = state.TestingInitialize(c, nil, state.Policy(nil))
env, err := s.State.Environment()
c.Assert(err, gc.IsNil)
uuidB := env.UUID()
c.Assert(uuidA, gc.Not(gc.Equals), uuidB)
}
func (s *EnvironSuite) TestAnnotatorForEnvironment(c *gc.C) {
testAnnotator(c, func() (state.Annotator, error) {
return s.State.Environment()
})
}