123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- # -*- coding: utf-8 -*-
- '''
- Integration tests for the mac_desktop execution module.
- '''
- # Import Python Libs
- from __future__ import absolute_import, unicode_literals, print_function
- # Import Salt Testing Libs
- from tests.support.case import ModuleCase
- # Import 3rd-party libs
- import pytest
- from salt.ext import six
- @pytest.mark.destructive_test
- @pytest.mark.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 == six.text_type(to_set):
- to_set += 2
- new_vol = self.run_function('desktop.set_output_volume',
- [six.text_type(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'])
- )
|