Merge remote-tracking branch 'telmich/master'
This commit is contained in:
commit
8dde1e1bd7
12 changed files with 25 additions and 191 deletions
|
|
@ -1,46 +0,0 @@
|
|||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# 2011 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 <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
#
|
||||
|
||||
|
||||
import os
|
||||
import subprocess
|
||||
import unittest
|
||||
|
||||
cdist_commands=["banner", "config", "install"]
|
||||
|
||||
cdist_base_path = os.path.abspath(
|
||||
os.path.join(os.path.dirname(os.path.realpath(__file__)), "../../../"))
|
||||
|
||||
cdist_exec_path = os.path.join(cdist_base_path, "bin/cdist")
|
||||
|
||||
#class UI(unittest.TestCase):
|
||||
# def test_banner(self):
|
||||
# self.assertEqual(subprocess.call([cdist_exec_path, "banner"]), 0)
|
||||
#
|
||||
# def test_help(self):
|
||||
# for cmd in cdist_commands:
|
||||
# self.assertEqual(subprocess.call([cdist_exec_path, cmd, "-h"]), 0)
|
||||
#
|
||||
# # FIXME: mockup needed
|
||||
# def test_config_localhost(self):
|
||||
# for cmd in cdist_commands:
|
||||
# self.assertEqual(subprocess.call([cdist_exec_path, "config", "localhost"]), 0)
|
||||
|
|
@ -20,27 +20,29 @@
|
|||
#
|
||||
#
|
||||
|
||||
|
||||
import imp
|
||||
import os
|
||||
import sys
|
||||
import cdist.test
|
||||
import unittest
|
||||
|
||||
#class UI(unittest.TestCase):
|
||||
# def test_banner(self):
|
||||
# self.assertEqual(subprocess.call([cdist_exec_path, "banner"]), 0)
|
||||
#
|
||||
# def test_help(self):
|
||||
# for cmd in cdist_commands:
|
||||
# self.assertEqual(subprocess.call([cdist_exec_path, cmd, "-h"]), 0)
|
||||
#
|
||||
# # FIXME: mockup needed
|
||||
# def test_config_localhost(self):
|
||||
# for cmd in cdist_commands:
|
||||
# self.assertEqual(subprocess.call([cdist_exec_path, "config", "localhost"]), 0)
|
||||
base_dir = os.path.dirname(os.path.realpath(__file__))
|
||||
|
||||
print(cdist.test.cdist_exec_path)
|
||||
print(sys.argv)
|
||||
test_modules = []
|
||||
for possible_test in os.listdir(base_dir):
|
||||
filename = "__init__.py"
|
||||
mod_path = os.path.join(base_dir, possible_test, filename)
|
||||
|
||||
suite = unittest.defaultTestLoader.discover(os.path.dirname(__file__))
|
||||
unittest.TextTestRunner(verbosity=1).run(suite)
|
||||
if os.path.isfile(mod_path):
|
||||
test_modules.append(possible_test)
|
||||
|
||||
suites = []
|
||||
for test_module in test_modules:
|
||||
module_parameters = imp.find_module(test_module, [base_dir])
|
||||
module = imp.load_module("cdist.test." + test_module, *module_parameters)
|
||||
|
||||
suite = unittest.defaultTestLoader.loadTestsFromModule(module)
|
||||
# print("Got suite: " + suite.__str__())
|
||||
suites.append(suite)
|
||||
|
||||
all_suites = unittest.TestSuite(suites)
|
||||
unittest.TextTestRunner(verbosity=2).run(all_suites)
|
||||
|
|
|
|||
|
|
@ -1,45 +0,0 @@
|
|||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# 2011 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 <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
#
|
||||
|
||||
|
||||
import os
|
||||
import subprocess
|
||||
import unittest
|
||||
|
||||
cdist_commands=["banner", "config", "install"]
|
||||
|
||||
cdist_exec_path = os.path.abspath(
|
||||
os.path.join(os.path.dirname(os.path.realpath(__file__)), "../bin/cdist"))
|
||||
|
||||
class UI(unittest.TestCase):
|
||||
def test_banner(self):
|
||||
self.assertEqual(subprocess.call([cdist_exec_path, "banner"]), 0)
|
||||
|
||||
def test_help(self):
|
||||
for cmd in cdist_commands:
|
||||
self.assertEqual(subprocess.call([cdist_exec_path, cmd, "-h"]), 0)
|
||||
|
||||
# FIXME: mockup needed
|
||||
def test_config_localhost(self):
|
||||
for cmd in cdist_commands:
|
||||
self.assertEqual(subprocess.call([cdist_exec_path, "config", "localhost"]), 0)
|
||||
|
||||
|
|
@ -1,42 +0,0 @@
|
|||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# 2011 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 <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
#
|
||||
|
||||
import io
|
||||
import sys
|
||||
import unittest
|
||||
|
||||
import cdist
|
||||
import cdist.banner
|
||||
|
||||
class Banner(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self.banner = cdist.BANNER + "\n"
|
||||
|
||||
def test_banner_output(self):
|
||||
"""Check that printed banner equals saved banner"""
|
||||
output = io.StringIO()
|
||||
|
||||
sys.stdout = output
|
||||
|
||||
cdist.banner.banner(None)
|
||||
|
||||
self.assertEqual(output.getvalue(), self.banner)
|
||||
|
|
@ -1,101 +0,0 @@
|
|||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# 2011 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 <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
#
|
||||
|
||||
import os
|
||||
import sys
|
||||
import tempfile
|
||||
import unittest
|
||||
|
||||
sys.path.insert(0, os.path.abspath(
|
||||
os.path.join(os.path.dirname(os.path.realpath(__file__)), '../lib')))
|
||||
|
||||
import cdist.config
|
||||
|
||||
cdist_exec_path = os.path.abspath(
|
||||
os.path.join(os.path.dirname(os.path.realpath(__file__)), "bin/cdist"))
|
||||
|
||||
|
||||
class Config(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self.temp_dir = tempfile.mkdtemp()
|
||||
self.init_manifest = os.path.join(self.temp_dir, "manifest")
|
||||
self.config = cdist.config.Config("localhost",
|
||||
initial_manifest=self.init_manifest,
|
||||
exec_path=cdist_exec_path)
|
||||
self.config.link_emulator()
|
||||
|
||||
def test_initial_manifest_different_parameter(self):
|
||||
manifest_fd = open(self.init_manifest, "w")
|
||||
manifest_fd.writelines(["#!/bin/sh\n",
|
||||
"__file " + self.temp_dir + " --mode 0700\n",
|
||||
"__file " + self.temp_dir + " --mode 0600\n",
|
||||
])
|
||||
manifest_fd.close()
|
||||
|
||||
self.assertRaises(cdist.Error, self.config.run_initial_manifest)
|
||||
|
||||
def test_initial_manifest_parameter_added(self):
|
||||
manifest_fd = open(self.init_manifest, "w")
|
||||
manifest_fd.writelines(["#!/bin/sh\n",
|
||||
"__file " + self.temp_dir + '\n',
|
||||
"__file " + self.temp_dir + " --mode 0600\n",
|
||||
])
|
||||
manifest_fd.close()
|
||||
|
||||
self.assertRaises(cdist.Error, self.config.run_initial_manifest)
|
||||
|
||||
def test_initial_manifest_parameter_removed(self):
|
||||
manifest_fd = open(self.init_manifest, "w")
|
||||
manifest_fd.writelines(["#!/bin/sh\n",
|
||||
"__file " + self.temp_dir + " --mode 0600\n",
|
||||
"__file " + self.temp_dir + "\n",
|
||||
])
|
||||
manifest_fd.close()
|
||||
|
||||
self.assertRaises(cdist.Error, self.config.run_initial_manifest)
|
||||
|
||||
def test_initial_manifest_non_existent_command(self):
|
||||
manifest_fd = open(self.init_manifest, "w")
|
||||
manifest_fd.writelines(["#!/bin/sh\n",
|
||||
"thereisdefinitelynosuchcommend"])
|
||||
manifest_fd.close()
|
||||
|
||||
self.assertRaises(cdist.Error, self.config.run_initial_manifest)
|
||||
|
||||
def test_initial_manifest_parameter_twice(self):
|
||||
manifest_fd = open(self.init_manifest, "w")
|
||||
manifest_fd.writelines(["#!/bin/sh\n",
|
||||
"__file " + self.temp_dir + " --mode 0600\n",
|
||||
"__file " + self.temp_dir + " --mode 0600\n",
|
||||
])
|
||||
manifest_fd.close()
|
||||
|
||||
try:
|
||||
self.config.run_initial_manifest()
|
||||
except cdist.Error:
|
||||
failed = True
|
||||
else:
|
||||
failed = False
|
||||
|
||||
self.assertFalse(failed)
|
||||
|
||||
|
||||
|
|
@ -1,79 +0,0 @@
|
|||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# 2011 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 <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
#
|
||||
|
||||
|
||||
import os
|
||||
import shutil
|
||||
import tempfile
|
||||
import unittest
|
||||
|
||||
import cdist.exec
|
||||
|
||||
|
||||
class ExecTestCase(unittest.TestCase):
|
||||
def setUp(self):
|
||||
"""Create shell code and co."""
|
||||
|
||||
self.temp_dir = tempfile.mkdtemp()
|
||||
self.shell_false = os.path.join(self.temp_dir, "shell_false")
|
||||
self.shell_true = os.path.join(self.temp_dir, "shell_true")
|
||||
|
||||
true_fd = open(self.shell_true, "w")
|
||||
true_fd.writelines(["#!/bin/sh\n", "/bin/true"])
|
||||
true_fd.close()
|
||||
|
||||
false_fd = open(self.shell_false, "w")
|
||||
false_fd.writelines(["#!/bin/sh\n", "/bin/false"])
|
||||
false_fd.close()
|
||||
|
||||
target_host = "does.not.exist"
|
||||
remote_exec = "ssh -o User=root -q"
|
||||
remote_copy = "scp -o User=root -q"
|
||||
self.wrapper = cdist.exec.Wrapper(target_host, remote_exec, remote_copy)
|
||||
|
||||
def tearDown(self):
|
||||
shutil.rmtree(self.temp_dir)
|
||||
|
||||
def test_local_success_shell(self):
|
||||
try:
|
||||
self.wrapper.shell_run_or_debug_fail(self.shell_true, [self.shell_true])
|
||||
except cdist.Error:
|
||||
failed = True
|
||||
else:
|
||||
failed = False
|
||||
self.assertFalse(failed)
|
||||
|
||||
def test_local_fail_shell(self):
|
||||
self.assertRaises(cdist.Error, self.wrapper.shell_run_or_debug_fail,
|
||||
self.shell_false, [self.shell_false])
|
||||
|
||||
def test_local_success(self):
|
||||
try:
|
||||
self.wrapper.run_or_fail(["/bin/true"])
|
||||
except cdist.Error:
|
||||
failed = True
|
||||
else:
|
||||
failed = False
|
||||
self.assertFalse(failed)
|
||||
|
||||
def test_local_fail(self):
|
||||
self.assertRaises(cdist.Error, self.wrapper.run_or_fail, ["/bin/false"])
|
||||
|
|
@ -1,131 +0,0 @@
|
|||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# 2011 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 <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
#
|
||||
|
||||
import os
|
||||
import sys
|
||||
import tempfile
|
||||
import unittest
|
||||
|
||||
sys.path.insert(0, os.path.abspath(
|
||||
os.path.join(os.path.dirname(os.path.realpath(__file__)), '../lib')))
|
||||
|
||||
import cdist.config
|
||||
import cdist.test
|
||||
|
||||
class Install(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self.temp_dir = tempfile.mkdtemp()
|
||||
self.init_manifest = os.path.join(self.temp_dir, "manifest")
|
||||
|
||||
os.environ['__remote_exec'] = "ssh -o User=root -q"
|
||||
os.environ['__remote_copy'] = "scp -o User=root -q"
|
||||
|
||||
self.config = cdist.config.Config("localhost",
|
||||
initial_manifest=self.init_manifest,
|
||||
exec_path=cdist.test.cdist_exec_path)
|
||||
self.config.link_emulator()
|
||||
|
||||
|
||||
### NEW FOR INSTALL ############################################################
|
||||
|
||||
def test_explorer_ran(self):
|
||||
"""Check that all explorers returned a result"""
|
||||
self.config.run_global_explores()
|
||||
explorers = self.config.path.list_global_explorers()
|
||||
|
||||
for explorer in explorers:
|
||||
output = self.config.path.global_explorer_output_path(explorer)
|
||||
self.assertTrue(os.path.isfile(output))
|
||||
|
||||
def test_manifest_uses_install_types_only(self):
|
||||
"""Check that objects created from manifest are only of install type"""
|
||||
manifest_fd = open(self.init_manifest, "w")
|
||||
manifest_fd.writelines(["#!/bin/sh\n",
|
||||
"__file " + self.temp_dir + " --mode 0700\n",
|
||||
"__partition_msdos /dev/null --type 82\n",
|
||||
])
|
||||
manifest_fd.close()
|
||||
|
||||
self.config.run_initial_manifest()
|
||||
|
||||
# FIXME: check that only __partition_msdos objects are created!
|
||||
|
||||
self.assertFalse(failed)
|
||||
|
||||
|
||||
### OLD FROM CONFIG ############################################################
|
||||
def test_initial_manifest_different_parameter(self):
|
||||
manifest_fd = open(self.init_manifest, "w")
|
||||
manifest_fd.writelines(["#!/bin/sh\n",
|
||||
"__file " + self.temp_dir + " --mode 0700\n",
|
||||
"__file " + self.temp_dir + " --mode 0600\n",
|
||||
])
|
||||
manifest_fd.close()
|
||||
|
||||
self.assertRaises(cdist.Error, self.config.run_initial_manifest)
|
||||
|
||||
def test_initial_manifest_parameter_added(self):
|
||||
manifest_fd = open(self.init_manifest, "w")
|
||||
manifest_fd.writelines(["#!/bin/sh\n",
|
||||
"__file " + self.temp_dir + '\n',
|
||||
"__file " + self.temp_dir + " --mode 0600\n",
|
||||
])
|
||||
manifest_fd.close()
|
||||
|
||||
self.assertRaises(cdist.Error, self.config.run_initial_manifest)
|
||||
|
||||
def test_initial_manifest_parameter_removed(self):
|
||||
manifest_fd = open(self.init_manifest, "w")
|
||||
manifest_fd.writelines(["#!/bin/sh\n",
|
||||
"__file " + self.temp_dir + " --mode 0600\n",
|
||||
"__file " + self.temp_dir + "\n",
|
||||
])
|
||||
manifest_fd.close()
|
||||
|
||||
self.assertRaises(cdist.Error, self.config.run_initial_manifest)
|
||||
|
||||
def test_initial_manifest_non_existent_command(self):
|
||||
manifest_fd = open(self.init_manifest, "w")
|
||||
manifest_fd.writelines(["#!/bin/sh\n",
|
||||
"thereisdefinitelynosuchcommend"])
|
||||
manifest_fd.close()
|
||||
|
||||
self.assertRaises(cdist.Error, self.config.run_initial_manifest)
|
||||
|
||||
def test_initial_manifest_parameter_twice(self):
|
||||
manifest_fd = open(self.init_manifest, "w")
|
||||
manifest_fd.writelines(["#!/bin/sh\n",
|
||||
"__file " + self.temp_dir + " --mode 0600\n",
|
||||
"__file " + self.temp_dir + " --mode 0600\n",
|
||||
])
|
||||
manifest_fd.close()
|
||||
|
||||
try:
|
||||
self.config.run_initial_manifest()
|
||||
except cdist.Error:
|
||||
failed = True
|
||||
else:
|
||||
failed = False
|
||||
|
||||
self.assertFalse(failed)
|
||||
|
||||
|
||||
|
|
@ -1,78 +0,0 @@
|
|||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# 2011 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 <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
#
|
||||
|
||||
import os
|
||||
import shutil
|
||||
import sys
|
||||
import tempfile
|
||||
import unittest
|
||||
|
||||
import cdist.path
|
||||
import cdist.test
|
||||
|
||||
class Path(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self.temp_dir = tempfile.mkdtemp()
|
||||
self.init_manifest = os.path.join(self.temp_dir, "manifest")
|
||||
self.path = cdist.path.Path("localhost", "root", "ssh root@localhost",
|
||||
initial_manifest=self.init_manifest,
|
||||
base_dir=self.temp_dir)
|
||||
|
||||
os.mkdir(self.path.conf_dir)
|
||||
os.mkdir(self.path.type_base_dir)
|
||||
|
||||
self.install_type_name = "__install_test"
|
||||
self.config_type_name = "__config_test"
|
||||
|
||||
# Create install type
|
||||
self.install_type = os.path.join(self.path.type_base_dir, self.install_type_name)
|
||||
os.mkdir(self.install_type)
|
||||
open(os.path.join(self.install_type, "install"), "w").close()
|
||||
|
||||
# Create config type
|
||||
self.config_type = os.path.join(self.path.type_base_dir, self.config_type_name)
|
||||
os.mkdir(self.config_type)
|
||||
|
||||
def tearDown(self):
|
||||
self.path.cleanup()
|
||||
shutil.rmtree(self.temp_dir)
|
||||
|
||||
def test_type_detection(self):
|
||||
"""Check that a type is identified as install or configuration correctly"""
|
||||
|
||||
self.assertTrue(self.path.is_install_type(self.install_type))
|
||||
self.assertFalse(self.path.is_install_type(self.config_type))
|
||||
|
||||
def test_manifest_uses_install_types_only(self):
|
||||
"""Check that objects created from manifest are only of install type"""
|
||||
manifest_fd = open(self.init_manifest, "w")
|
||||
manifest_fd.writelines(["#!/bin/sh\n",
|
||||
self.install_type_name + "testid\n",
|
||||
self.config_type_name + "testid\n",
|
||||
])
|
||||
manifest_fd.close()
|
||||
|
||||
self.install.run_initial_manifest()
|
||||
|
||||
# FIXME: check that only __partition_msdos objects are created!
|
||||
|
||||
self.assertFalse(failed)
|
||||
|
|
@ -1,39 +0,0 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# 2011 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 <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
#
|
||||
|
||||
import os
|
||||
import unittest
|
||||
|
||||
import cdist.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 TypeExplorer(unittest.TestCase):
|
||||
|
||||
def setUp(self):
|
||||
|
||||
def test_explorer_output(self):
|
||||
"""Check for output of type explorer"""
|
||||
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
#!/bin/sh
|
||||
echo hello
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
cat "$__object/parameter/test"
|
||||
Loading…
Add table
Add a link
Reference in a new issue