Add windows ntp integration module tests

This commit is contained in:
Ch3LL 2018-04-24 15:12:58 -04:00
parent 9dca5c0221
commit ced7f86546
No known key found for this signature in database
GPG Key ID: 132B55A7C13EFA73
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,30 @@
# -*- coding: utf-8 -*-
# Import Python libs
from __future__ import absolute_import
# Import Salt Testing libs
from tests.support.case import ModuleCase
from tests.support.unit import skipIf
from tests.support.helpers import destructiveTest
# Import Salt Libs
import salt.utils
@skipIf(not salt.utils.is_windows(), 'Tests for only Windows')
class NTPTest(ModuleCase):
'''
Validate windows ntp module
'''
@destructiveTest
def test_ntp_set_servers(self):
'''
test ntp get and set servers
'''
ntp_srv = 'pool.ntp.org'
set_srv = self.run_function('ntp.set_servers', [ntp_srv])
self.assertTrue(set_srv)
get_srv = self.run_function('ntp.get_servers')
self.assertEqual(ntp_srv, get_srv[0])

View File

@ -16,6 +16,7 @@ integration.modules.test_groupadd
integration.modules.test_hosts integration.modules.test_hosts
integration.modules.test_mine integration.modules.test_mine
integration.modules.test_network integration.modules.test_network
integration.modules.test_ntp
integration.modules.test_pillar integration.modules.test_pillar
integration.modules.test_pkg integration.modules.test_pkg
integration.modules.test_publish integration.modules.test_publish