OLD | NEW |
1 package charm_test | 1 package charm_test |
2 | 2 |
3 import ( | 3 import ( |
4 "archive/zip" | 4 "archive/zip" |
5 "bytes" | 5 "bytes" |
6 "fmt" | 6 "fmt" |
7 "io/ioutil" | 7 "io/ioutil" |
8 . "launchpad.net/gocheck" | 8 . "launchpad.net/gocheck" |
9 "launchpad.net/juju-core/charm" | 9 "launchpad.net/juju-core/charm" |
10 "launchpad.net/juju-core/log" | 10 "launchpad.net/juju-core/log" |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 path := filepath.Join(c.MkDir(), "bundle.charm") | 130 path := filepath.Join(c.MkDir(), "bundle.charm") |
131 file, err := os.Create(path) | 131 file, err := os.Create(path) |
132 c.Assert(err, IsNil) | 132 c.Assert(err, IsNil) |
133 err = dir.BundleTo(file) | 133 err = dir.BundleTo(file) |
134 file.Close() | 134 file.Close() |
135 c.Assert(err, IsNil) | 135 c.Assert(err, IsNil) |
136 | 136 |
137 tlog := c.GetTestLog() | 137 tlog := c.GetTestLog() |
138 for _, hook := range hooks { | 138 for _, hook := range hooks { |
139 fullpath := filepath.Join(dir.Path, "hooks", hook) | 139 fullpath := filepath.Join(dir.Path, "hooks", hook) |
140 » » exp := fmt.Sprintf(`^(.|\n)*WARNING: charm: making "%s" executab
le in charm(.|\n)*$`, fullpath) | 140 » » exp := fmt.Sprintf(`^(.|\n)*WARNING charm: making "%s" executabl
e in charm(.|\n)*$`, fullpath) |
141 c.Assert(tlog, Matches, exp, Commentf("hook %q was not made exec
utable", fullpath)) | 141 c.Assert(tlog, Matches, exp, Commentf("hook %q was not made exec
utable", fullpath)) |
142 } | 142 } |
143 | 143 |
144 // Expand it and check the hooks' permissions | 144 // Expand it and check the hooks' permissions |
145 // (But do not use ExpandTo(), just use the raw zip) | 145 // (But do not use ExpandTo(), just use the raw zip) |
146 f, err := os.Open(path) | 146 f, err := os.Open(path) |
147 c.Assert(err, IsNil) | 147 c.Assert(err, IsNil) |
148 defer f.Close() | 148 defer f.Close() |
149 fi, err := f.Stat() | 149 fi, err := f.Stat() |
150 c.Assert(err, IsNil) | 150 c.Assert(err, IsNil) |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 c.Assert(err, IsNil) | 252 c.Assert(err, IsNil) |
253 | 253 |
254 c.Assert(dir.Revision(), Equals, 1) | 254 c.Assert(dir.Revision(), Equals, 1) |
255 dir.SetDiskRevision(42) | 255 dir.SetDiskRevision(42) |
256 c.Assert(dir.Revision(), Equals, 42) | 256 c.Assert(dir.Revision(), Equals, 42) |
257 | 257 |
258 dir, err = charm.ReadDir(charmDir) | 258 dir, err = charm.ReadDir(charmDir) |
259 c.Assert(err, IsNil) | 259 c.Assert(err, IsNil) |
260 c.Assert(dir.Revision(), Equals, 42) | 260 c.Assert(dir.Revision(), Equals, 42) |
261 } | 261 } |
OLD | NEW |