mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
224 lines
6.4 KiB
Python
224 lines
6.4 KiB
Python
'''
|
|
Test the hosts module
|
|
'''
|
|
# Import python libs
|
|
import os
|
|
import shutil
|
|
|
|
# Import Salt Testing libs
|
|
from salttesting.helpers import ensure_in_syspath
|
|
ensure_in_syspath('../../')
|
|
|
|
# Import salt libs
|
|
import integration
|
|
import salt.utils
|
|
|
|
HFN = os.path.join(integration.TMP, 'hosts')
|
|
|
|
|
|
class HostsModuleTest(integration.ModuleCase):
|
|
'''
|
|
Test the hosts module
|
|
'''
|
|
|
|
maxDiff = None
|
|
|
|
def __clean_hosts(self):
|
|
'''
|
|
Clean out the hosts file
|
|
'''
|
|
shutil.copyfile(os.path.join(integration.FILES, 'hosts'), HFN)
|
|
|
|
def __clear_hosts(self):
|
|
'''
|
|
Delete the tmp hosts file
|
|
'''
|
|
if os.path.isfile(HFN):
|
|
os.remove(HFN)
|
|
|
|
def tearDown(self):
|
|
'''
|
|
Make sure the tmp hosts file is gone
|
|
'''
|
|
self.__clear_hosts()
|
|
|
|
def test_list_hosts(self):
|
|
'''
|
|
hosts.list_hosts
|
|
'''
|
|
self.__clean_hosts()
|
|
hosts = self.run_function('hosts.list_hosts')
|
|
self.assertEqual(len(hosts), 6)
|
|
self.assertEqual(hosts['::1'], ['ip6-localhost', 'ip6-loopback'])
|
|
self.assertEqual(hosts['127.0.0.1'], ['localhost', 'myname'])
|
|
|
|
def test_list_hosts_nofile(self):
|
|
'''
|
|
hosts.list_hosts
|
|
without a hosts file
|
|
'''
|
|
if os.path.isfile(HFN):
|
|
os.remove(HFN)
|
|
hosts = self.run_function('hosts.list_hosts')
|
|
self.assertEqual(hosts, {})
|
|
|
|
def test_get_ip(self):
|
|
'''
|
|
hosts.get_ip
|
|
'''
|
|
self.__clean_hosts()
|
|
self.assertEqual(
|
|
self.run_function('hosts.get_ip', ['myname']), '127.0.0.1'
|
|
)
|
|
self.assertEqual(self.run_function('hosts.get_ip', ['othername']), '')
|
|
self.__clear_hosts()
|
|
self.assertEqual(self.run_function('hosts.get_ip', ['othername']), '')
|
|
|
|
def test_get_alias(self):
|
|
'''
|
|
hosts.get_alias
|
|
'''
|
|
self.__clean_hosts()
|
|
self.assertEqual(
|
|
self.run_function('hosts.get_alias', ['127.0.0.1']),
|
|
['localhost', 'myname']
|
|
)
|
|
self.assertEqual(
|
|
self.run_function('hosts.get_alias', ['127.0.0.2']),
|
|
[]
|
|
)
|
|
self.__clear_hosts()
|
|
self.assertEqual(
|
|
self.run_function('hosts.get_alias', ['127.0.0.1']),
|
|
[]
|
|
)
|
|
|
|
def test_has_pair(self):
|
|
'''
|
|
hosts.has_pair
|
|
'''
|
|
self.__clean_hosts()
|
|
self.assertTrue(
|
|
self.run_function('hosts.has_pair', ['127.0.0.1', 'myname'])
|
|
)
|
|
self.assertFalse(
|
|
self.run_function('hosts.has_pair', ['127.0.0.1', 'othername'])
|
|
)
|
|
|
|
def test_set_host(self):
|
|
'''
|
|
hosts.set_hosts
|
|
'''
|
|
self.__clean_hosts()
|
|
self.assertTrue(
|
|
self.run_function('hosts.set_host', ['192.168.1.123', 'newip'])
|
|
)
|
|
self.assertTrue(
|
|
self.run_function('hosts.has_pair', ['192.168.1.123', 'newip'])
|
|
)
|
|
self.assertTrue(
|
|
self.run_function('hosts.set_host', ['127.0.0.1', 'localhost'])
|
|
)
|
|
self.assertEqual(len(self.run_function('hosts.list_hosts')), 7)
|
|
self.assertFalse(
|
|
self.run_function('hosts.has_pair', ['127.0.0.1', 'myname']),
|
|
'should remove second entry'
|
|
)
|
|
|
|
def test_add_host(self):
|
|
'''
|
|
hosts.add_host
|
|
'''
|
|
self.__clean_hosts()
|
|
self.assertTrue(
|
|
self.run_function('hosts.add_host', ['192.168.1.123', 'newip'])
|
|
)
|
|
self.assertTrue(
|
|
self.run_function('hosts.has_pair', ['192.168.1.123', 'newip'])
|
|
)
|
|
self.assertEqual(len(self.run_function('hosts.list_hosts')), 7)
|
|
self.assertTrue(
|
|
self.run_function('hosts.add_host', ['127.0.0.1', 'othernameip'])
|
|
)
|
|
self.assertEqual(len(self.run_function('hosts.list_hosts')), 7)
|
|
|
|
def test_rm_host(self):
|
|
self.__clean_hosts()
|
|
self.assertTrue(
|
|
self.run_function('hosts.has_pair', ['127.0.0.1', 'myname'])
|
|
)
|
|
self.assertTrue(
|
|
self.run_function('hosts.rm_host', ['127.0.0.1', 'myname'])
|
|
)
|
|
self.assertFalse(
|
|
self.run_function('hosts.has_pair', ['127.0.0.1', 'myname'])
|
|
)
|
|
self.assertTrue(
|
|
self.run_function('hosts.rm_host', ['127.0.0.1', 'unknown'])
|
|
)
|
|
|
|
def test_add_host_formatting(self):
|
|
'''
|
|
Ensure that hosts.add_host isn't adding duplicates and that
|
|
it's formatting the output correctly
|
|
'''
|
|
# instead of using the 'clean' hosts file we're going to
|
|
# use an empty one so we can prove the syntax of the entries
|
|
# being added by the hosts module
|
|
self.__clear_hosts()
|
|
f = salt.utils.fopen(HFN, 'w')
|
|
f.close()
|
|
|
|
self.assertTrue(
|
|
self.run_function(
|
|
'hosts.add_host', ['192.168.1.3', 'host3.fqdn.com']
|
|
)
|
|
)
|
|
self.assertTrue(
|
|
self.run_function(
|
|
'hosts.add_host', ['192.168.1.1', 'host1.fqdn.com']
|
|
)
|
|
)
|
|
self.assertTrue(
|
|
self.run_function('hosts.add_host', ['192.168.1.1', 'host1'])
|
|
)
|
|
self.assertTrue(
|
|
self.run_function(
|
|
'hosts.add_host', ['192.168.1.2', 'host2.fqdn.com']
|
|
)
|
|
)
|
|
self.assertTrue(
|
|
self.run_function('hosts.add_host', ['192.168.1.2', 'host2'])
|
|
)
|
|
self.assertTrue(
|
|
self.run_function('hosts.add_host', ['192.168.1.2', 'oldhost2'])
|
|
)
|
|
self.assertTrue(
|
|
self.run_function(
|
|
'hosts.add_host', ['192.168.1.2', 'host2-reorder']
|
|
)
|
|
)
|
|
self.assertTrue(
|
|
self.run_function(
|
|
'hosts.add_host', ['192.168.1.1', 'host1-reorder']
|
|
)
|
|
)
|
|
|
|
# now read the lines and ensure they're formatted correctly
|
|
lines = salt.utils.fopen(HFN, 'r').read().splitlines()
|
|
self.assertEqual(lines, [
|
|
'192.168.1.3\t\thost3.fqdn.com',
|
|
'192.168.1.1\t\thost1.fqdn.com',
|
|
'192.168.1.1\t\thost1',
|
|
'192.168.1.1\t\thost1-reorder',
|
|
'192.168.1.2\t\thost2.fqdn.com',
|
|
'192.168.1.2\t\thost2',
|
|
'192.168.1.2\t\toldhost2',
|
|
'192.168.1.2\t\thost2-reorder'
|
|
])
|
|
|
|
|
|
if __name__ == '__main__':
|
|
from integration import run_tests
|
|
run_tests(HostsModuleTest)
|