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

Delta Between Two Patch Sets: environs/ec2/config_test.go

Issue 6850087: environs/config: make CA cert optional
Left Patch Set: environs/config: make CA cert optional Created 12 years, 4 months ago
Right Patch Set: environs/config: make CA cert optional Created 12 years, 4 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 | « environs/dummy/environs_test.go ('k') | environs/ec2/live_test.go » ('j') | 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 ec2 1 package ec2
2 2
3 import ( 3 import (
4 "io/ioutil" 4 "io/ioutil"
5 "launchpad.net/goamz/aws" 5 "launchpad.net/goamz/aws"
6 . "launchpad.net/gocheck" 6 . "launchpad.net/gocheck"
7 "launchpad.net/goyaml" 7 "launchpad.net/goyaml"
8 "launchpad.net/juju-core/environs" 8 "launchpad.net/juju-core/environs"
9 "launchpad.net/juju-core/environs/config" 9 "launchpad.net/juju-core/environs/config"
10 "launchpad.net/juju-core/testing"
10 "os" 11 "os"
11 "path/filepath" 12 "path/filepath"
12 "strings" 13 "strings"
13 ) 14 )
14 15
15 // Use local suite since this file lives in the ec2 package 16 // Use local suite since this file lives in the ec2 package
16 // for testing internals. 17 // for testing internals.
17 type ConfigSuite struct { 18 type ConfigSuite struct {
18 savedHome, savedAccessKey, savedSecretKey string 19 savedHome, savedAccessKey, savedSecretKey string
19 } 20 }
(...skipping 22 matching lines...) Expand all
42 firewallMode config.FirewallMode 43 firewallMode config.FirewallMode
43 err string 44 err string
44 } 45 }
45 46
46 type attrs map[string]interface{} 47 type attrs map[string]interface{}
47 48
48 func (t configTest) check(c *C) { 49 func (t configTest) check(c *C) {
49 envs := attrs{ 50 envs := attrs{
50 "environments": attrs{ 51 "environments": attrs{
51 "testenv": attrs{ 52 "testenv": attrs{
52 » » » » "type": "ec2", 53 » » » » "type": "ec2",
54 » » » » "ca-cert": testing.CACertPEM,
55 » » » » "ca-private-key": testing.CAKeyPEM,
53 }, 56 },
54 }, 57 },
55 } 58 }
56 testenv := envs["environments"].(attrs)["testenv"].(attrs) 59 testenv := envs["environments"].(attrs)["testenv"].(attrs)
57 for k, v := range t.config { 60 for k, v := range t.config {
58 testenv[k] = v 61 testenv[k] = v
59 } 62 }
60 if _, ok := testenv["control-bucket"]; !ok { 63 if _, ok := testenv["control-bucket"]; !ok {
61 testenv["control-bucket"] = "x" 64 testenv["control-bucket"] = "x"
62 } 65 }
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 } 266 }
264 } 267 }
265 268
266 func (s *ConfigSuite) TestMissingAuth(c *C) { 269 func (s *ConfigSuite) TestMissingAuth(c *C) {
267 os.Setenv("AWS_ACCESS_KEY_ID", "") 270 os.Setenv("AWS_ACCESS_KEY_ID", "")
268 os.Setenv("AWS_SECRET_ACCESS_KEY", "") 271 os.Setenv("AWS_SECRET_ACCESS_KEY", "")
269 test := configTests[0] 272 test := configTests[0]
270 test.err = "environment has no access-key or secret-key" 273 test.err = "environment has no access-key or secret-key"
271 test.check(c) 274 test.check(c)
272 } 275 }
LEFTRIGHT

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