6f28fc2db2
ssh ControlPath socket file needs to be unique for each host. To avoid using ssh ControlPath option placeholders move socket file to host's temp directory. Since each host has unique temp directory then, although file name for socket file is fixed, its path is unique.
135 lines
5.2 KiB
Python
135 lines
5.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# 2011 Steven Armstrong (steven-cdist at armstrong.cc)
|
|
# 2012-2015 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 getpass
|
|
import os
|
|
import shutil
|
|
|
|
import cdist
|
|
from cdist import core
|
|
from cdist import test
|
|
from cdist.exec import local
|
|
from cdist.exec import remote
|
|
from cdist.core import code
|
|
|
|
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 CodeTestCase(test.CdistTestCase):
|
|
|
|
def setUp(self):
|
|
self.local_dir = self.mkdtemp()
|
|
self.hostdir = cdist.str_hash(self.target_host)
|
|
self.host_base_path = os.path.join(self.local_dir, self.hostdir)
|
|
|
|
self.local = local.Local(
|
|
target_host=self.target_host,
|
|
base_root_path=self.host_base_path,
|
|
host_dir_name=self.hostdir,
|
|
exec_path=cdist.test.cdist_exec_path,
|
|
add_conf_dirs=[conf_dir])
|
|
self.local.create_files_dirs()
|
|
|
|
self.remote_dir = self.mkdtemp()
|
|
remote_exec = self.remote_exec
|
|
remote_copy = self.remote_copy
|
|
self.remote = remote.Remote(
|
|
target_host=self.target_host,
|
|
remote_exec=remote_exec,
|
|
remote_copy=remote_copy,
|
|
base_path=self.remote_dir)
|
|
self.remote.create_files_dirs()
|
|
|
|
self.code = code.Code(self.target_host, self.local, self.remote)
|
|
|
|
self.cdist_type = core.CdistType(self.local.type_path,
|
|
'__dump_environment')
|
|
self.cdist_object = core.CdistObject(
|
|
self.cdist_type, self.local.object_path, 'whatever',
|
|
self.local.object_marker_name)
|
|
self.cdist_object.create()
|
|
|
|
def tearDown(self):
|
|
shutil.rmtree(self.local_dir)
|
|
shutil.rmtree(self.remote_dir)
|
|
|
|
def test_run_gencode_local_environment(self):
|
|
output_string = self.code.run_gencode_local(self.cdist_object)
|
|
output_dict = {}
|
|
for line in output_string.split('\n'):
|
|
if line:
|
|
junk, value = line.split(': ')
|
|
key = junk.split(' ')[1]
|
|
output_dict[key] = value
|
|
self.assertEqual(output_dict['__target_host'], self.local.target_host)
|
|
self.assertEqual(output_dict['__global'], self.local.base_path)
|
|
self.assertEqual(output_dict['__type'], self.cdist_type.absolute_path)
|
|
self.assertEqual(output_dict['__object'],
|
|
self.cdist_object.absolute_path)
|
|
self.assertEqual(output_dict['__object_id'],
|
|
self.cdist_object.object_id)
|
|
self.assertEqual(output_dict['__object_name'], self.cdist_object.name)
|
|
self.assertEqual(output_dict['__files'], self.local.files_path)
|
|
|
|
def test_run_gencode_remote_environment(self):
|
|
output_string = self.code.run_gencode_remote(self.cdist_object)
|
|
output_dict = {}
|
|
for line in output_string.split('\n'):
|
|
if line:
|
|
junk, value = line.split(': ')
|
|
key = junk.split(' ')[1]
|
|
output_dict[key] = value
|
|
self.assertEqual(output_dict['__target_host'], self.local.target_host)
|
|
self.assertEqual(output_dict['__global'], self.local.base_path)
|
|
self.assertEqual(output_dict['__type'], self.cdist_type.absolute_path)
|
|
self.assertEqual(output_dict['__object'],
|
|
self.cdist_object.absolute_path)
|
|
self.assertEqual(output_dict['__object_id'],
|
|
self.cdist_object.object_id)
|
|
self.assertEqual(output_dict['__object_name'], self.cdist_object.name)
|
|
self.assertEqual(output_dict['__files'], self.local.files_path)
|
|
|
|
def test_transfer_code_remote(self):
|
|
self.cdist_object.code_remote = self.code.run_gencode_remote(
|
|
self.cdist_object)
|
|
self.code.transfer_code_remote(self.cdist_object)
|
|
destination = os.path.join(self.remote.object_path,
|
|
self.cdist_object.code_remote_path)
|
|
self.assertTrue(os.path.isfile(destination))
|
|
|
|
def test_run_code_local(self):
|
|
self.cdist_object.code_local = self.code.run_gencode_local(
|
|
self.cdist_object)
|
|
self.code.run_code_local(self.cdist_object)
|
|
|
|
def test_run_code_remote_environment(self):
|
|
self.cdist_object.code_remote = self.code.run_gencode_remote(
|
|
self.cdist_object)
|
|
self.code.transfer_code_remote(self.cdist_object)
|
|
self.code.run_code_remote(self.cdist_object)
|
|
|
|
if __name__ == '__main__':
|
|
import unittest
|
|
unittest.main()
|