func (s *DeployerSuite) TestInstall(c *C) { // Install. d := charm.NewDeployer(filepath.Join(c.MkDir(), "deployer")) bun := s.bundle(c, func(path string) { err := ioutil.WriteFile(filepath.Join(path, "some-file"), []byte("hello"), 0644) c.Assert(err, IsNil) }) err := d.Stage(bun, corecharm.MustParseURL("cs:s/c-1")) c.Assert(err, IsNil) target := charm.NewGitDir(filepath.Join(c.MkDir(), "target")) err = d.Deploy(target) c.Assert(err, IsNil) // Check content. data, err := ioutil.ReadFile(filepath.Join(target.Path(), "some-file")) c.Assert(err, IsNil) c.Assert(string(data), Equals, "hello") url, err := charm.ReadCharmURL(target) c.Assert(err, IsNil) c.Assert(url, DeepEquals, corecharm.MustParseURL("cs:s/c-1")) lines, err := target.Log() c.Assert(err, IsNil) c.Assert(lines, HasLen, 2) c.Assert(lines[0], Matches, `[0-9a-f]{7} Deployed charm "cs:s/c-1".`) c.Assert(lines[1], Matches, `[0-9a-f]{7} Imported charm "cs:s/c-1" from ".*".`) }
func (u *Uniter) init(name string) (err error) { defer trivial.ErrorContextf(&err, "failed to initialize uniter for unit %q", name) u.unit, err = u.st.Unit(name) if err != nil { return err } ename := u.unit.EntityName() u.toolsDir = environs.AgentToolsDir(u.dataDir, ename) if err := EnsureJujucSymlinks(u.toolsDir); err != nil { return err } u.baseDir = filepath.Join(u.dataDir, "agents", ename) u.relationsDir = filepath.Join(u.baseDir, "state", "relations") if err := os.MkdirAll(u.relationsDir, 0755); err != nil { return err } u.service, err = u.st.Service(u.unit.ServiceName()) if err != nil { return err } u.relationers = map[int]*Relationer{} u.relationHooks = make(chan hook.Info) u.charm = charm.NewGitDir(filepath.Join(u.baseDir, "charm")) u.bundles = charm.NewBundlesDir(filepath.Join(u.baseDir, "state", "bundles")) u.deployer = charm.NewDeployer(filepath.Join(u.baseDir, "state", "deployer")) u.sf = NewStateFile(filepath.Join(u.baseDir, "state", "uniter")) u.rand = rand.New(rand.NewSource(time.Now().Unix())) return nil }
func (s *GitDirSuite) TestAddCommitPullRevert(c *C) { target := charm.NewGitDir(c.MkDir()) err := target.Init() c.Assert(err, IsNil) err = ioutil.WriteFile(filepath.Join(target.Path(), "initial"), []byte("initial"), 0644) c.Assert(err, IsNil) err = charm.WriteCharmURL(target, curl) c.Assert(err, IsNil) err = target.AddAll() c.Assert(err, IsNil) dirty, err := target.Dirty() c.Assert(err, IsNil) c.Assert(dirty, Equals, true) err = target.Commitf("initial") c.Assert(err, IsNil) dirty, err = target.Dirty() c.Assert(err, IsNil) c.Assert(dirty, Equals, false) source := newRepo(c) err = target.Pull(source) c.Assert(err, IsNil) url, err := charm.ReadCharmURL(target) c.Assert(err, IsNil) c.Assert(url, DeepEquals, curl) fi, err := os.Stat(filepath.Join(target.Path(), "some-dir")) c.Assert(err, IsNil) c.Assert(fi, checkers.Satisfies, os.FileInfo.IsDir) data, err := ioutil.ReadFile(filepath.Join(target.Path(), "some-file")) c.Assert(err, IsNil) c.Assert(string(data), Equals, "hello") dirty, err = target.Dirty() c.Assert(err, IsNil) c.Assert(dirty, Equals, false) err = ioutil.WriteFile(filepath.Join(target.Path(), "another-file"), []byte("blah"), 0644) c.Assert(err, IsNil) dirty, err = target.Dirty() c.Assert(err, IsNil) c.Assert(dirty, Equals, true) err = source.AddAll() c.Assert(err, IsNil) dirty, err = target.Dirty() c.Assert(err, IsNil) c.Assert(dirty, Equals, true) err = target.Revert() c.Assert(err, IsNil) _, err = os.Stat(filepath.Join(target.Path(), "some-file")) c.Assert(err, checkers.Satisfies, os.IsNotExist) _, err = os.Stat(filepath.Join(target.Path(), "some-dir")) c.Assert(err, checkers.Satisfies, os.IsNotExist) data, err = ioutil.ReadFile(filepath.Join(target.Path(), "initial")) c.Assert(err, IsNil) c.Assert(string(data), Equals, "initial") dirty, err = target.Dirty() c.Assert(err, IsNil) c.Assert(dirty, Equals, false) }
func newRepo(c *C) *charm.GitDir { repo := charm.NewGitDir(c.MkDir()) err := repo.Init() c.Assert(err, IsNil) err = os.Mkdir(filepath.Join(repo.Path(), "some-dir"), 0755) c.Assert(err, IsNil) err = ioutil.WriteFile(filepath.Join(repo.Path(), "some-file"), []byte("hello"), 0644) c.Assert(err, IsNil) err = repo.AddAll() c.Assert(err, IsNil) err = repo.Commitf("im in ur repo committin ur %s", "files") c.Assert(err, IsNil) return repo }
func (s *GitDirSuite) TestConflictRevert(c *C) { source := newRepo(c) updated, err := source.Clone(c.MkDir()) c.Assert(err, IsNil) err = ioutil.WriteFile(filepath.Join(updated.Path(), "some-dir"), []byte("hello"), 0644) c.Assert(err, IsNil) err = updated.Snapshotf("potential conflict src") c.Assert(err, IsNil) conflicted, err := updated.Conflicted() c.Assert(err, IsNil) c.Assert(conflicted, Equals, false) target := charm.NewGitDir(c.MkDir()) err = target.Init() c.Assert(err, IsNil) err = target.Pull(source) c.Assert(err, IsNil) err = ioutil.WriteFile(filepath.Join(target.Path(), "some-dir", "conflicting-file"), []byte("hello"), 0644) c.Assert(err, IsNil) err = target.Snapshotf("potential conflict dst") c.Assert(err, IsNil) conflicted, err = target.Conflicted() c.Assert(err, IsNil) c.Assert(conflicted, Equals, false) err = target.Pull(updated) c.Assert(err, Equals, charm.ErrConflict) conflicted, err = target.Conflicted() c.Assert(err, IsNil) c.Assert(conflicted, Equals, true) dirty, err := target.Dirty() c.Assert(err, IsNil) c.Assert(dirty, Equals, true) err = target.Revert() c.Assert(err, IsNil) conflicted, err = target.Conflicted() c.Assert(err, IsNil) c.Assert(conflicted, Equals, false) dirty, err = target.Dirty() c.Assert(err, IsNil) c.Assert(dirty, Equals, false) }
func (s *DeployerSuite) TestUpgrade(c *C) { // Install. d := charm.NewDeployer(filepath.Join(c.MkDir(), "deployer")) bun1 := s.bundle(c, func(path string) { err := ioutil.WriteFile(filepath.Join(path, "some-file"), []byte("hello"), 0644) c.Assert(err, IsNil) err = os.Symlink("./some-file", filepath.Join(path, "a-symlink")) c.Assert(err, IsNil) }) err := d.Stage(bun1, corecharm.MustParseURL("cs:s/c-1")) c.Assert(err, IsNil) target := charm.NewGitDir(filepath.Join(c.MkDir(), "target")) err = d.Deploy(target) c.Assert(err, IsNil) // Upgrade. bun2 := s.bundle(c, func(path string) { err := ioutil.WriteFile(filepath.Join(path, "some-file"), []byte("goodbye"), 0644) c.Assert(err, IsNil) err = ioutil.WriteFile(filepath.Join(path, "a-symlink"), []byte("not any more!"), 0644) c.Assert(err, IsNil) }) err = d.Stage(bun2, corecharm.MustParseURL("cs:s/c-2")) c.Assert(err, IsNil) err = d.Deploy(target) c.Assert(err, IsNil) // Check content. data, err := ioutil.ReadFile(filepath.Join(target.Path(), "some-file")) c.Assert(err, IsNil) c.Assert(string(data), Equals, "goodbye") data, err = ioutil.ReadFile(filepath.Join(target.Path(), "a-symlink")) c.Assert(err, IsNil) c.Assert(string(data), Equals, "not any more!") url, err := charm.ReadCharmURL(target) c.Assert(err, IsNil) c.Assert(url, DeepEquals, corecharm.MustParseURL("cs:s/c-2")) lines, err := target.Log() c.Assert(err, IsNil) c.Assert(lines, HasLen, 5) c.Assert(lines[0], Matches, `[0-9a-f]{7} Upgraded charm to "cs:s/c-2".`) }
func (s *GitDirSuite) TestCreate(c *C) { base := c.MkDir() repo := charm.NewGitDir(filepath.Join(base, "repo")) exists, err := repo.Exists() c.Assert(err, IsNil) c.Assert(exists, Equals, false) err = ioutil.WriteFile(repo.Path(), nil, 0644) c.Assert(err, IsNil) _, err = repo.Exists() c.Assert(err, ErrorMatches, `".*/repo" is not a directory`) err = os.Remove(repo.Path()) c.Assert(err, IsNil) err = os.Chmod(base, 0555) c.Assert(err, IsNil) defer os.Chmod(base, 0755) err = repo.Init() c.Assert(err, ErrorMatches, ".* permission denied") exists, err = repo.Exists() c.Assert(err, IsNil) c.Assert(exists, Equals, false) err = os.Chmod(base, 0755) c.Assert(err, IsNil) err = repo.Init() c.Assert(err, IsNil) exists, err = repo.Exists() c.Assert(err, IsNil) c.Assert(exists, Equals, true) _, err = charm.ReadCharmURL(repo) c.Assert(err, checkers.Satisfies, os.IsNotExist) err = repo.Init() c.Assert(err, IsNil) }
func (s *DeployerSuite) TestConflict(c *C) { // Install. d := charm.NewDeployer(filepath.Join(c.MkDir(), "deployer")) bun1 := s.bundle(c, func(path string) { err := ioutil.WriteFile(filepath.Join(path, "some-file"), []byte("hello"), 0644) c.Assert(err, IsNil) }) err := d.Stage(bun1, corecharm.MustParseURL("cs:s/c-1")) c.Assert(err, IsNil) target := charm.NewGitDir(filepath.Join(c.MkDir(), "target")) err = d.Deploy(target) c.Assert(err, IsNil) // Mess up target. err = ioutil.WriteFile(filepath.Join(target.Path(), "some-file"), []byte("mu!"), 0644) c.Assert(err, IsNil) // Upgrade. bun2 := s.bundle(c, func(path string) { err := ioutil.WriteFile(filepath.Join(path, "some-file"), []byte("goodbye"), 0644) c.Assert(err, IsNil) }) err = d.Stage(bun2, corecharm.MustParseURL("cs:s/c-2")) c.Assert(err, IsNil) err = d.Deploy(target) c.Assert(err, Equals, charm.ErrConflict) // Check state. conflicted, err := target.Conflicted() c.Assert(err, IsNil) c.Assert(conflicted, Equals, true) // Revert and check initial content. err = target.Revert() c.Assert(err, IsNil) data, err := ioutil.ReadFile(filepath.Join(target.Path(), "some-file")) c.Assert(err, IsNil) c.Assert(string(data), Equals, "mu!") conflicted, err = target.Conflicted() c.Assert(err, IsNil) c.Assert(conflicted, Equals, false) // Try to upgrade again. err = d.Deploy(target) c.Assert(err, Equals, charm.ErrConflict) conflicted, err = target.Conflicted() c.Assert(err, IsNil) c.Assert(conflicted, Equals, true) // And again. err = d.Deploy(target) c.Assert(err, Equals, charm.ErrConflict) conflicted, err = target.Conflicted() c.Assert(err, IsNil) c.Assert(conflicted, Equals, true) // Manually resolve, and commit. err = ioutil.WriteFile(filepath.Join(target.Path(), "some-file"), []byte("nu!"), 0644) c.Assert(err, IsNil) err = target.Snapshotf("user resolved conflicts") c.Assert(err, IsNil) conflicted, err = target.Conflicted() c.Assert(err, IsNil) c.Assert(conflicted, Equals, false) // Try a final upgrade to the same charm and check it doesn't write anything // except the upgrade log line. err = d.Deploy(target) c.Assert(err, IsNil) data, err = ioutil.ReadFile(filepath.Join(target.Path(), "some-file")) c.Assert(err, IsNil) c.Assert(string(data), Equals, "nu!") conflicted, err = target.Conflicted() c.Assert(err, IsNil) c.Assert(conflicted, Equals, false) lines, err := target.Log() c.Assert(err, IsNil) c.Assert(lines[0], Matches, `[0-9a-f]{7} Upgraded charm to "cs:s/c-2".`) }
func (s *DeployerSuite) TestUnsetCharm(c *C) { d := charm.NewDeployer(filepath.Join(c.MkDir(), "deployer")) err := d.Deploy(charm.NewGitDir(c.MkDir())) c.Assert(err, ErrorMatches, "charm deployment failed: no charm set") }