mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
35 lines
886 B
Python
35 lines
886 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Import Python libs
|
|
from __future__ import absolute_import
|
|
import os
|
|
import shutil
|
|
|
|
# Import Salt Testing Libs
|
|
from tests.support.case import SSHCase
|
|
from tests.support.unit import skipIf
|
|
|
|
# Import Salt Libs
|
|
import salt.utils
|
|
|
|
|
|
@skipIf(salt.utils.is_windows(), 'salt-ssh not available on Windows')
|
|
class SSHMineTest(SSHCase):
|
|
'''
|
|
testing salt-ssh with mine
|
|
'''
|
|
def test_ssh_mine_get(self):
|
|
'''
|
|
test salt-ssh with mine
|
|
'''
|
|
ret = self.run_function('mine.get', ['localhost test.arg'], wipe=False)
|
|
self.assertEqual(ret['localhost']['args'], ['itworked'])
|
|
|
|
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)
|