mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 01:18:58 +00:00
43 lines
1023 B
Python
43 lines
1023 B
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
Test the core grains
|
|
'''
|
|
|
|
# Import python libs
|
|
from __future__ import absolute_import
|
|
|
|
# Import Salt Testing libs
|
|
from salttesting import skipIf
|
|
from salttesting.helpers import ensure_in_syspath
|
|
|
|
ensure_in_syspath('../../')
|
|
|
|
# Import salt libs
|
|
import integration
|
|
import salt.utils
|
|
if salt.utils.is_windows():
|
|
try:
|
|
import salt.modules.reg
|
|
except:
|
|
pass
|
|
|
|
|
|
class TestGrainsCore(integration.ModuleCase):
|
|
'''
|
|
Test the core grains grains
|
|
'''
|
|
@skipIf(not salt.utils.is_windows(), 'Only run on Windows')
|
|
def test_win_cpu_model(self):
|
|
'''
|
|
test grains['cpu_model']
|
|
'''
|
|
opts = self.minion_opts
|
|
cpu_model_text = salt.modules.reg.read_value(
|
|
"HKEY_LOCAL_MACHINE",
|
|
"HARDWARE\\DESCRIPTION\\System\\CentralProcessor\\0",
|
|
"ProcessorNameString").get('vdata')
|
|
self.assertEqual(
|
|
self.run_function('grains.items')['cpu_model'],
|
|
cpu_model_text
|
|
)
|