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