LEFT | RIGHT |
(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 Loading... |
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 Loading... |
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 } |
LEFT | RIGHT |