mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
3273bbdab7
Conflicts: - doc/ref/configuration/master.rst - doc/ref/modules/all/index.rst - doc/topics/grains/index.rst - doc/topics/releases/2016.3.4.rst - doc/topics/spm/spm_formula.rst - doc/topics/tutorials/cron.rst - doc/topics/tutorials/index.rst - doc/topics/tutorials/stormpath.rst - salt/engines/slack.py - salt/log/handlers/fluent_mod.py - salt/modules/cyg.py - salt/modules/junos.py - salt/modules/namecheap_dns.py - salt/modules/namecheap_domains.py - salt/modules/namecheap_ns.py - salt/modules/namecheap_ssl.py - salt/modules/namecheap_users.py - salt/modules/reg.py - salt/modules/tomcat.py - salt/modules/vault.py - salt/modules/win_file.py - salt/modules/zpool.py - salt/output/highstate.py - salt/renderers/pass.py - salt/runners/cache.py - salt/states/boto_apigateway.py - salt/states/boto_iam.py - salt/states/boto_route53.py - salt/states/msteams.py - salt/states/reg.py - salt/states/win_iis.py - tests/integration/modules/test_cmdmod.py - tests/integration/states/test_user.py - tests/support/helpers.py - tests/unit/cloud/clouds/test_openstack.py - tests/unit/fileserver/test_gitfs.py - tests/unit/modules/test_junos.py - tests/unit/pillar/test_git.py - tests/unit/states/test_win_path.py - tests/unit/test_pillar.py - tests/unit/utils/test_format_call.py - tests/unit/utils/test_utils.py - tests/unit/utils/test_warnings.py
116 lines
3.7 KiB
Python
116 lines
3.7 KiB
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
:codeauthor: Nicole Thomas <nicole@saltstack.com>
|
|
'''
|
|
|
|
# Import Python Libs
|
|
from __future__ import absolute_import, unicode_literals, print_function
|
|
|
|
# Import Salt Testing Libs
|
|
from tests.support.case import ModuleCase
|
|
from tests.support.helpers import destructiveTest, skip_if_not_root
|
|
|
|
OSA_SCRIPT = '/usr/bin/osascript'
|
|
|
|
|
|
@destructiveTest
|
|
@skip_if_not_root
|
|
class MacAssistiveTest(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])
|
|
|
|
def test_install_and_remove(self):
|
|
'''
|
|
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])
|
|
)
|
|
|
|
def test_installed(self):
|
|
'''
|
|
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])
|
|
)
|
|
|
|
def test_enable(self):
|
|
'''
|
|
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])
|
|
)
|
|
|
|
def test_enabled(self):
|
|
'''
|
|
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])
|
|
)
|