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

Unified Diff: state/assign_test.go

Issue 6550047: state: add State.AssignUnit
Patch Set: state: add State.AssignUnit Created 12 years, 6 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 | « environs/jujutest/tests.go ('k') | state/state.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: state/assign_test.go
=== modified file 'state/assign_test.go'
--- state/assign_test.go 2012-09-20 16:35:46 +0000
+++ state/assign_test.go 2012-09-20 17:00:09 +0000
@@ -350,3 +350,56 @@
_, err = newUnit.AssignToUnusedMachine()
c.Assert(err, ErrorMatches, `all machines in use`)
}
+
+func (s *AssignSuite) TestAssignUnit(c *C) {
+ // Check nonsensical policy
+ fail := func() { s.State.AssignUnit(s.unit, state.AssignmentPolicy("random")) }
+ c.Assert(fail, PanicMatches, `unknown unit assignment policy: "random"`)
+ _, err := s.unit.AssignedMachineId()
+ c.Assert(err, NotNil)
+ assertMachineCount(c, s.State, 1)
+
+ // Check local placement
+ err = s.State.AssignUnit(s.unit, state.AssignLocal)
+ c.Assert(err, IsNil)
+ mid, err := s.unit.AssignedMachineId()
+ c.Assert(err, IsNil)
+ c.Assert(mid, Equals, 0)
+ assertMachineCount(c, s.State, 1)
+
+ // Check unassigned placement with no unused machines
+ unit1, err := s.service.AddUnit()
+ c.Assert(err, IsNil)
+ err = s.State.AssignUnit(unit1, state.AssignUnused)
+ c.Assert(err, IsNil)
+ mid, err = unit1.AssignedMachineId()
+ c.Assert(err, IsNil)
+ c.Assert(mid, Equals, 1)
+ assertMachineCount(c, s.State, 2)
+
+ // Check unassigned placement on an unused machine
+ _, err = s.State.AddMachine()
+ unit2, err := s.service.AddUnit()
+ c.Assert(err, IsNil)
+ err = s.State.AssignUnit(unit2, state.AssignUnused)
+ c.Assert(err, IsNil)
+ mid, err = unit2.AssignedMachineId()
+ c.Assert(err, IsNil)
+ c.Assert(mid, Equals, 2)
+ assertMachineCount(c, s.State, 3)
+
+ // Check cannot assign subordinates to machines
+ subCharm := s.AddTestingCharm(c, "logging")
+ logging, err := s.State.AddService("logging", subCharm)
+ c.Assert(err, IsNil)
+ unit3, err := logging.AddUnitSubordinateTo(unit2)
+ c.Assert(err, IsNil)
+ err = s.State.AssignUnit(unit3, state.AssignUnused)
+ c.Assert(err, ErrorMatches, `subordinate unit "logging/0" cannot be assigned directly to a machine`)
+}
+
+func assertMachineCount(c *C, st *state.State, expect int) {
+ ms, err := st.AllMachines()
+ c.Assert(err, IsNil)
+ c.Assert(ms, HasLen, expect)
+}
« no previous file with comments | « environs/jujutest/tests.go ('k') | state/state.go » ('j') | no next file with comments »

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