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

Unified Diff: worker/instancepoller/observer_test.go

Issue 70190050: Update and Validate Environ Config in State
Patch Set: Update and Validate Environ Config in State Created 11 years 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
Index: worker/instancepoller/observer_test.go
=== modified file 'worker/instancepoller/observer_test.go'
--- worker/instancepoller/observer_test.go 2014-03-05 19:41:34 +0000
+++ worker/instancepoller/observer_test.go 2014-03-13 00:56:38 +0000
@@ -12,6 +12,7 @@
gc "launchpad.net/gocheck"
"launchpad.net/juju-core/juju/testing"
+ "launchpad.net/juju-core/state"
coretesting "launchpad.net/juju-core/testing"
)
@@ -43,17 +44,18 @@
env := obs.Environ()
c.Assert(env.Config().AllAttrs(), gc.DeepEquals, originalConfig.AllAttrs())
-
var oldType string
+ oldType = env.Config().AllAttrs()["type"].(string)
+
+ info := s.StateInfo(c)
+ opts := state.DefaultDialOpts()
+ st2, err := state.Open(info, opts, state.Policy(nil))
+ defer st2.Close()
+
// Change to an invalid configuration and check
// that the observer's environment remains the same.
- testing.ChangeEnvironConfig(c, s.State, func(attrs coretesting.Attrs) coretesting.Attrs {
- oldType = attrs["type"].(string)
- return attrs.Merge(coretesting.Attrs{
- "type": "invalid",
- })
- })
- s.State.StartSync()
+ st2.UpdateEnvironConfig(map[string]interface{}{"type": "invalid"}, nil, nil)
+ st2.StartSync()
// Wait for the observer to register the invalid environment
timeout := time.After(coretesting.LongWait)
@@ -74,13 +76,8 @@
// Change the environment back to a valid configuration
// with a different name and check that we see it.
- testing.ChangeEnvironConfig(c, s.State, func(attrs coretesting.Attrs) coretesting.Attrs {
- return attrs.Merge(coretesting.Attrs{
- "type": oldType,
- "name": "a-new-name",
- })
- })
- s.State.StartSync()
+ st2.UpdateEnvironConfig(map[string]interface{}{"type": oldType, "name": "a-new-name"}, nil, nil)
+ st2.StartSync()
for a := coretesting.LongAttempt.Start(); a.Next(); {
env := obs.Environ()
« no previous file with comments | « worker/firewaller/firewaller_test.go ('k') | worker/machineenvironmentworker/machineenvironmentworker_test.go » ('j') | no next file with comments »

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