mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
94 lines
2.7 KiB
Python
94 lines
2.7 KiB
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
integration tests for mac_pkgutil
|
|
'''
|
|
|
|
# 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 TMP
|
|
from tests.support.helpers import destructiveTest, skip_if_not_root
|
|
|
|
# Import salt libs
|
|
import salt.utils
|
|
|
|
TEST_PKG_URL = 'https://distfiles.macports.org/MacPorts/MacPorts-2.3.4-10.11-ElCapitan.pkg'
|
|
TEST_PKG_NAME = 'org.macports.MacPorts'
|
|
TEST_PKG = os.path.join(TMP, 'MacPorts-2.3.4-10.11-ElCapitan.pkg')
|
|
|
|
|
|
@skip_if_not_root
|
|
class MacPkgutilModuleTest(ModuleCase):
|
|
'''
|
|
Validate the mac_pkgutil module
|
|
'''
|
|
|
|
def setUp(self):
|
|
'''
|
|
Get current settings
|
|
'''
|
|
if not salt.utils.is_darwin():
|
|
self.skipTest('Test only available on macOS')
|
|
|
|
if not salt.utils.which('pkgutil'):
|
|
self.skipTest('Test requires pkgutil binary')
|
|
|
|
os_release = self.run_function('grains.get', ['osrelease'])
|
|
self.pkg_name = 'com.apple.pkg.BaseSystemResources'
|
|
if int(os_release.split('.')[1]) >= 13 and salt.utils.is_darwin():
|
|
self.pkg_name = 'com.apple.pkg.iTunesX'
|
|
|
|
def tearDown(self):
|
|
'''
|
|
Reset to original settings
|
|
'''
|
|
self.run_function('pkgutil.forget', [TEST_PKG_NAME])
|
|
self.run_function('file.remove', ['/opt/local'])
|
|
|
|
def test_list(self):
|
|
'''
|
|
Test pkgutil.list
|
|
'''
|
|
self.assertIsInstance(self.run_function('pkgutil.list'), list)
|
|
self.assertIn(self.pkg_name,
|
|
self.run_function('pkgutil.list'))
|
|
|
|
def test_is_installed(self):
|
|
'''
|
|
Test pkgutil.is_installed
|
|
'''
|
|
# Test Package is installed
|
|
self.assertTrue(
|
|
self.run_function('pkgutil.is_installed',
|
|
[self.pkg_name]))
|
|
|
|
# Test Package is not installed
|
|
self.assertFalse(
|
|
self.run_function('pkgutil.is_installed', ['spongebob']))
|
|
|
|
@destructiveTest
|
|
def test_install_forget(self):
|
|
'''
|
|
Test pkgutil.install
|
|
Test pkgutil.forget
|
|
'''
|
|
# Test if installed
|
|
self.assertFalse(
|
|
self.run_function('pkgutil.is_installed', [TEST_PKG_NAME]))
|
|
|
|
# Download the package
|
|
self.run_function('cp.get_url', [TEST_PKG_URL, TEST_PKG])
|
|
|
|
# Test install
|
|
self.assertTrue(
|
|
self.run_function('pkgutil.install', [TEST_PKG, TEST_PKG_NAME]))
|
|
self.assertIn(
|
|
'Unsupported scheme',
|
|
self.run_function('pkgutil.install', ['ftp://test', 'spongebob']))
|
|
|
|
# Test forget
|
|
self.assertTrue(self.run_function('pkgutil.forget', [TEST_PKG_NAME]))
|