Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(76)

Side by Side Diff: state/apiserver/api_test.go

Issue 9771043: api: allow shorter dialing time
Patch Set: api: allow shorter dialing time Created 11 years, 10 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b