mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
118 lines
3.7 KiB
Python
118 lines
3.7 KiB
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
Validate the mac-keychain module
|
|
'''
|
|
|
|
# Import Python Libs
|
|
from __future__ import absolute_import
|
|
import os
|
|
|
|
# Import Salt Testing Libs
|
|
from tests.support.case import ModuleCase
|
|
from tests.support.paths import FILES
|
|
from tests.support.helpers import destructiveTest, skip_if_not_root
|
|
|
|
# Import Salt Libs
|
|
from salt.exceptions import CommandExecutionError
|
|
|
|
CERT = os.path.join(
|
|
FILES,
|
|
'file',
|
|
'base',
|
|
'certs',
|
|
'salttest.p12'
|
|
)
|
|
CERT_ALIAS = 'Salt Test'
|
|
PASSWD = 'salttest'
|
|
|
|
|
|
@destructiveTest
|
|
@skip_if_not_root
|
|
class MacKeychainModuleTest(ModuleCase):
|
|
'''
|
|
Integration tests for the mac_keychain 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 tearDown(self):
|
|
'''
|
|
Clean up after tests
|
|
'''
|
|
# Remove the salttest cert, if left over.
|
|
certs_list = self.run_function('keychain.list_certs')
|
|
if CERT_ALIAS in certs_list:
|
|
self.run_function('keychain.uninstall', [CERT_ALIAS])
|
|
|
|
def test_mac_keychain_install(self):
|
|
'''
|
|
Tests that attempts to install a certificate
|
|
'''
|
|
install_cert = self.run_function('keychain.install', [CERT, PASSWD])
|
|
self.assertTrue(install_cert)
|
|
|
|
# check to ensure the cert was installed
|
|
certs_list = self.run_function('keychain.list_certs')
|
|
self.assertIn(CERT_ALIAS, certs_list)
|
|
|
|
def test_mac_keychain_uninstall(self):
|
|
'''
|
|
Tests that attempts to uninstall a certificate
|
|
'''
|
|
self.run_function('keychain.install', [CERT, PASSWD])
|
|
certs_list = self.run_function('keychain.list_certs')
|
|
|
|
if CERT_ALIAS not in certs_list:
|
|
self.run_function('keychain.uninstall', [CERT_ALIAS])
|
|
self.skipTest('Failed to install keychain')
|
|
|
|
# uninstall cert
|
|
self.run_function('keychain.uninstall', [CERT_ALIAS])
|
|
certs_list = self.run_function('keychain.list_certs')
|
|
|
|
# check to ensure the cert was uninstalled
|
|
try:
|
|
self.assertNotIn(CERT_ALIAS, str(certs_list))
|
|
except CommandExecutionError:
|
|
self.run_function('keychain.uninstall', [CERT_ALIAS])
|
|
|
|
def test_mac_keychain_get_friendly_name(self):
|
|
'''
|
|
Test that attempts to get friendly name of a cert
|
|
'''
|
|
self.run_function('keychain.install', [CERT, PASSWD])
|
|
certs_list = self.run_function('keychain.list_certs')
|
|
if CERT_ALIAS not in certs_list:
|
|
self.run_function('keychain.uninstall', [CERT_ALIAS])
|
|
self.skipTest('Failed to install keychain')
|
|
|
|
get_name = self.run_function('keychain.get_friendly_name', [CERT, PASSWD])
|
|
self.assertEqual(get_name, CERT_ALIAS)
|
|
|
|
def test_mac_keychain_get_default_keychain(self):
|
|
'''
|
|
Test that attempts to get the default keychain
|
|
'''
|
|
salt_get_keychain = self.run_function('keychain.get_default_keychain')
|
|
sys_get_keychain = self.run_function('cmd.run',
|
|
['security default-keychain -d user'])
|
|
self.assertEqual(salt_get_keychain, sys_get_keychain)
|
|
|
|
def test_mac_keychain_list_certs(self):
|
|
'''
|
|
Test that attempts to list certs
|
|
'''
|
|
cert_default = 'com.apple.systemdefault'
|
|
certs = self.run_function('keychain.list_certs')
|
|
self.assertIn(cert_default, certs)
|