Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(25)

Side by Side Diff: provider/local/prereqs_test.go

Issue 69600043: mongo stuff to agent/mongod, add EnsureMongoServer
Patch Set: mongo stuff to agent/mongod, add EnsureMongoServer Created 11 years, 1 month ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « provider/local/prereqs.go ('k') | upstart/service.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 Canonical Ltd. 1 // Copyright 2013 Canonical Ltd.
2 // Licensed under the AGPLv3, see LICENCE file for details. 2 // Licensed under the AGPLv3, see LICENCE file for details.
3 3
4 package local 4 package local
5 5
6 import ( 6 import (
7 "fmt" 7 "fmt"
8 "io/ioutil" 8 "io/ioutil"
9 "os" 9 "os"
10 "path/filepath" 10 "path/filepath"
11 11
12 gc "launchpad.net/gocheck" 12 gc "launchpad.net/gocheck"
13 13
14 "launchpad.net/juju-core/agent/mongo"
14 "launchpad.net/juju-core/instance" 15 "launchpad.net/juju-core/instance"
15 "launchpad.net/juju-core/testing/testbase" 16 "launchpad.net/juju-core/testing/testbase"
16 "launchpad.net/juju-core/upstart"
17 "launchpad.net/juju-core/version" 17 "launchpad.net/juju-core/version"
18 ) 18 )
19 19
20 type prereqsSuite struct { 20 type prereqsSuite struct {
21 testbase.LoggingSuite 21 testbase.LoggingSuite
22 tmpdir string 22 tmpdir string
23 testMongodPath string 23 testMongodPath string
24 } 24 }
25 25
26 var _ = gc.Suite(&prereqsSuite{}) 26 var _ = gc.Suite(&prereqsSuite{})
(...skipping 10 matching lines...) Expand all
37 // found. 37 // found.
38 lxclsPath = "/bin/true" 38 lxclsPath = "/bin/true"
39 } 39 }
40 40
41 func (s *prereqsSuite) SetUpTest(c *gc.C) { 41 func (s *prereqsSuite) SetUpTest(c *gc.C) {
42 s.LoggingSuite.SetUpTest(c) 42 s.LoggingSuite.SetUpTest(c)
43 s.tmpdir = c.MkDir() 43 s.tmpdir = c.MkDir()
44 s.testMongodPath = filepath.Join(s.tmpdir, "mongod") 44 s.testMongodPath = filepath.Join(s.tmpdir, "mongod")
45 lxclsPath = filepath.Join(s.tmpdir, "lxc-ls") 45 lxclsPath = filepath.Join(s.tmpdir, "lxc-ls")
46 s.PatchEnvironment("PATH", s.tmpdir) 46 s.PatchEnvironment("PATH", s.tmpdir)
47 47 » s.PatchValue(&mongo.JujuMongodPath, c.MkDir())
48 » upstart.JujuMongodPath = "/somewhere/that/doesnt/exist"
49 48
50 os.Setenv("JUJUTEST_LSB_RELEASE_ID", "Ubuntu") 49 os.Setenv("JUJUTEST_LSB_RELEASE_ID", "Ubuntu")
51 err := ioutil.WriteFile(filepath.Join(s.tmpdir, "lsb_release"), []byte(l sbrelease), 0777) 50 err := ioutil.WriteFile(filepath.Join(s.tmpdir, "lsb_release"), []byte(l sbrelease), 0777)
52 c.Assert(err, gc.IsNil) 51 c.Assert(err, gc.IsNil)
53 } 52 }
54 53
55 func (s *prereqsSuite) TearDownTest(c *gc.C) { 54 func (s *prereqsSuite) TearDownTest(c *gc.C) {
56 s.testMongodPath = "" 55 s.testMongodPath = ""
57 lxclsPath = "/bin/true" 56 lxclsPath = "/bin/true"
58 s.LoggingSuite.TearDownTest(c) 57 s.LoggingSuite.TearDownTest(c)
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 os.Setenv("JUJUTEST_LSB_RELEASE_ID", "NotUbuntu") 161 os.Setenv("JUJUTEST_LSB_RELEASE_ID", "NotUbuntu")
163 err = VerifyPrerequisites(instance.LXC) 162 err = VerifyPrerequisites(instance.LXC)
164 c.Assert(err, gc.ErrorMatches, "(.|\n)*Linux Containers \\(LXC\\) usersp ace tools must be installed(.|\n)*") 163 c.Assert(err, gc.ErrorMatches, "(.|\n)*Linux Containers \\(LXC\\) usersp ace tools must be installed(.|\n)*")
165 c.Assert(err, gc.Not(gc.ErrorMatches), "(.|\n)*apt-get install(.|\n)*") 164 c.Assert(err, gc.Not(gc.ErrorMatches), "(.|\n)*apt-get install(.|\n)*")
166 165
167 err = ioutil.WriteFile(lxclsPath, nil, 0777) 166 err = ioutil.WriteFile(lxclsPath, nil, 0777)
168 c.Assert(err, gc.IsNil) 167 c.Assert(err, gc.IsNil)
169 err = VerifyPrerequisites(instance.LXC) 168 err = VerifyPrerequisites(instance.LXC)
170 c.Assert(err, gc.IsNil) 169 c.Assert(err, gc.IsNil)
171 } 170 }
OLDNEW
« no previous file with comments | « provider/local/prereqs.go ('k') | upstart/service.go » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b