fix all tests besides one
Signed-off-by: Nico Schottelius <nico@freiheit.schottelius.org>
This commit is contained in:
parent
d08c29b581
commit
b51e9daccc
1 changed files with 21 additions and 6 deletions
|
@ -23,6 +23,7 @@
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import shutil
|
import shutil
|
||||||
|
import tempfile
|
||||||
|
|
||||||
from cdist import test
|
from cdist import test
|
||||||
from cdist import core
|
from cdist import core
|
||||||
|
@ -35,10 +36,14 @@ import cdist.core.cdist_object
|
||||||
import os.path as op
|
import os.path as op
|
||||||
my_dir = op.abspath(op.dirname(__file__))
|
my_dir = op.abspath(op.dirname(__file__))
|
||||||
fixtures = op.join(my_dir, 'fixtures')
|
fixtures = op.join(my_dir, 'fixtures')
|
||||||
object_base_path = op.join(fixtures, 'object')
|
|
||||||
type_base_path = op.join(fixtures, 'type')
|
type_base_path = op.join(fixtures, 'type')
|
||||||
add_conf_dir = op.join(fixtures, 'conf')
|
add_conf_dir = op.join(fixtures, 'conf')
|
||||||
|
|
||||||
|
expected_object_names = sorted([
|
||||||
|
'__first/man',
|
||||||
|
'__second/on-the',
|
||||||
|
'__third/moon'])
|
||||||
|
|
||||||
class ConfigRunTestCase(test.CdistTestCase):
|
class ConfigRunTestCase(test.CdistTestCase):
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
|
@ -54,6 +59,20 @@ class ConfigRunTestCase(test.CdistTestCase):
|
||||||
target_host=self.target_host,
|
target_host=self.target_host,
|
||||||
base_path=self.local_dir)
|
base_path=self.local_dir)
|
||||||
|
|
||||||
|
# Setup test objects
|
||||||
|
self.object_base_path = op.join(self.temp_dir, 'object')
|
||||||
|
|
||||||
|
self.objects = []
|
||||||
|
for cdist_object_name in expected_object_names:
|
||||||
|
cdist_type, cdist_object_id = cdist_object_name.split("/", 1)
|
||||||
|
cdist_object = core.CdistObject(core.CdistType(type_base_path, cdist_type), self.object_base_path,
|
||||||
|
self.local.object_marker_name, cdist_object_id)
|
||||||
|
cdist_object.create()
|
||||||
|
self.objects.append(cdist_object)
|
||||||
|
|
||||||
|
self.object_index = dict((o.name, o) for o in self.objects)
|
||||||
|
self.object_names = [o.name for o in self.objects]
|
||||||
|
|
||||||
self.remote_dir = os.path.join(self.temp_dir, "remote")
|
self.remote_dir = os.path.join(self.temp_dir, "remote")
|
||||||
os.mkdir(self.remote_dir)
|
os.mkdir(self.remote_dir)
|
||||||
self.remote = cdist.exec.remote.Remote(
|
self.remote = cdist.exec.remote.Remote(
|
||||||
|
@ -62,15 +81,11 @@ class ConfigRunTestCase(test.CdistTestCase):
|
||||||
remote_exec=self.remote_exec,
|
remote_exec=self.remote_exec,
|
||||||
base_path=self.remote_dir)
|
base_path=self.remote_dir)
|
||||||
|
|
||||||
self.local.object_path = object_base_path
|
self.local.object_path = self.object_base_path
|
||||||
self.local.type_path = type_base_path
|
self.local.type_path = type_base_path
|
||||||
|
|
||||||
self.config = cdist.config.Config(self.local, self.remote)
|
self.config = cdist.config.Config(self.local, self.remote)
|
||||||
|
|
||||||
self.objects = list(core.CdistObject.list_objects(object_base_path, type_base_path, self.local.object_marker_name))
|
|
||||||
self.object_index = dict((o.name, o) for o in self.objects)
|
|
||||||
self.object_names = [o.name for o in self.objects]
|
|
||||||
|
|
||||||
def tearDown(self):
|
def tearDown(self):
|
||||||
for o in self.objects:
|
for o in self.objects:
|
||||||
o.requirements = []
|
o.requirements = []
|
||||||
|
|
Loading…
Reference in a new issue