-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontroller_test.go
44 lines (36 loc) · 1.31 KB
/
controller_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
// Copyright 2016 Canonical Ltd.
// Licensed under the AGPLv3, see LICENCE file for details.
package state_test
import (
jc "github.com/juju/testing/checkers"
gc "gopkg.in/check.v1"
"github.com/juju/juju/controller"
"github.com/juju/juju/state"
)
type ControllerConfigSuite struct {
ConnSuite
}
var _ = gc.Suite(&ControllerConfigSuite{})
func (s *ControllerConfigSuite) TestControllerAndModelConfigInitialisation(c *gc.C) {
// Test setup has created model using a fully populated environs.Config.
// This test ensure that the controller specific attributes have been separated out.
controllerSettings, err := s.State.ReadSettings(state.ControllersC, "controllerSettings")
c.Assert(err, jc.ErrorIsNil)
optional := func(attr string) bool {
return attr == controller.IdentityURL || attr == controller.IdentityPublicKey
}
for _, controllerAttr := range controller.ControllerOnlyConfigAttributes {
v, ok := controllerSettings.Get(controllerAttr)
if !optional(controllerAttr) {
c.Assert(ok, jc.IsTrue)
c.Assert(v, gc.Not(gc.Equals), "")
}
}
}
func (s *ControllerConfigSuite) TestControllerConfig(c *gc.C) {
cfg, err := s.State.ControllerConfig()
c.Assert(err, jc.ErrorIsNil)
m, err := s.State.ControllerModel()
c.Assert(err, jc.ErrorIsNil)
c.Assert(cfg["controller-uuid"], gc.Equals, m.ControllerUUID())
}