1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- # -*- 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)
|