OLD | NEW |
1 // Copyright 2012, 2013 Canonical Ltd. | 1 // Copyright 2012, 2013 Canonical Ltd. |
2 // Licensed under the AGPLv3, see LICENCE file for details. | 2 // Licensed under the AGPLv3, see LICENCE file for details. |
3 | 3 |
4 package apiserver_test | 4 package apiserver_test |
5 | 5 |
6 import ( | 6 import ( |
7 "fmt" | 7 "fmt" |
8 . "launchpad.net/gocheck" | 8 . "launchpad.net/gocheck" |
9 "launchpad.net/juju-core/environs/config" | 9 "launchpad.net/juju-core/environs/config" |
10 "launchpad.net/juju-core/juju/testing" | 10 "launchpad.net/juju-core/juju/testing" |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 } | 116 } |
117 | 117 |
118 // openAs connects to the API state as the given entity | 118 // openAs connects to the API state as the given entity |
119 // with the default password for that entity. | 119 // with the default password for that entity. |
120 func (s *suite) openAs(c *C, tag string) *api.State { | 120 func (s *suite) openAs(c *C, tag string) *api.State { |
121 _, info, err := s.APIConn.Environ.StateInfo() | 121 _, info, err := s.APIConn.Environ.StateInfo() |
122 c.Assert(err, IsNil) | 122 c.Assert(err, IsNil) |
123 info.Tag = tag | 123 info.Tag = tag |
124 info.Password = fmt.Sprintf("%s password", tag) | 124 info.Password = fmt.Sprintf("%s password", tag) |
125 c.Logf("opening state; entity %q; password %q", info.Tag, info.Password) | 125 c.Logf("opening state; entity %q; password %q", info.Tag, info.Password) |
126 » st, err := api.Open(info) | 126 » st, err := api.Open(info, fastDialOpts) |
127 c.Assert(err, IsNil) | 127 c.Assert(err, IsNil) |
128 c.Assert(st, NotNil) | 128 c.Assert(st, NotNil) |
129 return st | 129 return st |
130 } | 130 } |
OLD | NEW |