mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
33bb5bfe69
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.
52 lines
1.6 KiB
Python
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)
|