LEFT | RIGHT |
(no file at all) | |
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 . "launchpad.net/gocheck" | 7 . "launchpad.net/gocheck" |
8 "launchpad.net/juju-core/state/api" | 8 "launchpad.net/juju-core/state/api" |
9 "launchpad.net/juju-core/state/apiserver" | 9 "launchpad.net/juju-core/state/apiserver" |
10 coretesting "launchpad.net/juju-core/testing" | 10 coretesting "launchpad.net/juju-core/testing" |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 }() | 54 }() |
55 | 55 |
56 info := &api.Info{ | 56 info := &api.Info{ |
57 Tag: "", | 57 Tag: "", |
58 Password: "", | 58 Password: "", |
59 Addrs: []string{srv.Addr()}, | 59 Addrs: []string{srv.Addr()}, |
60 CACert: []byte(coretesting.CACert), | 60 CACert: []byte(coretesting.CACert), |
61 } | 61 } |
62 for i, t := range badLoginTests { | 62 for i, t := range badLoginTests { |
63 c.Logf("test %d; entity %q; password %q", i, t.tag, t.password) | 63 c.Logf("test %d; entity %q; password %q", i, t.tag, t.password) |
| 64 // Note that Open does not log in if the tag and password |
| 65 // are empty. This allows us to test operations on the connectio
n |
| 66 // before calling Login, which we could not do if Open |
| 67 // always logged in. |
64 info.Tag = "" | 68 info.Tag = "" |
65 info.Password = "" | 69 info.Password = "" |
66 func() { | 70 func() { |
67 » » » st, err := api.Open(info) | 71 » » » st, err := api.Open(info, fastDialOpts) |
68 c.Assert(err, IsNil) | 72 c.Assert(err, IsNil) |
69 defer st.Close() | 73 defer st.Close() |
70 | 74 |
71 » » » _, err = st.Machiner() | 75 » » » _, err = st.Machiner().Machine("0") |
72 c.Assert(err, ErrorMatches, "not logged in") | 76 c.Assert(err, ErrorMatches, "not logged in") |
73 c.Assert(api.ErrCode(err), Equals, api.CodeUnauthorized,
Commentf("error %#v", err)) | 77 c.Assert(api.ErrCode(err), Equals, api.CodeUnauthorized,
Commentf("error %#v", err)) |
74 | 78 |
75 // TODO (dimitern) This a really awkward way of testing
- | |
76 // calling Login again here to reauth on the same | |
77 // connection. Seems wrong. | |
78 err = st.Login(t.tag, t.password) | 79 err = st.Login(t.tag, t.password) |
79 c.Assert(err, ErrorMatches, t.err) | 80 c.Assert(err, ErrorMatches, t.err) |
80 c.Assert(api.ErrCode(err), Equals, t.code) | 81 c.Assert(api.ErrCode(err), Equals, t.code) |
81 | 82 |
82 » » » _, err = st.Machiner() | 83 » » » _, err = st.Machiner().Machine("0") |
83 c.Assert(err, ErrorMatches, "not logged in") | 84 c.Assert(err, ErrorMatches, "not logged in") |
84 c.Assert(api.ErrCode(err), Equals, api.CodeUnauthorized) | 85 c.Assert(api.ErrCode(err), Equals, api.CodeUnauthorized) |
85 }() | 86 }() |
86 } | 87 } |
87 } | 88 } |
LEFT | RIGHT |