salt/tests/integration/modules/test_mac_desktop.py
2017-04-04 18:58:21 +01:00

78 lines
2.1 KiB
Python

# -*- coding: utf-8 -*-
'''
Integration tests for the mac_desktop execution module.
'''
# Import Python Libs
from __future__ import absolute_import
# Import Salt Testing Libs
from tests.support.case import ModuleCase
from tests.support.helpers import destructiveTest, skip_if_not_root
@destructiveTest
@skip_if_not_root
class MacDesktopTestCase(ModuleCase):
'''
Integration tests for the mac_desktop module.
'''
def setUp(self):
'''
Sets up test requirements.
'''
os_grain = self.run_function('grains.item', ['kernel'])
if os_grain['kernel'] not in 'Darwin':
self.skipTest(
'Test not applicable to \'{kernel}\' kernel'.format(
**os_grain
)
)
def test_get_output_volume(self):
'''
Tests the return of get_output_volume.
'''
ret = self.run_function('desktop.get_output_volume')
self.assertIsNotNone(ret)
def test_set_output_volume(self):
'''
Tests the return of set_output_volume.
'''
current_vol = self.run_function('desktop.get_output_volume')
to_set = 10
if current_vol == str(to_set):
to_set += 2
new_vol = self.run_function('desktop.set_output_volume', [str(to_set)])
check_vol = self.run_function('desktop.get_output_volume')
self.assertEqual(new_vol, check_vol)
# Set volume back to what it was before
self.run_function('desktop.set_output_volume', [current_vol])
def test_screensaver(self):
'''
Tests the return of the screensaver function.
'''
self.assertTrue(
self.run_function('desktop.screensaver')
)
def test_lock(self):
'''
Tests the return of the lock function.
'''
self.assertTrue(
self.run_function('desktop.lock')
)
def test_say(self):
'''
Tests the return of the say function.
'''
self.assertTrue(
self.run_function('desktop.say', ['hello', 'world'])
)