LEFT | RIGHT |
(no file at all) | |
1 package testing | 1 package testing |
2 | 2 |
3 import ( | 3 import ( |
4 "fmt" | 4 "fmt" |
5 "io/ioutil" | 5 "io/ioutil" |
6 . "launchpad.net/gocheck" | 6 . "launchpad.net/gocheck" |
7 "launchpad.net/juju-core/charm" | 7 "launchpad.net/juju-core/charm" |
8 "launchpad.net/juju-core/environs" | 8 "launchpad.net/juju-core/environs" |
9 "launchpad.net/juju-core/environs/dummy" | 9 "launchpad.net/juju-core/environs/dummy" |
10 "launchpad.net/juju-core/juju" | 10 "launchpad.net/juju-core/juju" |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 dataDir := filepath.Join(s.RootDir, "/var/lib/juju") | 110 dataDir := filepath.Join(s.RootDir, "/var/lib/juju") |
111 err = os.MkdirAll(dataDir, 0777) | 111 err = os.MkdirAll(dataDir, 0777) |
112 c.Assert(err, IsNil) | 112 c.Assert(err, IsNil) |
113 | 113 |
114 err = os.Mkdir(filepath.Join(home, ".juju"), 0777) | 114 err = os.Mkdir(filepath.Join(home, ".juju"), 0777) |
115 c.Assert(err, IsNil) | 115 c.Assert(err, IsNil) |
116 | 116 |
117 err = ioutil.WriteFile(filepath.Join(home, ".juju", "environments.yaml")
, config, 0600) | 117 err = ioutil.WriteFile(filepath.Join(home, ".juju", "environments.yaml")
, config, 0600) |
118 c.Assert(err, IsNil) | 118 c.Assert(err, IsNil) |
119 | 119 |
| 120 err = ioutil.WriteFile(filepath.Join(home, ".juju", "dummyenv-cert.pem")
, []byte(testing.CACertPEM), 0666) |
| 121 c.Assert(err, IsNil) |
| 122 |
| 123 err = ioutil.WriteFile(filepath.Join(home, ".juju", "dummyenv-private-ke
y.pem"), []byte(testing.CAKeyPEM), 0600) |
| 124 c.Assert(err, IsNil) |
| 125 |
120 environ, err := environs.NewFromName("dummyenv") | 126 environ, err := environs.NewFromName("dummyenv") |
121 c.Assert(err, IsNil) | 127 c.Assert(err, IsNil) |
122 // sanity check we've got the correct environment. | 128 // sanity check we've got the correct environment. |
123 c.Assert(environ.Name(), Equals, "dummyenv") | 129 c.Assert(environ.Name(), Equals, "dummyenv") |
124 c.Assert(juju.Bootstrap(environ, false, []byte(testing.CACertPEM+testing
.CAKeyPEM)), IsNil) | 130 c.Assert(juju.Bootstrap(environ, false, []byte(testing.CACertPEM+testing
.CAKeyPEM)), IsNil) |
125 | 131 |
126 conn, err := juju.NewConnFromName("dummyenv") | 132 conn, err := juju.NewConnFromName("dummyenv") |
127 c.Assert(err, IsNil) | 133 c.Assert(err, IsNil) |
128 s.Conn = conn | 134 s.Conn = conn |
129 s.State = conn.State | 135 s.State = conn.State |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 func (s *JujuConnSuite) AddTestingCharm(c *C, name string) *state.Charm { | 176 func (s *JujuConnSuite) AddTestingCharm(c *C, name string) *state.Charm { |
171 ch := testing.Charms.Dir("series", name) | 177 ch := testing.Charms.Dir("series", name) |
172 ident := fmt.Sprintf("%s-%d", ch.Meta().Name, ch.Revision()) | 178 ident := fmt.Sprintf("%s-%d", ch.Meta().Name, ch.Revision()) |
173 curl := charm.MustParseURL("local:series/" + ident) | 179 curl := charm.MustParseURL("local:series/" + ident) |
174 repo, err := charm.InferRepository(curl, testing.Charms.Path) | 180 repo, err := charm.InferRepository(curl, testing.Charms.Path) |
175 c.Assert(err, IsNil) | 181 c.Assert(err, IsNil) |
176 sch, err := s.Conn.PutCharm(curl, repo, false) | 182 sch, err := s.Conn.PutCharm(curl, repo, false) |
177 c.Assert(err, IsNil) | 183 c.Assert(err, IsNil) |
178 return sch | 184 return sch |
179 } | 185 } |
LEFT | RIGHT |