salt/tests/integration/modules/test_macdefaults.py
Daniel Wallace 33bb5bfe69
fix use of virtualname
Make sure that the virtualname is included in the actual filename of
core modules.  This will help speed up loading of modules that need to
use the virtualname, so that we hit @depends decorators less.
2019-02-19 13:16:06 -06:00

52 lines
1.6 KiB
Python

# -*- coding: utf-8 -*-
'''
Validate the mac-defaults module
'''
# 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
DEFAULT_DOMAIN = 'com.apple.AppleMultitouchMouse'
DEFAULT_KEY = 'MouseHorizontalScroll'
DEFAULT_VALUE = '0'
@destructiveTest
@skip_if_not_root
class MacDefaultsModuleTest(ModuleCase):
'''
Integration tests for the mac_default module
'''
def setUp(self):
'''
Sets up the test requirements
'''
os_grain = self.run_function('grains.item', ['kernel'])
# Must be running on a mac
if os_grain['kernel'] not in 'Darwin':
self.skipTest(
'Test not applicable to \'{kernel}\' kernel'.format(
**os_grain
)
)
def test_macdefaults_write_read(self):
'''
Tests that writes and reads macdefaults
'''
write_domain = self.run_function('macdefaults.write',
[DEFAULT_DOMAIN,
DEFAULT_KEY,
DEFAULT_VALUE])
self.assertTrue(write_domain)
read_domain = self.run_function('macdefaults.read',
[DEFAULT_DOMAIN,
DEFAULT_KEY])
self.assertTrue(read_domain)
self.assertEqual(read_domain, DEFAULT_VALUE)