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

Unified Diff: state/apiserver/machine/agent_test.go

Issue 9738043: cmd/jujud: do not change password
Patch Set: cmd/jujud: do not change password Created 11 years, 9 months ago
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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « state/apiserver/machine/agent.go ('k') | state/apiserver/machine/common_test.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: state/apiserver/machine/agent_test.go
=== added file 'state/apiserver/machine/agent_test.go'
--- state/apiserver/machine/agent_test.go 1970-01-01 00:00:00 +0000
+++ state/apiserver/machine/agent_test.go 2013-06-21 14:49:28 +0000
@@ -0,0 +1,91 @@
+package machine_test
+
+import (
+ . "launchpad.net/gocheck"
+ "launchpad.net/juju-core/state/api"
+ "launchpad.net/juju-core/state/api/params"
+ "launchpad.net/juju-core/state/apiserver/machine"
+)
+
+type agentSuite struct {
+ commonSuite
+ agent *machine.AgentAPI
+}
+
+var _ = Suite(&agentSuite{})
+
+func (s *agentSuite) SetUpTest(c *C) {
+ s.commonSuite.SetUpTest(c)
+
+ // Create a machiner API for machine 1.
+ api, err := machine.NewAgentAPI(
+ s.State,
+ s.authorizer,
+ )
+ c.Assert(err, IsNil)
+ s.agent = api
+}
+
+func (s *agentSuite) TestAgentFailsWithNonMachineAgentUser(c *C) {
+ auth := s.authorizer
+ auth.machineAgent = false
+ api, err := machine.NewAgentAPI(s.State, auth)
+ c.Assert(err, NotNil)
+ c.Assert(api, IsNil)
+ c.Assert(err, ErrorMatches, "permission denied")
+}
+
+func (s *agentSuite) TestAgentFailsWhenNotLoggedIn(c *C) {
+ auth := s.authorizer
+ auth.loggedIn = false
+ api, err := machine.NewAgentAPI(s.State, auth)
+ c.Assert(err, NotNil)
+ c.Assert(api, IsNil)
+ c.Assert(err, ErrorMatches, "not logged in")
+}
+
+func (s *agentSuite) TestGetMachines(c *C) {
+ err := s.machine1.Destroy()
+ c.Assert(err, IsNil)
+ results := s.agent.GetMachines(params.Machines{
+ Ids: []string{"1", "0", "42"},
+ })
+ c.Assert(err, IsNil)
+ c.Assert(results, DeepEquals, params.MachineAgentGetMachinesResults{
+ Machines: []params.MachineAgentGetMachinesResult{{
+ Life: "dying",
+ Jobs: []params.MachineJob{params.JobHostUnits},
+ }, {
+ Error: &params.Error{
+ Code: api.CodeUnauthorized,
+ Message: "permission denied",
+ },
+ }, {
+ Error: &params.Error{
+ Code: api.CodeUnauthorized,
+ Message: "permission denied",
+ },
+ }},
+ })
+}
+
+func (s *agentSuite) TestGetNotFoundMachine(c *C) {
+ err := s.machine1.Destroy()
+ c.Assert(err, IsNil)
+ err = s.machine1.EnsureDead()
+ c.Assert(err, IsNil)
+ err = s.machine1.Remove()
+ c.Assert(err, IsNil)
+ results := s.agent.GetMachines(params.Machines{
+ Ids: []string{"1"},
+ })
+ c.Assert(err, IsNil)
+ c.Assert(results, DeepEquals, params.MachineAgentGetMachinesResults{
+ Machines: []params.MachineAgentGetMachinesResult{{
+ Error: &params.Error{
+ Code: api.CodeNotFound,
+ Message: "machine 1 not found",
+ },
+ }},
+ })
+}
« no previous file with comments | « state/apiserver/machine/agent.go ('k') | state/apiserver/machine/common_test.go » ('j') | no next file with comments »

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