fix test cdist.test.config_install.ConfigInstallRunTestCase
Signed-off-by: Nico Schottelius <nico@bento.schottelius.org>
This commit is contained in:
parent
b3cf339d06
commit
8298bb0bf5
3 changed files with 21 additions and 14 deletions
|
@ -117,7 +117,6 @@ class ConfigInstall(object):
|
||||||
try:
|
try:
|
||||||
local = cdist.exec.local.Local(
|
local = cdist.exec.local.Local(
|
||||||
target_host=host,
|
target_host=host,
|
||||||
exec_path=sys.argv[0],
|
|
||||||
initial_manifest=args.manifest,
|
initial_manifest=args.manifest,
|
||||||
out_path=args.out_path,
|
out_path=args.out_path,
|
||||||
add_conf_dirs=args.conf_dir)
|
add_conf_dirs=args.conf_dir)
|
||||||
|
|
|
@ -43,12 +43,20 @@ class Remote(object):
|
||||||
Directly accessing the remote side from python code is a bug.
|
Directly accessing the remote side from python code is a bug.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
def __init__(self, target_host, remote_exec, remote_copy):
|
def __init__(self,
|
||||||
|
target_host,
|
||||||
|
remote_exec,
|
||||||
|
remote_copy,
|
||||||
|
base_path=None):
|
||||||
self.target_host = target_host
|
self.target_host = target_host
|
||||||
self.base_path = os.environ.get('__cdist_remote_out_dir', "/var/lib/cdist")
|
|
||||||
self._exec = remote_exec
|
self._exec = remote_exec
|
||||||
self._copy = remote_copy
|
self._copy = remote_copy
|
||||||
|
|
||||||
|
if base_path:
|
||||||
|
self.base_path = base_path
|
||||||
|
else:
|
||||||
|
self.base_path = "/var/lib/cdist"
|
||||||
|
|
||||||
self.conf_path = os.path.join(self.base_path, "conf")
|
self.conf_path = os.path.join(self.base_path, "conf")
|
||||||
self.object_path = os.path.join(self.base_path, "object")
|
self.object_path = os.path.join(self.base_path, "object")
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,6 @@ from cdist import test
|
||||||
from cdist import core
|
from cdist import core
|
||||||
|
|
||||||
import cdist
|
import cdist
|
||||||
import cdist.context
|
|
||||||
import cdist.config
|
import cdist.config
|
||||||
import cdist.core.cdist_type
|
import cdist.core.cdist_type
|
||||||
import cdist.core.cdist_object
|
import cdist.core.cdist_object
|
||||||
|
@ -49,22 +48,23 @@ class ConfigInstallRunTestCase(test.CdistTestCase):
|
||||||
self.temp_dir = self.mkdtemp()
|
self.temp_dir = self.mkdtemp()
|
||||||
|
|
||||||
self.out_dir = os.path.join(self.temp_dir, "out")
|
self.out_dir = os.path.join(self.temp_dir, "out")
|
||||||
self.remote_out_dir = os.path.join(self.temp_dir, "remote")
|
os.mkdir(self.out_dir)
|
||||||
|
self.local = cdist.exec.local.Local(
|
||||||
|
target_host=self.target_host,
|
||||||
|
out_path=self.out_dir)
|
||||||
|
|
||||||
os.environ['__cdist_out_dir'] = self.out_dir
|
self.remote_dir = os.path.join(self.temp_dir, "remote")
|
||||||
os.environ['__cdist_remote_out_dir'] = self.remote_out_dir
|
os.mkdir(self.remote_dir)
|
||||||
|
self.remote = cdist.exec.remote.Remote(
|
||||||
self.context = cdist.context.Context(
|
|
||||||
target_host=self.target_host,
|
target_host=self.target_host,
|
||||||
remote_copy=self.remote_copy,
|
remote_copy=self.remote_copy,
|
||||||
remote_exec=self.remote_exec,
|
remote_exec=self.remote_exec,
|
||||||
exec_path=test.cdist_exec_path,
|
base_path=self.remote_dir)
|
||||||
debug=True)
|
|
||||||
|
|
||||||
self.context.local.object_path = object_base_path
|
self.local.object_path = object_base_path
|
||||||
self.context.local.type_path = type_base_path
|
self.local.type_path = type_base_path
|
||||||
|
|
||||||
self.config = cdist.config.Config(self.context)
|
self.config = cdist.config.Config(self.local, self.remote)
|
||||||
|
|
||||||
self.objects = list(core.CdistObject.list_objects(object_base_path, type_base_path))
|
self.objects = list(core.CdistObject.list_objects(object_base_path, type_base_path))
|
||||||
self.object_index = dict((o.name, o) for o in self.objects)
|
self.object_index = dict((o.name, o) for o in self.objects)
|
||||||
|
|
Loading…
Reference in a new issue