1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- # -*- coding: utf-8 -*-
- """
- salt-ssh testing
- """
- # Import Python libs
- from __future__ import absolute_import, print_function, unicode_literals
- import os
- import shutil
- # Import salt testing libs
- from tests.support.case import SSHCase
- from tests.support.runtests import RUNTIME_VARS
- from tests.support.unit import skipIf
- class SSHTest(SSHCase):
- """
- Test general salt-ssh functionality
- """
- @skipIf(True, "SLOWTEST skip")
- def test_ping(self):
- """
- Test a simple ping
- """
- ret = self.run_function("test.ping")
- self.assertTrue(ret, "Ping did not return true")
- @skipIf(True, "SLOWTEST skip")
- def test_thin_dir(self):
- """
- test to make sure thin_dir is created
- and salt-call file is included
- """
- thin_dir = self.run_function("config.get", ["thin_dir"], wipe=False)
- os.path.isdir(thin_dir)
- os.path.exists(os.path.join(thin_dir, "salt-call"))
- os.path.exists(os.path.join(thin_dir, "running_data"))
- def test_set_path(self):
- """
- test setting the path env variable
- """
- path = "/pathdoesnotexist/"
- roster = os.path.join(RUNTIME_VARS.TMP, "roster-set-path")
- self.custom_roster(
- roster, data={"set_path": "$PATH:/usr/local/bin/:{0}".format(path)}
- )
- ret = self.run_function("environ.get", ["PATH"], roster_file=roster)
- assert path in ret
- def tearDown(self):
- """
- make sure to clean up any old ssh directories
- """
- salt_dir = self.run_function("config.get", ["thin_dir"], wipe=False)
- if os.path.exists(salt_dir):
- shutil.rmtree(salt_dir)
|