salt/tests/integration/modules/grains.py

91 lines
2.0 KiB
Python
Raw Normal View History

2012-02-14 18:00:35 +00:00
'''
Test the grains module
'''
import integration
2012-02-14 18:00:35 +00:00
class TestModulesGrains(integration.ModuleCase):
2012-02-14 18:00:35 +00:00
'''
Test the grains module
'''
def test_items(self):
'''
grains.items
'''
opts = self.minion_opts
2012-06-30 20:10:34 +00:00
self.assertEqual(
self.run_function('grains.items')['test_grain'],
opts['grains']['test_grain']
)
2012-02-14 18:00:35 +00:00
def test_item(self):
'''
grains.item
'''
opts = self.minion_opts
2012-06-30 20:10:34 +00:00
self.assertEqual(
self.run_function('grains.item', ['test_grain'])['test_grain'],
2012-06-30 20:10:34 +00:00
opts['grains']['test_grain']
)
2012-02-14 18:00:35 +00:00
def test_ls(self):
'''
grains.ls
'''
2012-05-10 04:39:49 +00:00
check_for = (
'cpuarch',
'cpu_flags',
'cpu_model',
'domain',
'fqdn',
'host',
'kernel',
'kernelrelease',
'localhost',
'mem_total',
'num_cpus',
'os',
'os_family',
2012-05-10 04:39:49 +00:00
'path',
'ps',
'pythonpath',
'pythonversion',
'saltpath',
'saltversion',
'virtual',
)
2012-02-14 18:00:35 +00:00
lsgrains = self.run_function('grains.ls')
2012-05-10 04:39:49 +00:00
for grain_name in check_for:
self.assertTrue(grain_name in lsgrains)
2013-05-26 10:11:42 +00:00
def test_set_val(self):
'''
test grains.set_val
'''
self.assertEqual(
self.run_function(
'grains.setval',
['setgrain', 'grainval']),
{'setgrain': 'grainval'})
self.assertTrue(
self.run_function(
'grains.item', ['setgrain']
)
)
2013-05-26 12:11:59 +00:00
def test_get(self):
'''
test grains.get
'''
self.assertEqual(
self.run_function(
'grains.get',
['level1:level2']),
'foo')
2013-05-26 10:11:42 +00:00
if __name__ == '__main__':
from integration import run_tests
run_tests(TestModulesGrains)