mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
52 lines
1.7 KiB
Python
52 lines
1.7 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Import python libs
|
|
import sys
|
|
|
|
# Import Salt Testing libs
|
|
from salttesting import skipIf
|
|
from salttesting.helpers import ensure_in_syspath
|
|
ensure_in_syspath('../../')
|
|
|
|
# Import salt libs
|
|
import integration
|
|
|
|
|
|
class SysctlModuleTest(integration.ModuleCase):
|
|
def setUp(self):
|
|
super(SysctlModuleTest, self).setUp()
|
|
ret = self.run_function('cmd.has_exec', ['sysctl'])
|
|
if not ret:
|
|
self.skipTest('sysctl not found')
|
|
|
|
def test_show(self):
|
|
ret = self.run_function('sysctl.show')
|
|
self.assertIsInstance(ret, dict, 'sysctl.show return wrong type')
|
|
self.assertGreater(len(ret), 10, 'sysctl.show return few data')
|
|
|
|
@skipIf(not sys.platform.startswith('linux'), 'Linux specific')
|
|
def test_show_linux(self):
|
|
ret = self.run_function('sysctl.show')
|
|
self.assertIn('kernel.ostype', ret, 'kernel.ostype absent')
|
|
|
|
@skipIf(not sys.platform.startswith('freebsd'), 'FreeBSD specific')
|
|
def test_show_freebsd(self):
|
|
ret = self.run_function('sysctl.show')
|
|
self.assertIn('vm.vmtotal', ret, 'Multiline variable absent')
|
|
self.assertGreater(ret.get('vm.vmtotal').splitlines(),
|
|
1,
|
|
'Multiline value was parsed wrong')
|
|
|
|
@skipIf(not sys.platform.startswith('darwin'), 'Darwin (OS X) specific')
|
|
def test_show_darwin(self):
|
|
ret = self.run_function('sysctl.show')
|
|
self.assertIn('kern.ostype', ret, 'kern.ostype absent')
|
|
self.assertEqual(
|
|
ret.get('kern.ostype'), 'Darwin', 'Incorrect kern.ostype'
|
|
)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
from integration import run_tests
|
|
run_tests(SysctlModuleTest)
|