mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
48 lines
1.2 KiB
Python
48 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
tests for host state
|
|
'''
|
|
|
|
# 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 ModuleCase
|
|
from tests.support.paths import FILES, TMP
|
|
from tests.support.mixins import SaltReturnAssertsMixin
|
|
|
|
# Import salt libs
|
|
import salt.utils.files
|
|
import salt.utils.stringutils
|
|
|
|
HFILE = os.path.join(TMP, 'hosts')
|
|
|
|
|
|
class HostTest(ModuleCase, SaltReturnAssertsMixin):
|
|
'''
|
|
Validate the host state
|
|
'''
|
|
|
|
def setUp(self):
|
|
shutil.copyfile(os.path.join(FILES, 'hosts'), HFILE)
|
|
super(HostTest, self).setUp()
|
|
|
|
def tearDown(self):
|
|
if os.path.exists(HFILE):
|
|
os.remove(HFILE)
|
|
super(HostTest, self).tearDown()
|
|
|
|
def test_present(self):
|
|
'''
|
|
host.present
|
|
'''
|
|
name = 'spam.bacon'
|
|
ip = '10.10.10.10'
|
|
ret = self.run_state('host.present', name=name, ip=ip)
|
|
self.assertSaltTrueReturn(ret)
|
|
with salt.utils.files.fopen(HFILE) as fp_:
|
|
output = salt.utils.stringutils.to_unicode(fp_.read())
|
|
self.assertIn('{0}\t\t{1}'.format(ip, name), output)
|