mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
149 lines
5.5 KiB
Python
149 lines
5.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Import Python libs
|
|
from __future__ import absolute_import
|
|
|
|
# Import Salt Libs
|
|
from salt.modules import win_powercfg as powercfg
|
|
|
|
# Import Salt Testing Libs
|
|
from salttesting import skipIf, TestCase
|
|
from salttesting.helpers import ensure_in_syspath
|
|
from salttesting.mock import (
|
|
NO_MOCK,
|
|
NO_MOCK_REASON,
|
|
MagicMock,
|
|
patch,
|
|
call
|
|
)
|
|
|
|
ensure_in_syspath('../../')
|
|
|
|
powercfg.__salt__ = {}
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
|
class PowerCfgTestCase(TestCase):
|
|
query_ouput = '''Subgroup GUID: 238c9fa8-0aad-41ed-83f4-97be242c8f20 (Hibernate)
|
|
GUID Alias: SUB_SLEEP
|
|
Power Setting GUID: 29f6c1db-86da-48c5-9fdb-f2b67b1f44da (Hibernate after)
|
|
GUID Alias: HIBERNATEIDLE
|
|
Minimum Possible Setting: 0x00000000
|
|
Maximum Possible Setting: 0xffffffff
|
|
Possible Settings increment: 0x00000001
|
|
Possible Settings units: Seconds
|
|
Current AC Power Setting Index: 0x00000708
|
|
Current DC Power Setting Index: 0x00000384'''
|
|
|
|
'''
|
|
Validate the powercfg state
|
|
'''
|
|
def test_set_monitor_timeout(self):
|
|
'''
|
|
Test to make sure we can set the monitor timeout value
|
|
'''
|
|
mock = MagicMock(return_value="")
|
|
with patch.dict(powercfg.__salt__, {'cmd.run': mock}):
|
|
powercfg.set_monitor_timeout(0, "dc")
|
|
mock.assert_called_once_with('powercfg /x monitor-timeout-dc 0', python_shell=False)
|
|
|
|
def test_set_disk_timeout(self):
|
|
'''
|
|
Test to make sure we can set the disk timeout value
|
|
'''
|
|
mock = MagicMock(return_value="")
|
|
with patch.dict(powercfg.__salt__, {'cmd.run': mock}):
|
|
powercfg.set_disk_timeout(0, "dc")
|
|
mock.assert_called_once_with('powercfg /x disk-timeout-dc 0', python_shell=False)
|
|
|
|
def test_set_standby_timeout(self):
|
|
'''
|
|
Test to make sure we can set the standby timeout value
|
|
'''
|
|
mock = MagicMock(return_value="")
|
|
with patch.dict(powercfg.__salt__, {'cmd.run': mock}):
|
|
powercfg.set_standby_timeout(0, "dc")
|
|
mock.assert_called_once_with('powercfg /x standby-timeout-dc 0', python_shell=False)
|
|
|
|
def test_set_hibernate_timeout(self):
|
|
'''
|
|
Test to make sure we can set the hibernate timeout value
|
|
'''
|
|
mock = MagicMock(return_value="")
|
|
with patch.dict(powercfg.__salt__, {'cmd.run': mock}):
|
|
powercfg.set_hibernate_timeout(0, "dc")
|
|
mock.assert_called_once_with('powercfg /x hibernate-timeout-dc 0', python_shell=False)
|
|
|
|
def test_get_monitor_timeout(self):
|
|
'''
|
|
Test to make sure we can get the monitor timeout value
|
|
'''
|
|
mock = MagicMock()
|
|
mock.side_effect = ["Power Scheme GUID: 381b4222-f694-41f0-9685-ff5bb260df2e (Balanced)", self.query_ouput]
|
|
|
|
with patch.dict(powercfg.__salt__, {'cmd.run': mock}):
|
|
ret = powercfg.get_monitor_timeout()
|
|
calls = [
|
|
call('powercfg /getactivescheme', python_shell=False),
|
|
call('powercfg /q 381b4222-f694-41f0-9685-ff5bb260df2e SUB_VIDEO VIDEOIDLE', python_shell=False)
|
|
]
|
|
mock.assert_has_calls(calls)
|
|
|
|
self.assertEqual({'ac': 30, 'dc': 15}, ret)
|
|
|
|
def test_get_disk_timeout(self):
|
|
'''
|
|
Test to make sure we can get the disk timeout value
|
|
'''
|
|
mock = MagicMock()
|
|
mock.side_effect = ["Power Scheme GUID: 381b4222-f694-41f0-9685-ff5bb260df2e (Balanced)", self.query_ouput]
|
|
|
|
with patch.dict(powercfg.__salt__, {'cmd.run': mock}):
|
|
ret = powercfg.get_disk_timeout()
|
|
calls = [
|
|
call('powercfg /getactivescheme', python_shell=False),
|
|
call('powercfg /q 381b4222-f694-41f0-9685-ff5bb260df2e SUB_DISK DISKIDLE', python_shell=False)
|
|
]
|
|
mock.assert_has_calls(calls)
|
|
|
|
self.assertEqual({'ac': 30, 'dc': 15}, ret)
|
|
|
|
def test_get_standby_timeout(self):
|
|
'''
|
|
Test to make sure we can get the standby timeout value
|
|
'''
|
|
mock = MagicMock()
|
|
mock.side_effect = ["Power Scheme GUID: 381b4222-f694-41f0-9685-ff5bb260df2e (Balanced)", self.query_ouput]
|
|
|
|
with patch.dict(powercfg.__salt__, {'cmd.run': mock}):
|
|
ret = powercfg.get_standby_timeout()
|
|
calls = [
|
|
call('powercfg /getactivescheme', python_shell=False),
|
|
call('powercfg /q 381b4222-f694-41f0-9685-ff5bb260df2e SUB_SLEEP STANDBYIDLE', python_shell=False)
|
|
]
|
|
mock.assert_has_calls(calls)
|
|
|
|
self.assertEqual({'ac': 30, 'dc': 15}, ret)
|
|
|
|
def test_get_hibernate_timeout(self):
|
|
'''
|
|
Test to make sure we can get the hibernate timeout value
|
|
'''
|
|
mock = MagicMock()
|
|
mock.side_effect = ["Power Scheme GUID: 381b4222-f694-41f0-9685-ff5bb260df2e (Balanced)", self.query_ouput]
|
|
|
|
with patch.dict(powercfg.__salt__, {'cmd.run': mock}):
|
|
ret = powercfg.get_hibernate_timeout()
|
|
calls = [
|
|
call('powercfg /getactivescheme', python_shell=False),
|
|
call('powercfg /q 381b4222-f694-41f0-9685-ff5bb260df2e SUB_SLEEP HIBERNATEIDLE', python_shell=False)
|
|
]
|
|
mock.assert_has_calls(calls)
|
|
|
|
self.assertEqual({'ac': 30, 'dc': 15}, ret)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
from integration import run_tests
|
|
run_tests(PowerCfgTestCase, needs_daemon=False)
|