LEFT | RIGHT |
(no file at all) | |
1 package main | 1 package main |
2 | 2 |
3 import ( | 3 import ( |
| 4 "io/ioutil" |
4 "os" | 5 "os" |
5 "reflect" | 6 "reflect" |
6 | 7 |
7 "launchpad.net/gnuflag" | 8 "launchpad.net/gnuflag" |
8 . "launchpad.net/gocheck" | 9 . "launchpad.net/gocheck" |
9 "launchpad.net/juju-core/cmd" | 10 "launchpad.net/juju-core/cmd" |
10 "launchpad.net/juju-core/environs/dummy" | 11 "launchpad.net/juju-core/environs/dummy" |
11 "launchpad.net/juju-core/juju/testing" | 12 "launchpad.net/juju-core/juju/testing" |
12 ) | 13 ) |
13 | 14 |
14 type CmdSuite struct { | 15 type CmdSuite struct { |
15 testing.JujuConnSuite | 16 testing.JujuConnSuite |
| 17 home fakeHome |
16 } | 18 } |
17 | 19 |
18 var _ = Suite(&CmdSuite{}) | 20 var _ = Suite(&CmdSuite{}) |
19 | 21 |
20 var envConfig = ` | 22 var envConfig = ` |
21 default: | 23 default: |
22 peckham | 24 peckham |
23 environments: | 25 environments: |
24 peckham: | 26 peckham: |
25 type: dummy | 27 type: dummy |
26 state-server: false | 28 state-server: false |
27 admin-secret: arble | 29 admin-secret: arble |
28 authorized-keys: i-am-a-key | 30 authorized-keys: i-am-a-key |
29 walthamstow: | 31 walthamstow: |
30 type: dummy | 32 type: dummy |
31 state-server: false | 33 state-server: false |
32 authorized-keys: i-am-a-key | 34 authorized-keys: i-am-a-key |
33 brokenenv: | 35 brokenenv: |
34 type: dummy | 36 type: dummy |
35 broken: Bootstrap Destroy | 37 broken: Bootstrap Destroy |
36 state-server: false | 38 state-server: false |
37 authorized-keys: i-am-a-key | 39 authorized-keys: i-am-a-key |
38 ` | 40 ` |
39 | 41 |
40 func (s *CmdSuite) SetUpTest(c *C) { | 42 func (s *CmdSuite) SetUpTest(c *C) { |
41 s.JujuConnSuite.SetUpTest(c) | 43 s.JujuConnSuite.SetUpTest(c) |
42 » s.JujuConnSuite.WriteConfig(envConfig) | 44 » s.home = makeFakeHome(c, "peckham", "walthamstow", "brokenenv") |
| 45 » err := ioutil.WriteFile(homePath(".juju", "environments.yaml"), []byte(e
nvConfig), 0666) |
| 46 » c.Assert(err, IsNil) |
| 47 } |
| 48 |
| 49 func (s *CmdSuite) TearDownTest(c *C) { |
| 50 » s.home.restore() |
| 51 » s.JujuConnSuite.TearDownTest(c) |
43 } | 52 } |
44 | 53 |
45 func newFlagSet() *gnuflag.FlagSet { | 54 func newFlagSet() *gnuflag.FlagSet { |
46 return gnuflag.NewFlagSet("", gnuflag.ContinueOnError) | 55 return gnuflag.NewFlagSet("", gnuflag.ContinueOnError) |
47 } | 56 } |
48 | 57 |
49 // testInit checks that a command initialises correctly | 58 // testInit checks that a command initialises correctly |
50 // with the given set of arguments. | 59 // with the given set of arguments. |
51 func testInit(c *C, com cmd.Command, args []string, errPat string) { | 60 func testInit(c *C, com cmd.Command, args []string, errPat string) { |
52 err := com.Init(newFlagSet(), args) | 61 err := com.Init(newFlagSet(), args) |
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 } | 356 } |
348 | 357 |
349 func (*CmdSuite) TestRemoveUnitCommandInit(c *C) { | 358 func (*CmdSuite) TestRemoveUnitCommandInit(c *C) { |
350 // missing args | 359 // missing args |
351 _, err := initRemoveUnitCommand() | 360 _, err := initRemoveUnitCommand() |
352 c.Assert(err, ErrorMatches, "no service units specified") | 361 c.Assert(err, ErrorMatches, "no service units specified") |
353 // not a unit | 362 // not a unit |
354 _, err = initRemoveUnitCommand("seven/nine") | 363 _, err = initRemoveUnitCommand("seven/nine") |
355 c.Assert(err, ErrorMatches, "invalid service unit name: \"seven/nine\"") | 364 c.Assert(err, ErrorMatches, "invalid service unit name: \"seven/nine\"") |
356 } | 365 } |
LEFT | RIGHT |