2011-10-12 15:20:47 +00:00
|
|
|
# -*- 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 unittest
|
|
|
|
import os
|
|
|
|
import tempfile
|
|
|
|
import getpass
|
|
|
|
import shutil
|
|
|
|
import string
|
|
|
|
import random
|
2011-10-14 21:18:58 +00:00
|
|
|
import logging
|
2011-10-12 15:20:47 +00:00
|
|
|
|
|
|
|
import cdist
|
|
|
|
from cdist.exec import local
|
|
|
|
from cdist import core
|
|
|
|
from cdist.core import manifest
|
|
|
|
|
|
|
|
import os.path as op
|
|
|
|
my_dir = op.abspath(op.dirname(__file__))
|
|
|
|
fixtures = op.join(my_dir, 'fixtures')
|
|
|
|
local_base_path = fixtures
|
|
|
|
|
|
|
|
|
|
|
|
class ManifestTestCase(unittest.TestCase):
|
|
|
|
|
|
|
|
def mkdtemp(self, **kwargs):
|
|
|
|
return tempfile.mkdtemp(prefix='tmp.cdist.test.', **kwargs)
|
|
|
|
|
|
|
|
def mkstemp(self, **kwargs):
|
|
|
|
return tempfile.mkstemp(prefix='tmp.cdist.test.', **kwargs)
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
self.temp_dir = self.mkdtemp()
|
2011-10-14 21:18:58 +00:00
|
|
|
self.target_host = 'localhost'
|
2011-10-12 15:20:47 +00:00
|
|
|
out_path = self.temp_dir
|
2011-10-14 21:18:58 +00:00
|
|
|
self.local = local.Local(self.target_host, local_base_path, out_path)
|
2011-10-12 15:20:47 +00:00
|
|
|
self.local.create_directories()
|
|
|
|
self.local.link_emulator(cdist.test.cdist_exec_path)
|
2011-10-14 21:18:58 +00:00
|
|
|
self.manifest = manifest.Manifest(self.target_host, self.local)
|
|
|
|
self.log = logging.getLogger("cdist")
|
2011-10-12 15:20:47 +00:00
|
|
|
|
|
|
|
def tearDown(self):
|
2011-10-12 15:58:09 +00:00
|
|
|
shutil.rmtree(self.temp_dir)
|
2011-10-12 15:20:47 +00:00
|
|
|
|
|
|
|
def test_initial_manifest_environment(self):
|
|
|
|
initial_manifest = os.path.join(self.local.manifest_path, "dump_environment")
|
2011-10-14 14:14:04 +00:00
|
|
|
self.manifest.run_initial_manifest(initial_manifest)
|
2011-10-12 15:20:47 +00:00
|
|
|
|
2011-10-12 15:56:45 +00:00
|
|
|
def test_type_manifest_environment(self):
|
2011-10-12 22:35:14 +00:00
|
|
|
cdist_type = core.Type(self.local.type_path, '__dump_environment')
|
|
|
|
cdist_object = core.Object(cdist_type, self.local.object_path, 'whatever')
|
2011-10-14 14:14:04 +00:00
|
|
|
self.manifest.run_type_manifest(cdist_object)
|
2011-10-14 21:18:58 +00:00
|
|
|
|
|
|
|
def test_debug_env_setup(self):
|
|
|
|
self.log.setLevel(logging.DEBUG)
|
|
|
|
manifest = cdist.core.manifest.Manifest(self.target_host, self.local)
|
|
|
|
self.assertTrue("__debug" in manifest.env)
|