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

Delta Between Two Patch Sets: worker/provisioner/provisioner_test.go

Issue 6408049: environs: turn environment configuration into a concrete type
Left Patch Set: Created 12 years, 8 months ago
Right Patch Set: environs: turn environment configuration into a concrete type Created 12 years, 8 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « worker/provisioner/provisioner.go ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 package provisioner_test 1 package provisioner_test
2 2
3 import ( 3 import (
4 "time" 4 "time"
5 5
6 . "launchpad.net/gocheck" 6 . "launchpad.net/gocheck"
7 "launchpad.net/juju-core/environs" 7 "launchpad.net/juju-core/environs"
8 "launchpad.net/juju-core/environs/dummy" 8 "launchpad.net/juju-core/environs/dummy"
9 "launchpad.net/juju-core/state" 9 "launchpad.net/juju-core/state"
10 "launchpad.net/juju-core/state/testing" 10 "launchpad.net/juju-core/state/testing"
(...skipping 22 matching lines...) Expand all
33 33
34 func (s *ProvisionerSuite) SetUpTest(c *C) { 34 func (s *ProvisionerSuite) SetUpTest(c *C) {
35 s.LoggingSuite.SetUpTest(c) 35 s.LoggingSuite.SetUpTest(c)
36 36
37 // Create the operations channel with more than enough space 37 // Create the operations channel with more than enough space
38 // for those tests that don't listen on it. 38 // for those tests that don't listen on it.
39 op := make(chan dummy.Operation, 500) 39 op := make(chan dummy.Operation, 500)
40 dummy.Listen(op) 40 dummy.Listen(op)
41 s.op = op 41 s.op = op
42 42
43 » env, err := environs.NewEnviron(map[string]interface{}{ 43 » env, err := environs.NewFromAttrs(map[string]interface{}{
44 » » "type": "dummy", 44 » » "name": "testing",
45 » » "zookeeper": true, 45 » » "type": "dummy",
46 » » "name": "testing", 46 » » "zookeeper": true,
47 » » "authorized-keys": "i-am-a-key",
47 }) 48 })
48 c.Assert(err, IsNil) 49 c.Assert(err, IsNil)
49 err = env.Bootstrap(false) 50 err = env.Bootstrap(false)
50 c.Assert(err, IsNil) 51 c.Assert(err, IsNil)
51 52
52 // Sanity check 53 // Sanity check
53 info, err := env.StateInfo() 54 info, err := env.StateInfo()
54 c.Assert(err, IsNil) 55 c.Assert(err, IsNil)
55 c.Assert(info, DeepEquals, s.StateInfo(c)) 56 c.Assert(info, DeepEquals, s.StateInfo(c))
56 57
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 err = s.fixEnvironment() 436 err = s.fixEnvironment()
436 c.Assert(err, IsNil) 437 c.Assert(err, IsNil)
437 438
438 // create a third machine 439 // create a third machine
439 m, err = s.State.AddMachine() 440 m, err = s.State.AddMachine()
440 c.Assert(err, IsNil) 441 c.Assert(err, IsNil)
441 442
442 // the PA should create it using the new environment 443 // the PA should create it using the new environment
443 s.checkStartInstance(c, m) 444 s.checkStartInstance(c, m)
444 } 445 }
LEFTRIGHT

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