Index: cmd/jujud/bootstrap_test.go |
=== modified file 'cmd/jujud/bootstrap_test.go' |
--- cmd/jujud/bootstrap_test.go 2012-11-27 09:28:50 +0000 |
+++ cmd/jujud/bootstrap_test.go 2012-11-27 11:40:34 +0000 |
@@ -71,6 +71,7 @@ |
func (s *BootstrapSuite) TestSetMachineId(c *C) { |
args := []string{ |
"--state-servers", testing.MgoAddr, |
+ "--ca-cert", caCertFile, |
"--instance-id", "over9000", |
"--env-config", b64yaml{ |
"name": "dummyenv", |
@@ -103,6 +104,7 @@ |
func (s *BootstrapSuite) TestMachinerWorkers(c *C) { |
args := []string{ |
"--state-servers", testing.MgoAddr, |
+ "--ca-cert", caCertFile, |
"--instance-id", "over9000", |
"--env-config", b64yaml{ |
"name": "dummyenv", |
@@ -143,6 +145,7 @@ |
func (s *BootstrapSuite) TestInitialPassword(c *C) { |
args := []string{ |
"--state-servers", testing.MgoAddr, |
+ "--ca-cert", caCertFile, |
"--instance-id", "over9000", |
"--env-config", b64yaml{ |
"name": "dummyenv", |
@@ -209,8 +212,9 @@ |
func (s *BootstrapSuite) TestBase64Config(c *C) { |
for i, t := range base64ConfigTests { |
c.Logf("test %d", i) |
- args := []string{"--state-servers"} |
- args = append(args, testing.MgoAddr) |
+ var args []string |
+ args = append(args, "--state-servers", testing.MgoAddr) |
+ args = append(args, "--ca-cert", caCertFile) |
args = append(args, "--instance-id", "over9000") |
args = append(args, t.input...) |
cmd, err := initBootstrapCommand(args) |