forked from ungleich-public/cdist
++test integration
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
parent
c81a2925b8
commit
a8fc867834
2 changed files with 7 additions and 8 deletions
|
@ -30,9 +30,6 @@ cdist_commands=["banner", "config", "install"]
|
||||||
cdist_exec_path = os.path.abspath(
|
cdist_exec_path = os.path.abspath(
|
||||||
os.path.join(os.path.dirname(os.path.realpath(__file__)), "../../bin/cdist"))
|
os.path.join(os.path.dirname(os.path.realpath(__file__)), "../../bin/cdist"))
|
||||||
|
|
||||||
def exec():
|
|
||||||
print(cdist_exec_path)
|
|
||||||
|
|
||||||
#class UI(unittest.TestCase):
|
#class UI(unittest.TestCase):
|
||||||
# def test_banner(self):
|
# def test_banner(self):
|
||||||
# self.assertEqual(subprocess.call([cdist_exec_path, "banner"]), 0)
|
# self.assertEqual(subprocess.call([cdist_exec_path, "banner"]), 0)
|
||||||
|
|
|
@ -29,20 +29,22 @@ sys.path.insert(0, os.path.abspath(
|
||||||
os.path.join(os.path.dirname(os.path.realpath(__file__)), '../lib')))
|
os.path.join(os.path.dirname(os.path.realpath(__file__)), '../lib')))
|
||||||
|
|
||||||
import cdist.config
|
import cdist.config
|
||||||
|
import cdist.test
|
||||||
cdist_exec_path = os.path.abspath(
|
|
||||||
os.path.join(os.path.dirname(os.path.realpath(__file__)), "bin/cdist"))
|
|
||||||
|
|
||||||
|
|
||||||
class Install(unittest.TestCase):
|
class Install(unittest.TestCase):
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
self.temp_dir = tempfile.mkdtemp()
|
self.temp_dir = tempfile.mkdtemp()
|
||||||
self.init_manifest = os.path.join(self.temp_dir, "manifest")
|
self.init_manifest = os.path.join(self.temp_dir, "manifest")
|
||||||
|
|
||||||
|
os.environ['__remote_exec'] = "ssh -o User=root -q"
|
||||||
|
os.environ['__remote_copy'] = "scp -o User=root -q"
|
||||||
|
|
||||||
self.config = cdist.config.Config("localhost",
|
self.config = cdist.config.Config("localhost",
|
||||||
initial_manifest=self.init_manifest,
|
initial_manifest=self.init_manifest,
|
||||||
exec_path=cdist_exec_path)
|
exec_path=cdist.test.cdist_exec_path)
|
||||||
self.config.link_emulator()
|
self.config.link_emulator()
|
||||||
|
|
||||||
|
|
||||||
### NEW FOR INSTALL ############################################################
|
### NEW FOR INSTALL ############################################################
|
||||||
|
|
||||||
def test_explorer_ran(self):
|
def test_explorer_ran(self):
|
||||||
|
|
Loading…
Reference in a new issue