Index: state/machine_test.go |
=== modified file 'state/machine_test.go' |
--- state/machine_test.go 2013-08-22 21:59:32 +0000 |
+++ state/machine_test.go 2013-08-29 13:53:36 +0000 |
@@ -615,6 +615,23 @@ |
testing.NewNotifyWatcherC(c, s.State, w).AssertOneChange() |
} |
+func (s *MachineSuite) TestWatchDiesOnStateClose(c *gc.C) { |
+ // This test is testing logic in watcher.entityWatcher, which |
+ // is also used by: |
+ // Machine.WatchHardwareCharacteristics |
+ // Service.Watch |
+ // Unit.Watch |
+ // State.WatchForEnvironConfigChanges |
+ // Unit.WatchConfigSettings |
+ testWatcherDiesWhenStateCloses(c, func(c *gc.C, st *state.State) waiter { |
+ m, err := st.Machine(s.machine.Id()) |
+ c.Assert(err, gc.IsNil) |
+ w := m.Watch() |
+ <-w.Changes() |
+ return w |
+ }) |
+} |
+ |
func (s *MachineSuite) TestWatchPrincipalUnits(c *gc.C) { |
// Start a watch on an empty machine; check no units reported. |
w := s.machine.WatchPrincipalUnits() |
@@ -710,6 +727,18 @@ |
wc.AssertNoChange() |
} |
+func (s *MachineSuite) TestWatchPrincipalUnitsDiesOnStateClose(c *gc.C) { |
+ // This test is testing logic in watcher.unitsWatcher, which |
+ // is also used by Unit.WatchSubordinateUnits. |
+ testWatcherDiesWhenStateCloses(c, func(c *gc.C, st *state.State) waiter { |
+ m, err := st.Machine(s.machine.Id()) |
+ c.Assert(err, gc.IsNil) |
+ w := m.WatchPrincipalUnits() |
+ <-w.Changes() |
+ return w |
+ }) |
+} |
+ |
func (s *MachineSuite) TestWatchUnits(c *gc.C) { |
// Start a watch on an empty machine; check no units reported. |
w := s.machine.WatchUnits() |
@@ -806,6 +835,16 @@ |
wc.AssertNoChange() |
} |
+func (s *MachineSuite) TestWatchUnitsDiesOnStateClose(c *gc.C) { |
+ testWatcherDiesWhenStateCloses(c, func(c *gc.C, st *state.State) waiter { |
+ m, err := st.Machine(s.machine.Id()) |
+ c.Assert(err, gc.IsNil) |
+ w := m.WatchUnits() |
+ <-w.Changes() |
+ return w |
+ }) |
+} |
+ |
func (s *MachineSuite) TestAnnotatorForMachine(c *gc.C) { |
testAnnotator(c, func() (state.Annotator, error) { |
return s.State.Machine(s.machine.Id()) |