-
Notifications
You must be signed in to change notification settings - Fork 59
/
bundledir_test.go
58 lines (47 loc) · 1.5 KB
/
bundledir_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// Copyright 2014 Canonical Ltd.
// Licensed under the LGPLv3, see LICENCE file for details.
package charm_test
import (
"os"
"path/filepath"
"github.com/juju/testing"
gc "gopkg.in/check.v1"
"github.com/juju/charm/v12"
)
type BundleDirSuite struct {
testing.IsolationSuite
}
var _ = gc.Suite(&BundleDirSuite{})
func (s *BundleDirSuite) TestReadBundleDir(c *gc.C) {
path := bundleDirPath(c, "wordpress-simple")
dir, err := charm.ReadBundleDir(path)
c.Assert(err, gc.IsNil)
checkWordpressBundle(c, dir, path)
}
func (s *BundleDirSuite) TestReadBundleDirWithoutREADME(c *gc.C) {
path := cloneDir(c, bundleDirPath(c, "wordpress-simple"))
err := os.Remove(filepath.Join(path, "README.md"))
c.Assert(err, gc.IsNil)
dir, err := charm.ReadBundleDir(path)
c.Assert(err, gc.ErrorMatches, "cannot read README file: .*")
c.Assert(dir, gc.IsNil)
}
func (s *BundleDirSuite) TestArchiveTo(c *gc.C) {
baseDir := c.MkDir()
charmDir := cloneDir(c, bundleDirPath(c, "wordpress-simple"))
s.assertArchiveTo(c, baseDir, charmDir)
}
func (s *BundleDirSuite) assertArchiveTo(c *gc.C, baseDir, bundleDir string) {
dir, err := charm.ReadBundleDir(bundleDir)
c.Assert(err, gc.IsNil)
path := filepath.Join(baseDir, "archive.bundle")
file, err := os.Create(path)
c.Assert(err, gc.IsNil)
err = dir.ArchiveTo(file)
file.Close()
c.Assert(err, gc.IsNil)
archive, err := charm.ReadBundleArchive(path)
c.Assert(err, gc.IsNil)
c.Assert(archive.ReadMe(), gc.Equals, dir.ReadMe())
c.Assert(archive.Data(), gc.DeepEquals, dir.Data())
}