mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 09:23:56 +00:00
88ba210f86
- Updates mac_assistive module to use cmd.run_all - Updates current mac_assistive_test unit tests with cmd.run_all change - Adds module integration tests for mac_assistive execution module
134 lines
4.1 KiB
Python
134 lines
4.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
:codeauthor: :email:`Nicole Thomas <nicole@saltstack.com>`
|
|
'''
|
|
|
|
# Import Python Libs
|
|
from __future__ import absolute_import
|
|
import os
|
|
|
|
# Import Salt Testing Libs
|
|
from salttesting import skipIf
|
|
from salttesting.helpers import (
|
|
destructiveTest,
|
|
ensure_in_syspath,
|
|
requires_system_grains
|
|
)
|
|
ensure_in_syspath('../../')
|
|
|
|
# Import Salt Libs
|
|
import integration
|
|
|
|
OSA_SCRIPT = '/usr/bin/osascript'
|
|
|
|
|
|
@destructiveTest
|
|
@skipIf(os.geteuid() != 0, 'You must be logged in as root to run this test')
|
|
class MacAssistiveTest(integration.ModuleCase):
|
|
'''
|
|
Integration tests for the mac_assistive 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
|
|
)
|
|
)
|
|
|
|
# Let's install a bundle to use in tests
|
|
self.run_function('assistive.install', [OSA_SCRIPT, True])
|
|
|
|
def tearDown(self):
|
|
'''
|
|
Clean up after tests
|
|
'''
|
|
# Delete any bundles that were installed
|
|
osa_script = self.run_function('assistive.installed', OSA_SCRIPT)
|
|
if osa_script:
|
|
self.run_function('assistive.remove', OSA_SCRIPT)
|
|
|
|
smile_bundle = 'com.smileonmymac.textexpander'
|
|
smile_bundle_present = self.run_function('assistive.installed', smile_bundle)
|
|
if smile_bundle_present:
|
|
self.run_function('assistive.remove', smile_bundle)
|
|
|
|
@requires_system_grains
|
|
def test_install_and_remove(self, grains=None):
|
|
'''
|
|
Tests installing and removing a bundled ID or command to use assistive access.
|
|
'''
|
|
new_bundle = 'com.smileonmymac.textexpander'
|
|
self.assertTrue(
|
|
self.run_function('assistive.install', new_bundle)
|
|
)
|
|
self.assertTrue(
|
|
self.run_function('assistive.remove', new_bundle)
|
|
)
|
|
|
|
@requires_system_grains
|
|
def test_installed(self, grains=None):
|
|
'''
|
|
Tests the True and False return of assistive.installed.
|
|
'''
|
|
# OSA script should have been installed in setUp function
|
|
self.assertTrue(
|
|
self.run_function('assistive.installed', OSA_SCRIPT)
|
|
)
|
|
# Clean up install
|
|
self.run_function('assistive.remove', [OSA_SCRIPT])
|
|
# Installed should now return False
|
|
self.assertFalse(
|
|
self.run_function('assistive.installed', [OSA_SCRIPT])
|
|
)
|
|
|
|
@requires_system_grains
|
|
def test_enable(self, grains=None):
|
|
'''
|
|
Tests setting the enabled status of a bundled ID or command.
|
|
'''
|
|
# OSA script should have been installed and enabled in setUp function
|
|
# Now let's disable it, which should return True.
|
|
self.assertTrue(
|
|
self.run_function('assistive.enable', [OSA_SCRIPT, False])
|
|
)
|
|
# Double check the script was disabled, as intended.
|
|
self.assertFalse(
|
|
self.run_function('assistive.enabled', [OSA_SCRIPT])
|
|
)
|
|
# Now re-enable
|
|
self.assertTrue(
|
|
self.run_function('assistive.enable', OSA_SCRIPT)
|
|
)
|
|
# Double check the script was enabled, as intended.
|
|
self.assertTrue(
|
|
self.run_function('assistive.enabled', OSA_SCRIPT)
|
|
)
|
|
|
|
@requires_system_grains
|
|
def test_enabled(self, grains=None):
|
|
'''
|
|
Tests if a bundled ID or command is listed in assistive access returns True.
|
|
'''
|
|
# OSA script should have been installed in setUp function, which sets
|
|
# enabled to True by default.
|
|
self.assertTrue(
|
|
self.run_function('assistive.enabled', OSA_SCRIPT)
|
|
)
|
|
# Disable OSA Script
|
|
self.run_function('assistive.enable', [OSA_SCRIPT, False])
|
|
# Assert against new disabled status
|
|
self.assertFalse(
|
|
self.run_function('assistive.enabled', [OSA_SCRIPT])
|
|
)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
from integration import run_tests
|
|
run_tests(MacAssistiveTest)
|