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

Unified Diff: cmd/jujud/bootstrap_test.go

Issue 6842088: cmd/jujud: accept CA cert flag
Patch Set: cmd/jujud: accept CA cert flag Created 12 years, 4 months 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
« no previous file with comments | « cmd/jujud/bootstrap.go ('k') | cmd/jujud/main_test.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« no previous file with comments | « cmd/jujud/bootstrap.go ('k') | cmd/jujud/main_test.go » ('j') | no next file with comments »

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