# -*- 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. # # 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 . # # import os import getpass import shutil import string import random import cdist from cdist import test from cdist.exec import local import os.path as op my_dir = op.abspath(op.dirname(__file__)) fixtures = op.join(my_dir, 'fixtures') conf_dir = op.join(fixtures, "conf") class LocalTestCase(test.CdistTestCase): def setUp(self): target_host = 'localhost' self.temp_dir = self.mkdtemp() self.out_path = self.temp_dir self.local = local.Local( target_host=target_host, out_path=self.out_path, exec_path=test.cdist_exec_path ) self.home_dir = os.path.join(os.environ['HOME'], ".cdist") def tearDown(self): shutil.rmtree(self.temp_dir) ### test api def test_cache_path(self): self.assertEqual(self.local.cache_path, os.path.join(self.home_dir, "cache")) def test_conf_path(self): self.assertEqual(self.local.conf_path, os.path.join(self.out_path, "conf")) def test_out_path(self): self.assertEqual(self.local.out_path, self.out_path) def test_bin_path(self): self.assertEqual(self.local.bin_path, os.path.join(self.out_path, "bin")) def test_global_explorer_out_path(self): self.assertEqual(self.local.global_explorer_out_path, os.path.join(self.out_path, "explorer")) def test_object_path(self): self.assertEqual(self.local.object_path, os.path.join(self.out_path, "object")) ### /test api ### test internal implementation def test_global_explorer_path(self): self.assertEqual(self.local.global_explorer_path, os.path.join(self.out_path, "conf", "explorer")) def test_manifest_path(self): self.assertEqual(self.local.manifest_path, os.path.join(self.out_path, "conf", "manifest")) def test_type_path(self): self.assertEqual(self.local.type_path, os.path.join(self.out_path, "conf", "type")) def test_dist_conf_dir_linking(self): """Ensure that links are correctly created for types included in distribution""" test_type="__file" link_test_local = local.Local( target_host='localhost', out_path=self.out_path, exec_path=test.cdist_exec_path, ) link_test_local._create_conf_path_and_link_conf_dirs() our_type_dir = os.path.join(link_test_local.type_path, test_type) self.assertTrue(os.path.isdir(our_type_dir)) def test_added_conf_dir_linking(self): """Ensure that links are correctly created for types in added conf directories""" test_type="__cdist_test_type" link_test_local = local.Local( target_host='localhost', out_path=self.out_path, exec_path=test.cdist_exec_path, add_conf_dirs=[conf_dir] ) link_test_local._create_conf_path_and_link_conf_dirs() our_type_dir = os.path.join(link_test_local.type_path, test_type) self.assertTrue(os.path.isdir(our_type_dir)) def test_conf_dir_from_path_linking(self): """Ensure that links are correctly created for types in conf directories which are defined in CDIST_PATH""" test_type="__cdist_test_type" os.environ['CDIST_PATH'] = conf_dir link_test_local = local.Local( target_host='localhost', out_path=self.out_path, exec_path=test.cdist_exec_path, ) link_test_local._create_conf_path_and_link_conf_dirs() our_type_dir = os.path.join(link_test_local.type_path, test_type) self.assertTrue(os.path.isdir(our_type_dir)) ### other tests def test_run_success(self): self.local.run(['/bin/true']) def test_run_fail(self): self.assertRaises(cdist.Error, self.local.run, ['/bin/false']) def test_run_script_success(self): handle, script = self.mkstemp(dir=self.temp_dir) with os.fdopen(handle, "w") as fd: fd.writelines(["#!/bin/sh\n", "/bin/true"]) self.local.run_script(script) def test_run_script_fail(self): handle, script = self.mkstemp(dir=self.temp_dir) with os.fdopen(handle, "w") as fd: fd.writelines(["#!/bin/sh\n", "/bin/false"]) self.assertRaises(cdist.Error, self.local.run_script, script) def test_run_script_get_output(self): handle, script = self.mkstemp(dir=self.temp_dir) with os.fdopen(handle, "w") as fd: fd.writelines(["#!/bin/sh\n", "echo foobar"]) self.assertEqual(self.local.run_script(script, return_output=True), "foobar\n") def test_mkdir(self): temp_dir = self.mkdtemp(dir=self.temp_dir) os.rmdir(temp_dir) self.local.mkdir(temp_dir) self.assertTrue(os.path.isdir(temp_dir)) def test_rmdir(self): temp_dir = self.mkdtemp(dir=self.temp_dir) self.local.rmdir(temp_dir) self.assertFalse(os.path.isdir(temp_dir)) def test_create_files_dirs(self): self.local.create_files_dirs() self.assertTrue(os.path.isdir(self.local.out_path)) self.assertTrue(os.path.isdir(self.local.bin_path)) self.assertTrue(os.path.isdir(self.local.conf_path))