123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- # -*- coding: utf-8 -*-
- """
- salt-ssh testing
- """
- from __future__ import absolute_import, print_function, unicode_literals
- import os
- import shutil
- from tests.support.case import SSHCase
- from tests.support.helpers import slowTest
- from tests.support.runtests import RUNTIME_VARS
- class SSHTest(SSHCase):
- """
- Test general salt-ssh functionality
- """
- @slowTest
- def test_ping(self):
- """
- Test a simple ping
- """
- ret = self.run_function("test.ping")
- self.assertTrue(ret, "Ping did not return true")
- @slowTest
- 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)
|