|
|
|
@ -1,6 +1,7 @@ |
|
|
|
|
# -*- coding: utf-8 -*- |
|
|
|
|
# |
|
|
|
|
# 2010-2011 Steven Armstrong (steven-cdist at armstrong.cc) |
|
|
|
|
# 2012 Nico Schottelius (nico-cdist at schottelius.org) |
|
|
|
|
# |
|
|
|
|
# This file is part of cdist. |
|
|
|
|
# |
|
|
|
@ -202,56 +203,24 @@ class ObjectTestCase(test.CdistTestCase): |
|
|
|
|
self.assertEqual(other_object.object_id, 'man') |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# -*- coding: utf-8 -*- |
|
|
|
|
# |
|
|
|
|
# 2010-2011 Steven Armstrong (steven-cdist at armstrong.cc) |
|
|
|
|
# |
|
|
|
|
# This file is part of cdist. |
|
|
|
|
# |
|
|
|
|
# cdist is free software: you can redistribute it and/or modify |
|
|
|
|
# it under the terms of the GNU General Public License as published by |
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or |
|
|
|
|
# (at your option) any later version. |
|
|
|
|
# |
|
|
|
|
# cdist is distributed in the hope that it will be useful, |
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
|
|
|
# GNU General Public License for more details. |
|
|
|
|
# |
|
|
|
|
# You should have received a copy of the GNU General Public License |
|
|
|
|
# along with cdist. If not, see <http://www.gnu.org/licenses/>. |
|
|
|
|
# |
|
|
|
|
# |
|
|
|
|
|
|
|
|
|
import os |
|
|
|
|
import shutil |
|
|
|
|
|
|
|
|
|
import cdist |
|
|
|
|
from cdist import test |
|
|
|
|
from cdist import core |
|
|
|
|
|
|
|
|
|
import os.path as op |
|
|
|
|
my_dir = op.abspath(op.dirname(__file__)) |
|
|
|
|
fixtures = op.join(my_dir, 'fixtures') |
|
|
|
|
object_base_path = op.join(fixtures, 'object') |
|
|
|
|
type_base_path = op.join(fixtures, 'type') |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ResolverTestCase(test.CdistTestCase): |
|
|
|
|
class ObjectResolveRequirementsTestCase(test.CdistTestCase): |
|
|
|
|
|
|
|
|
|
def setUp(self): |
|
|
|
|
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) |
|
|
|
|
|
|
|
|
|
# Create a test object with requirements |
|
|
|
|
self.test_object = core.CdistObject(cdist_type, base_path, object_id=None) |
|
|
|
|
self.cdist_type = core.CdistType(type_base_path, '__third') |
|
|
|
|
self.cdist_object = core.CdistObject(self.cdist_type, object_base_path, 'moon') |
|
|
|
|
|
|
|
|
|
def tearDown(self): |
|
|
|
|
for o in self.objects: |
|
|
|
|
o.requirements = [] |
|
|
|
|
|
|
|
|
|
def test_find_requirements_by_name_string(self): |
|
|
|
|
"""Check that resolving requirements by name works""" |
|
|
|
|
requirements = ['__first/man', '__second/on-the', '__third/moon'] |
|
|
|
|
|
|
|
|
|
required_objects = [self.object_index[name] for name in requirements] |
|
|
|
|
self.assertEqual(sorted(list(self.dependency_resolver.find_requirements_by_name(requirements))), |
|
|
|
|
sorted(required_objects)) |
|
|
|
@ -278,16 +247,9 @@ class ResolverTestCase(test.CdistTestCase): |
|
|
|
|
[third_moon, second_on_the, first_man] |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
def test_circular_reference(self): |
|
|
|
|
first_man = self.object_index['__first/man'] |
|
|
|
|
first_woman = self.object_index['__first/woman'] |
|
|
|
|
first_man.requirements = [first_woman.name] |
|
|
|
|
first_woman.requirements = [first_man.name] |
|
|
|
|
with self.assertRaises(resolver.CircularReferenceError): |
|
|
|
|
self.dependency_resolver.dependencies |
|
|
|
|
|
|
|
|
|
def test_requirement_not_found(self): |
|
|
|
|
first_man = self.object_index['__first/man'] |
|
|
|
|
first_man.requirements = ['__does/not/exist'] |
|
|
|
|
with self.assertRaises(cdist.Error): |
|
|
|
|
self.dependency_resolver.dependencies |
|
|
|
|
with self.assertRaises(core.cdist_object.RequirementNotFoundError): |
|
|
|
|
first_man.find_requirements_by_name(first_man.requirements) |
|
|
|
|
|
|
|
|
|