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

Unified Diff: state/machine_test.go

Issue 13386044: state: avoid panic in watchers
Patch Set: state: avoid panic in watchers Created 11 years, 7 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/common/watch_test.go ('k') | state/relationunit_test.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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())
« no previous file with comments | « state/apiserver/common/watch_test.go ('k') | state/relationunit_test.go » ('j') | no next file with comments »

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