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

Unified Diff: state/relationunit_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/machine_test.go ('k') | state/state_test.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: state/relationunit_test.go
=== modified file 'state/relationunit_test.go'
--- state/relationunit_test.go 2013-08-30 14:14:09 +0000
+++ state/relationunit_test.go 2013-08-30 15:26:14 +0000
@@ -56,7 +56,7 @@
}
func (s *RelationUnitSuite) TestPeerSettings(c *gc.C) {
- pr := NewPeerRelation(c, &s.ConnSuite)
+ pr := NewPeerRelation(c, s.State)
rus := RUs{pr.ru0, pr.ru1}
// Check missing settings cannot be read by any RU.
@@ -275,7 +275,7 @@
}
func (s *RelationUnitSuite) TestDestroyRelationWithUnitsInScope(c *gc.C) {
- pr := NewPeerRelation(c, &s.ConnSuite)
+ pr := NewPeerRelation(c, s.State)
rel := pr.ru0.Relation()
// Enter two units, and check that Destroying the service sets the
@@ -347,7 +347,7 @@
}
func (s *RelationUnitSuite) TestAliveRelationScope(c *gc.C) {
- pr := NewPeerRelation(c, &s.ConnSuite)
+ pr := NewPeerRelation(c, s.State)
rel := pr.ru0.Relation()
// Two units enter...
@@ -396,8 +396,17 @@
s.assertInScope(c, pr.ru3, false)
}
+func (s *StateSuite) TestWatchWatchScopeDiesOnStateClose(c *gc.C) {
+ testWatcherDiesWhenStateCloses(c, func(c *gc.C, st *state.State) waiter {
+ pr := NewPeerRelation(c, st)
+ w := pr.ru0.WatchScope()
+ <-w.Changes()
+ return w
+ })
+}
+
func (s *RelationUnitSuite) TestPeerWatchScope(c *gc.C) {
- pr := NewPeerRelation(c, &s.ConnSuite)
+ pr := NewPeerRelation(c, s.State)
// Test empty initial event.
w0 := pr.ru0.WatchScope()
@@ -647,12 +656,12 @@
ru0, ru1, ru2, ru3 *state.RelationUnit
}
-func NewPeerRelation(c *gc.C, s *ConnSuite) *PeerRelation {
- svc, err := s.State.AddService("riak", s.AddTestingCharm(c, "riak"))
+func NewPeerRelation(c *gc.C, st *state.State) *PeerRelation {
+ svc, err := st.AddService("riak", state.AddTestingCharm(c, st, "riak"))
c.Assert(err, gc.IsNil)
ep, err := svc.Endpoint("ring")
c.Assert(err, gc.IsNil)
- rel, err := s.State.EndpointsRelation(ep)
+ rel, err := st.EndpointsRelation(ep)
c.Assert(err, gc.IsNil)
pr := &PeerRelation{rel: rel, svc: svc}
pr.u0, pr.ru0 = addRU(c, svc, rel, nil)
« no previous file with comments | « state/machine_test.go ('k') | state/state_test.go » ('j') | no next file with comments »

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