1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126 |
- # -*- coding: utf-8 -*-
- '''
- tests for pkg state
- '''
- # Import Python libs
- from __future__ import absolute_import, print_function, unicode_literals
- import logging
- import os
- import time
- # Import Salt Testing libs
- from tests.support.case import ModuleCase
- from tests.support.mixins import SaltReturnAssertsMixin
- from tests.support.unit import skipIf
- from tests.support.helpers import (
- destructiveTest,
- requires_system_grains,
- requires_salt_modules,
- flaky
- )
- # Import Salt libs
- import salt.utils.path
- import salt.utils.pkg.rpm
- import salt.utils.platform
- # Import 3rd-party libs
- from salt.ext import six
- from salt.ext.six.moves import range # pylint: disable=import-error,redefined-builtin
- log = logging.getLogger(__name__)
- _PKG_TARGETS = {
- 'Arch': ['sl', 'libpng'],
- 'Debian': ['python-plist', 'apg'],
- 'RedHat': ['units', 'zsh-html'],
- 'FreeBSD': ['aalib', 'pth'],
- 'Suse': ['aalib', 'htop'],
- 'MacOS': ['libpng', 'jpeg'],
- 'Windows': ['putty', '7zip'],
- }
- _PKG_CAP_TARGETS = {
- 'Suse': [('perl(ZNC)', 'znc-perl')],
- }
- _PKG_TARGETS_32 = {
- 'CentOS': 'xz-devel.i686'
- }
- # Test packages with dot in pkg name
- # (https://github.com/saltstack/salt/issues/8614)
- _PKG_TARGETS_DOT = {
- 'RedHat': {'5': 'python-migrate0.5',
- '6': 'tomcat6-el-2.1-api',
- '7': 'tomcat-el-2.2-api'}
- }
- # Test packages with epoch in version
- # (https://github.com/saltstack/salt/issues/31619)
- _PKG_TARGETS_EPOCH = {
- 'RedHat': {'7': 'comps-extras'},
- }
- _WILDCARDS_SUPPORTED = ('Arch', 'Debian', 'RedHat')
- @flaky
- @destructiveTest
- @requires_salt_modules('pkg.version', 'pkg.latest_version')
- class PkgTest(ModuleCase, SaltReturnAssertsMixin):
- '''
- pkg.installed state tests
- '''
- RUN_FUNCTION_TIMEOUT = 600
- @classmethod
- @requires_system_grains
- def setUpClass(cls, grains):
- cls.grains = grains
- cls.__testcontext__ = {}
- @classmethod
- def tearDownClass(cls):
- cls.grains = None
- cls.__testcontext__ = None
- def setUp(self):
- '''
- Ensure that we only refresh the first time we run a test
- '''
- super(PkgTest, self).setUp()
- if 'refresh' not in self.__testcontext__:
- self.run_function('pkg.refresh_db')
- self.__testcontext__['refresh'] = True
- def _pkgmgr_avail(self):
- '''
- Return True if the package manager is available for use
- '''
- def proc_fd_lsof(path):
- '''
- Return True if any entry in /proc/locks points to path. Example data:
- .. code-block:: bash
- # cat /proc/locks
- 1: FLOCK ADVISORY WRITE 596 00:0f:10703 0 EOF
- 2: FLOCK ADVISORY WRITE 14590 00:0f:11282 0 EOF
- 3: POSIX ADVISORY WRITE 653 00:0f:11422 0 EOF
- '''
- import glob
- # https://www.centos.org/docs/5/html/5.2/Deployment_Guide/s2-proc-locks.html
- locks = self.run_function('cmd.run', ['cat /proc/locks']).splitlines()
- for line in locks:
- fields = line.split()
- try:
- major, minor, inode = fields[5].split(':')
- inode = int(inode)
- except (IndexError, ValueError):
- return False
- for fd in glob.glob('/proc/*/fd'):
- fd_path = os.path.realpath(fd)
- # If the paths match and the inode is locked
- if fd_path == path and os.stat(fd_path).st_ino == inode:
- return True
- return False
- def get_lock(path):
- '''
- Return True if any locks are found for path
- '''
- # Try lsof if it's available
- if salt.utils.path.which('lsof'):
- lock = self.run_function('cmd.run', ['lsof {0}'.format(path)])
- return True if len(lock) else False
- # Try to find any locks on path from /proc/locks
- elif self.grains.get('kernel') == 'Linux':
- return proc_fd_lsof(path)
- return False
- if 'Debian' in self.grains.get('os_family', ''):
- for path in ['/var/lib/apt/lists/lock']:
- if get_lock(path):
- return False
- return True
- def _latest_version(self, *names):
- '''
- Helper function which ensures that we don't make any unnecessary calls to
- pkg.latest_version to figure out what version we need to install. This
- won't stop pkg.latest_version from being run in a pkg.latest state, but it
- will reduce the amount of times we check the latest version here in the
- test suite.
- '''
- key = 'latest_version'
- if key not in self.__testcontext__:
- self.__testcontext__[key] = {}
- targets = [x for x in names if x not in self.__testcontext__[key]]
- if targets:
- result = self.run_function('pkg.latest_version', targets, refresh=False)
- try:
- self.__testcontext__[key].update(result)
- except ValueError:
- # Only a single target, pkg.latest_version returned a string
- self.__testcontext__[key][targets[0]] = result
- ret = dict([(x, self.__testcontext__[key][x]) for x in names])
- if len(names) == 1:
- return ret[names[0]]
- return ret
- def test_pkg_001_installed(self):
- '''
- This is a destructive test as it installs and then removes a package
- '''
- # Skip test if package manager not available
- if not self._pkgmgr_avail():
- self.skipTest('Package manager is not available')
- os_family = self.grains.get('os_family', '')
- pkg_targets = _PKG_TARGETS.get(os_family, [])
- # Make sure that we have targets that match the os_family. If this
- # fails then the _PKG_TARGETS dict above needs to have an entry added,
- # with two packages that are not installed before these tests are run
- self.assertTrue(pkg_targets)
- target = pkg_targets[0]
- version = self.run_function('pkg.version', [target])
- # If this assert fails, we need to find new targets, this test needs to
- # be able to test successful installation of packages, so this package
- # needs to not be installed before we run the states below
- self.assertFalse(version)
- ret = self.run_state('pkg.installed', name=target, refresh=False)
- self.assertSaltTrueReturn(ret)
- ret = self.run_state('pkg.removed', name=target)
- self.assertSaltTrueReturn(ret)
- def test_pkg_002_installed_with_version(self):
- '''
- This is a destructive test as it installs and then removes a package
- '''
- # Skip test if package manager not available
- if not self._pkgmgr_avail():
- self.skipTest('Package manager is not available')
- os_family = self.grains.get('os_family', '')
- pkg_targets = _PKG_TARGETS.get(os_family, [])
- # Don't perform this test on FreeBSD since version specification is not
- # supported.
- if os_family == 'FreeBSD':
- self.skip('Version specification not supported on FreeBSD')
- # Make sure that we have targets that match the os_family. If this
- # fails then the _PKG_TARGETS dict above needs to have an entry added,
- # with two packages that are not installed before these tests are run
- self.assertTrue(pkg_targets)
- if os_family == 'Arch':
- for idx in range(13):
- if idx == 12:
- raise Exception('Package database locked after 60 seconds, '
- 'bailing out')
- if not os.path.isfile('/var/lib/pacman/db.lck'):
- break
- time.sleep(5)
- target = pkg_targets[0]
- version = self._latest_version(target)
- # If this assert fails, we need to find new targets, this test needs to
- # be able to test successful installation of packages, so this package
- # needs to not be installed before we run the states below
- self.assertTrue(version)
- ret = self.run_state('pkg.installed',
- name=target,
- version=version,
- refresh=False)
- self.assertSaltTrueReturn(ret)
- ret = self.run_state('pkg.removed', name=target)
- self.assertSaltTrueReturn(ret)
- def test_pkg_003_installed_multipkg(self):
- '''
- This is a destructive test as it installs and then removes two packages
- '''
- # Skip test if package manager not available
- if not self._pkgmgr_avail():
- self.skipTest('Package manager is not available')
- os_family = self.grains.get('os_family', '')
- pkg_targets = _PKG_TARGETS.get(os_family, [])
- # Make sure that we have targets that match the os_family. If this
- # fails then the _PKG_TARGETS dict above needs to have an entry added,
- # with two packages that are not installed before these tests are run
- self.assertTrue(pkg_targets)
- version = self.run_function('pkg.version', pkg_targets)
- # If this assert fails, we need to find new targets, this test needs to
- # be able to test successful installation of packages, so these
- # packages need to not be installed before we run the states below
- try:
- self.assertFalse(any(version.values()))
- except AssertionError:
- self.assertSaltTrueReturn(self.run_state('pkg.removed', name=None, pkgs=pkg_targets))
- try:
- ret = self.run_state('pkg.installed',
- name=None,
- pkgs=pkg_targets,
- refresh=False)
- self.assertSaltTrueReturn(ret)
- finally:
- ret = self.run_state('pkg.removed', name=None, pkgs=pkg_targets)
- self.assertSaltTrueReturn(ret)
- def test_pkg_004_installed_multipkg_with_version(self):
- '''
- This is a destructive test as it installs and then removes two packages
- '''
- # Skip test if package manager not available
- if not self._pkgmgr_avail():
- self.skipTest('Package manager is not available')
- os_family = self.grains.get('os_family', '')
- pkg_targets = _PKG_TARGETS.get(os_family, [])
- # Don't perform this test on FreeBSD since version specification is not
- # supported.
- if os_family == 'FreeBSD':
- return
- # Make sure that we have targets that match the os_family. If this
- # fails then the _PKG_TARGETS dict above needs to have an entry added,
- # with two packages that are not installed before these tests are run
- self.assertTrue(bool(pkg_targets))
- if os_family == 'Arch':
- for idx in range(13):
- if idx == 12:
- raise Exception('Package database locked after 60 seconds, '
- 'bailing out')
- if not os.path.isfile('/var/lib/pacman/db.lck'):
- break
- time.sleep(5)
- version = self._latest_version(pkg_targets[0])
- # If this assert fails, we need to find new targets, this test needs to
- # be able to test successful installation of packages, so these
- # packages need to not be installed before we run the states below
- self.assertTrue(bool(version))
- pkgs = [{pkg_targets[0]: version}, pkg_targets[1]]
- try:
- ret = self.run_state('pkg.installed',
- name=None,
- pkgs=pkgs,
- refresh=False)
- self.assertSaltTrueReturn(ret)
- finally:
- ret = self.run_state('pkg.removed', name=None, pkgs=pkg_targets)
- self.assertSaltTrueReturn(ret)
- def test_pkg_005_installed_32bit(self):
- '''
- This is a destructive test as it installs and then removes a package
- '''
- # Skip test if package manager not available
- if not self._pkgmgr_avail():
- self.skipTest('Package manager is not available')
- os_name = self.grains.get('os', '')
- target = _PKG_TARGETS_32.get(os_name, '')
- # _PKG_TARGETS_32 is only populated for platforms for which Salt has to
- # munge package names for 32-bit-on-x86_64 (Currently only Ubuntu and
- # RHEL-based). Don't actually perform this test on other platforms.
- if target:
- # CentOS 5 has .i386 arch designation for 32-bit pkgs
- if os_name == 'CentOS' \
- and self.grains['osrelease'].startswith('5.'):
- target = target.replace('.i686', '.i386')
- version = self.run_function('pkg.version', [target])
- # If this assert fails, we need to find a new target. This test
- # needs to be able to test successful installation of packages, so
- # the target needs to not be installed before we run the states
- # below
- self.assertFalse(bool(version))
- ret = self.run_state('pkg.installed',
- name=target,
- refresh=False)
- self.assertSaltTrueReturn(ret)
- ret = self.run_state('pkg.removed', name=target)
- self.assertSaltTrueReturn(ret)
- def test_pkg_006_installed_32bit_with_version(self):
- '''
- This is a destructive test as it installs and then removes a package
- '''
- # Skip test if package manager not available
- if not self._pkgmgr_avail():
- self.skipTest('Package manager is not available')
- os_name = self.grains.get('os', '')
- target = _PKG_TARGETS_32.get(os_name, '')
- # _PKG_TARGETS_32 is only populated for platforms for which Salt has to
- # munge package names for 32-bit-on-x86_64 (Currently only Ubuntu and
- # RHEL-based). Don't actually perform this test on other platforms.
- if not target:
- self.skipTest('No targets configured for this test')
- if self.grains.get('os_family', '') == 'Arch':
- for idx in range(13):
- if idx == 12:
- raise Exception('Package database locked after 60 seconds, '
- 'bailing out')
- if not os.path.isfile('/var/lib/pacman/db.lck'):
- break
- time.sleep(5)
- # CentOS 5 has .i386 arch designation for 32-bit pkgs
- if os_name == 'CentOS' \
- and self.grains['osrelease'].startswith('5.'):
- target = target.replace('.i686', '.i386')
- version = self._latest_version(target)
- # If this assert fails, we need to find a new target. This test
- # needs to be able to test successful installation of the package, so
- # the target needs to not be installed before we run the states
- # below
- self.assertTrue(bool(version))
- ret = self.run_state('pkg.installed',
- name=target,
- version=version,
- refresh=False)
- self.assertSaltTrueReturn(ret)
- ret = self.run_state('pkg.removed', name=target)
- self.assertSaltTrueReturn(ret)
- def test_pkg_007_with_dot_in_pkgname(self):
- '''
- This tests for the regression found in the following issue:
- https://github.com/saltstack/salt/issues/8614
- This is a destructive test as it installs a package
- '''
- # Skip test if package manager not available
- if not self._pkgmgr_avail():
- self.skipTest('Package manager is not available')
- os_family = self.grains.get('os_family', '')
- os_version = self.grains.get('osmajorrelease')
- target = _PKG_TARGETS_DOT.get(os_family, {}).get(os_version)
- if not target:
- self.skipTest('No targets configured for this test')
- version = self._latest_version(target)
- # If this assert fails, we need to find a new target. This test
- # needs to be able to test successful installation of the package, so
- # the target needs to not be installed before we run the
- # pkg.installed state below
- self.assertTrue(bool(version))
- ret = self.run_state('pkg.installed', name=target, refresh=False)
- self.assertSaltTrueReturn(ret)
- ret = self.run_state('pkg.removed', name=target)
- self.assertSaltTrueReturn(ret)
- def test_pkg_008_epoch_in_version(self):
- '''
- This tests for the regression found in the following issue:
- https://github.com/saltstack/salt/issues/8614
- This is a destructive test as it installs a package
- '''
- # Skip test if package manager not available
- if not self._pkgmgr_avail():
- self.skipTest('Package manager is not available')
- os_family = self.grains.get('os_family', '')
- os_version = self.grains.get('osmajorrelease')
- target = _PKG_TARGETS_EPOCH.get(os_family, {}).get(os_version)
- if not target:
- self.skipTest('No targets configured for this test')
- version = self._latest_version(target)
- # If this assert fails, we need to find a new target. This test
- # needs to be able to test successful installation of the package, so
- # the target needs to not be installed before we run the
- # pkg.installed state below
- self.assertTrue(bool(version))
- ret = self.run_state('pkg.installed',
- name=target,
- version=version,
- refresh=False)
- self.assertSaltTrueReturn(ret)
- ret = self.run_state('pkg.removed', name=target)
- self.assertSaltTrueReturn(ret)
- @skipIf(salt.utils.platform.is_windows(), 'minion is windows')
- def test_pkg_009_latest_with_epoch(self):
- '''
- This tests for the following issue:
- https://github.com/saltstack/salt/issues/31014
- This is a destructive test as it installs a package
- '''
- # Skip test if package manager not available
- if not self._pkgmgr_avail():
- self.skipTest('Package manager is not available')
- test_name = 'bash-completion'
- if self.grains.get('os') == 'Amazon' and self.grains.get('osmajorrelease') != 2:
- test_name = 'bash-doc'
- ret = self.run_state('pkg.installed',
- name=test_name,
- refresh=False)
- self.assertSaltTrueReturn(ret)
- @requires_salt_modules('pkg.info_installed')
- def test_pkg_010_latest_with_epoch_and_info_installed(self):
- '''
- Need to check to ensure the package has been
- installed after the pkg_latest_epoch sls
- file has been run. This needs to be broken up into
- a separate method so I can add the requires_salt_modules
- decorator to only the pkg.info_installed command.
- '''
- # Skip test if package manager not available
- if not self._pkgmgr_avail():
- self.skipTest('Package manager is not available')
- package = 'bash-completion'
- if self.grains.get('os') == 'Amazon' and self.grains.get('osmajorrelease') != 2:
- package = 'bash-doc'
- pkgquery = 'version'
- ret = self.run_function('pkg.info_installed', [package])
- self.assertTrue(pkgquery in six.text_type(ret))
- def test_pkg_011_latest(self):
- '''
- This tests pkg.latest with a package that has no epoch (or a zero
- epoch).
- '''
- # Skip test if package manager not available
- if not self._pkgmgr_avail():
- self.skipTest('Package manager is not available')
- os_family = self.grains.get('os_family', '')
- pkg_targets = _PKG_TARGETS.get(os_family, [])
- # Make sure that we have targets that match the os_family. If this
- # fails then the _PKG_TARGETS dict above needs to have an entry added,
- # with two packages that are not installed before these tests are run
- self.assertTrue(pkg_targets)
- target = pkg_targets[0]
- version = self._latest_version(target)
- # If this assert fails, we need to find new targets, this test needs to
- # be able to test successful installation of packages, so this package
- # needs to not be installed before we run the states below
- self.assertTrue(version)
- ret = self.run_state('pkg.latest', name=target, refresh=False)
- self.assertSaltTrueReturn(ret)
- ret = self.run_state('pkg.removed', name=target)
- self.assertSaltTrueReturn(ret)
- def test_pkg_012_latest_only_upgrade(self):
- '''
- WARNING: This test will pick a package with an available upgrade (if
- there is one) and upgrade it to the latest version.
- '''
- os_family = self.grains.get('os_family', '')
- if os_family != 'Debian':
- self.skipTest('Minion is not Debian/Ubuntu')
- # Skip test if package manager not available
- if not self._pkgmgr_avail():
- self.skipTest('Package manager is not available')
- pkg_targets = _PKG_TARGETS.get(os_family, [])
- # Make sure that we have targets that match the os_family. If this
- # fails then the _PKG_TARGETS dict above needs to have an entry added,
- # with two packages that are not installed before these tests are run
- self.assertTrue(pkg_targets)
- target = pkg_targets[0]
- version = self._latest_version(target)
- # If this assert fails, we need to find new targets, this test needs to
- # be able to test that the state fails when you try to run the state
- # with only_upgrade=True on a package which is not already installed,
- # so the targeted package needs to not be installed before we run the
- # state below.
- self.assertTrue(version)
- ret = self.run_state('pkg.latest', name=target, refresh=False,
- only_upgrade=True)
- self.assertSaltFalseReturn(ret)
- # Now look for updates and try to run the state on a package which is
- # already up-to-date.
- installed_pkgs = self.run_function('pkg.list_pkgs')
- updates = self.run_function('pkg.list_upgrades', refresh=False)
- for pkgname in updates:
- if pkgname in installed_pkgs:
- target = pkgname
- break
- else:
- target = ''
- log.warning(
- 'No available upgrades to installed packages, skipping '
- 'only_upgrade=True test with already-installed package. For '
- 'best results run this test on a machine with upgrades '
- 'available.'
- )
- if target:
- ret = self.run_state('pkg.latest', name=target, refresh=False,
- only_upgrade=True)
- self.assertSaltTrueReturn(ret)
- new_version = self.run_function('pkg.version', [target])
- self.assertEqual(new_version, updates[target])
- ret = self.run_state('pkg.latest', name=target, refresh=False,
- only_upgrade=True)
- self.assertEqual(
- ret['pkg_|-{0}_|-{0}_|-latest'.format(target)]['comment'],
- 'Package {0} is already up-to-date'.format(target)
- )
- def test_pkg_013_installed_with_wildcard_version(self):
- '''
- This is a destructive test as it installs and then removes a package
- '''
- # Skip test if package manager not available
- if not self._pkgmgr_avail():
- self.skipTest('Package manager is not available')
- os_family = self.grains.get('os_family', '')
- if os_family not in _WILDCARDS_SUPPORTED:
- self.skipTest(
- 'Wildcards only supported on {0}'.format(
- ', '.join(_WILDCARDS_SUPPORTED)
- )
- )
- pkg_targets = _PKG_TARGETS.get(os_family, [])
- # Make sure that we have targets that match the os_family. If this
- # fails then the _PKG_TARGETS dict above needs to have an entry added,
- # with two packages that are not installed before these tests are run
- self.assertTrue(pkg_targets)
- target = pkg_targets[0]
- version = self.run_function('pkg.version', [target])
- # If this assert fails, we need to find new targets, this test needs to
- # be able to test successful installation of packages, so this package
- # needs to not be installed before we run the states below
- self.assertFalse(version)
- ret = self.run_state(
- 'pkg.installed',
- name=target,
- version='*',
- refresh=False,
- )
- self.assertSaltTrueReturn(ret)
- # Repeat state, should pass
- ret = self.run_state(
- 'pkg.installed',
- name=target,
- version='*',
- refresh=False,
- )
- expected_comment = (
- 'All specified packages are already installed and are at the '
- 'desired version'
- )
- self.assertSaltTrueReturn(ret)
- self.assertEqual(ret[next(iter(ret))]['comment'], expected_comment)
- # Repeat one more time with unavailable version, test should fail
- ret = self.run_state(
- 'pkg.installed',
- name=target,
- version='93413*',
- refresh=False,
- )
- self.assertSaltFalseReturn(ret)
- # Clean up
- ret = self.run_state('pkg.removed', name=target)
- self.assertSaltTrueReturn(ret)
- def test_pkg_014_installed_with_comparison_operator(self):
- '''
- This is a destructive test as it installs and then removes a package
- '''
- # Skip test if package manager not available
- if not self._pkgmgr_avail():
- self.skipTest('Package manager is not available')
- os_family = self.grains.get('os_family', '')
- if os_family not in ('Debian', 'RedHat'):
- self.skipTest('Comparison operator not specially implemented')
- pkg_targets = _PKG_TARGETS.get(os_family, [])
- # Make sure that we have targets that match the os_family. If this
- # fails then the _PKG_TARGETS dict above needs to have an entry added,
- # with two packages that are not installed before these tests are run
- self.assertTrue(pkg_targets)
- target = pkg_targets[0]
- version = self.run_function('pkg.version', [target])
- # If this assert fails, we need to find new targets, this test needs to
- # be able to test successful installation of packages, so this package
- # needs to not be installed before we run the states below
- self.assertFalse(version)
- latest_version = self.run_function(
- 'pkg.latest_version',
- [target],
- refresh=False)
- try:
- ret = self.run_state(
- 'pkg.installed',
- name=target,
- version='<9999999',
- refresh=False,
- )
- self.assertSaltTrueReturn(ret)
- # The version that was installed should be the latest available
- version = self.run_function('pkg.version', [target])
- self.assertTrue(version, latest_version)
- finally:
- # Clean up
- ret = self.run_state('pkg.removed', name=target)
- self.assertSaltTrueReturn(ret)
- def test_pkg_014_installed_missing_release(self): # pylint: disable=unused-argument
- '''
- Tests that a version number missing the release portion still resolves
- as correctly installed. For example, version 2.0.2 instead of 2.0.2-1.el7
- '''
- os_family = self.grains.get('os_family', '')
- if os_family.lower() != 'redhat':
- self.skipTest('Test only runs on RedHat OS family')
- pkg_targets = _PKG_TARGETS.get(os_family, [])
- # Make sure that we have targets that match the os_family. If this
- # fails then the _PKG_TARGETS dict above needs to have an entry added,
- # with two packages that are not installed before these tests are run
- self.assertTrue(pkg_targets)
- target = pkg_targets[0]
- version = self.run_function('pkg.version', [target])
- # If this assert fails, we need to find new targets, this test needs to
- # be able to test successful installation of packages, so this package
- # needs to not be installed before we run the states below
- self.assertFalse(version)
- ret = self.run_state(
- 'pkg.installed',
- name=target,
- version=salt.utils.pkg.rpm.version_to_evr(version)[1],
- refresh=False,
- )
- self.assertSaltTrueReturn(ret)
- # Clean up
- ret = self.run_state('pkg.removed', name=target)
- self.assertSaltTrueReturn(ret)
- @requires_salt_modules('pkg.group_install')
- def test_group_installed_handle_missing_package_group(self): # pylint: disable=unused-argument
- '''
- Tests that a CommandExecutionError is caught and the state returns False when
- the package group is missing. Before this fix, the state would stacktrace.
- See Issue #35819 for bug report.
- '''
- # Skip test if package manager not available
- if not self._pkgmgr_avail():
- self.skipTest('Package manager is not available')
- # Group install not available message
- grp_install_msg = 'pkg.group_install not available for this platform'
- # Run the pkg.group_installed state with a fake package group
- ret = self.run_state('pkg.group_installed', name='handle_missing_pkg_group',
- skip=['foo-bar-baz'])
- ret_comment = ret['pkg_|-handle_missing_pkg_group_|-handle_missing_pkg_group_|-group_installed']['comment']
- # Not all package managers support group_installed. Skip this test if not supported.
- if ret_comment == grp_install_msg:
- self.skipTest(grp_install_msg)
- # Test state should return False and should have the right comment
- self.assertSaltFalseReturn(ret)
- self.assertEqual(ret_comment, 'An error was encountered while installing/updating group '
- '\'handle_missing_pkg_group\': Group \'handle_missing_pkg_group\' '
- 'not found.')
- @skipIf(salt.utils.platform.is_windows(), 'minion is windows')
- def test_pkg_cap_001_installed(self):
- '''
- This is a destructive test as it installs and then removes a package
- '''
- # Skip test if package manager not available
- if not self._pkgmgr_avail():
- self.skipTest('Package manager is not available')
- os_family = self.grains.get('os_family', '')
- pkg_cap_targets = _PKG_CAP_TARGETS.get(os_family, [])
- if not len(pkg_cap_targets) > 0:
- self.skipTest('Capability not provided')
- target, realpkg = pkg_cap_targets[0]
- version = self.run_function('pkg.version', [target])
- realver = self.run_function('pkg.version', [realpkg])
- # If this assert fails, we need to find new targets, this test needs to
- # be able to test successful installation of packages, so this package
- # needs to not be installed before we run the states below
- self.assertFalse(version)
- self.assertFalse(realver)
- try:
- ret = self.run_state('pkg.installed', name=target, refresh=False, resolve_capabilities=True, test=True)
- self.assertInSaltComment("The following packages would be installed/updated: {0}".format(realpkg), ret)
- ret = self.run_state('pkg.installed', name=target, refresh=False, resolve_capabilities=True)
- self.assertSaltTrueReturn(ret)
- finally:
- ret = self.run_state('pkg.removed', name=realpkg)
- self.assertSaltTrueReturn(ret)
- @skipIf(salt.utils.platform.is_windows(), 'minion is windows')
- def test_pkg_cap_002_already_installed(self):
- '''
- This is a destructive test as it installs and then removes a package
- '''
- # Skip test if package manager not available
- if not self._pkgmgr_avail():
- self.skipTest('Package manager is not available')
- os_family = self.grains.get('os_family', '')
- pkg_cap_targets = _PKG_CAP_TARGETS.get(os_family, [])
- if not len(pkg_cap_targets) > 0:
- self.skipTest('Capability not provided')
- target, realpkg = pkg_cap_targets[0]
- version = self.run_function('pkg.version', [target])
- realver = self.run_function('pkg.version', [realpkg])
- # If this assert fails, we need to find new targets, this test needs to
- # be able to test successful installation of packages, so this package
- # needs to not be installed before we run the states below
- self.assertFalse(version)
- self.assertFalse(realver)
- try:
- # install the package
- ret = self.run_state('pkg.installed', name=realpkg, refresh=False)
- self.assertSaltTrueReturn(ret)
- # Try to install again. Nothing should be installed this time.
- ret = self.run_state('pkg.installed', name=target, refresh=False, resolve_capabilities=True, test=True)
- self.assertInSaltComment("All specified packages are already installed", ret)
- ret = self.run_state('pkg.installed', name=target, refresh=False, resolve_capabilities=True)
- self.assertSaltTrueReturn(ret)
- self.assertInSaltComment("packages are already installed", ret)
- finally:
- ret = self.run_state('pkg.removed', name=realpkg)
- self.assertSaltTrueReturn(ret)
- @skipIf(salt.utils.platform.is_windows(), 'minion is windows')
- def test_pkg_cap_003_installed_multipkg_with_version(self):
- '''
- This is a destructive test as it installs and then removes two packages
- '''
- # Skip test if package manager not available
- if not self._pkgmgr_avail():
- self.skipTest('Package manager is not available')
- os_family = self.grains.get('os_family', '')
- pkg_cap_targets = _PKG_CAP_TARGETS.get(os_family, [])
- if not len(pkg_cap_targets) > 0:
- self.skipTest('Capability not provided')
- pkg_targets = _PKG_TARGETS.get(os_family, [])
- # Don't perform this test on FreeBSD since version specification is not
- # supported.
- if os_family == 'FreeBSD':
- return
- # Make sure that we have targets that match the os_family. If this
- # fails then the _PKG_TARGETS dict above needs to have an entry added,
- # with two packages that are not installed before these tests are run
- self.assertTrue(pkg_cap_targets)
- self.assertTrue(pkg_targets)
- if os_family == 'Arch':
- for idx in range(13):
- if idx == 12:
- raise Exception('Package database locked after 60 seconds, '
- 'bailing out')
- if not os.path.isfile('/var/lib/pacman/db.lck'):
- break
- time.sleep(5)
- capability, realpkg = pkg_cap_targets[0]
- version = self._latest_version(pkg_targets[0])
- realver = self._latest_version(realpkg)
- # If this assert fails, we need to find new targets, this test needs to
- # be able to test successful installation of packages, so these
- # packages need to not be installed before we run the states below
- self.assertTrue(version)
- self.assertTrue(realver)
- try:
- pkgs = [{pkg_targets[0]: version}, pkg_targets[1], {capability: realver}]
- ret = self.run_state('pkg.installed',
- name='test_pkg_cap_003_installed_multipkg_with_version-install',
- pkgs=pkgs,
- refresh=False)
- self.assertSaltFalseReturn(ret)
- ret = self.run_state('pkg.installed',
- name='test_pkg_cap_003_installed_multipkg_with_version-install-capability',
- pkgs=pkgs,
- refresh=False, resolve_capabilities=True, test=True)
- self.assertInSaltComment("packages would be installed/updated", ret)
- self.assertInSaltComment("{0}={1}".format(realpkg, realver), ret)
- ret = self.run_state('pkg.installed',
- name='test_pkg_cap_003_installed_multipkg_with_version-install-capability',
- pkgs=pkgs,
- refresh=False, resolve_capabilities=True)
- self.assertSaltTrueReturn(ret)
- cleanup_pkgs = pkg_targets
- cleanup_pkgs.append(realpkg)
- finally:
- ret = self.run_state('pkg.removed',
- name='test_pkg_cap_003_installed_multipkg_with_version-remove',
- pkgs=cleanup_pkgs)
- self.assertSaltTrueReturn(ret)
- @skipIf(salt.utils.platform.is_windows(), 'minion is windows')
- def test_pkg_cap_004_latest(self):
- '''
- This tests pkg.latest with a package that has no epoch (or a zero
- epoch).
- '''
- # Skip test if package manager not available
- if not self._pkgmgr_avail():
- self.skipTest('Package manager is not available')
- os_family = self.grains.get('os_family', '')
- pkg_cap_targets = _PKG_CAP_TARGETS.get(os_family, [])
- if not len(pkg_cap_targets) > 0:
- self.skipTest('Capability not provided')
- target, realpkg = pkg_cap_targets[0]
- version = self.run_function('pkg.version', [target])
- realver = self.run_function('pkg.version', [realpkg])
- # If this assert fails, we need to find new targets, this test needs to
- # be able to test successful installation of packages, so this package
- # needs to not be installed before we run the states below
- self.assertFalse(version)
- self.assertFalse(realver)
- try:
- ret = self.run_state('pkg.latest', name=target, refresh=False, resolve_capabilities=True, test=True)
- self.assertInSaltComment("The following packages would be installed/upgraded: {0}".format(realpkg), ret)
- ret = self.run_state('pkg.latest', name=target, refresh=False, resolve_capabilities=True)
- self.assertSaltTrueReturn(ret)
- ret = self.run_state('pkg.latest', name=target, refresh=False, resolve_capabilities=True)
- self.assertSaltTrueReturn(ret)
- self.assertInSaltComment("is already up-to-date", ret)
- finally:
- ret = self.run_state('pkg.removed', name=realpkg)
- self.assertSaltTrueReturn(ret)
- @skipIf(salt.utils.platform.is_windows(), 'minion is windows')
- def test_pkg_cap_005_downloaded(self):
- '''
- This is a destructive test as it installs and then removes a package
- '''
- # Skip test if package manager not available
- if not self._pkgmgr_avail():
- self.skipTest('Package manager is not available')
- os_family = self.grains.get('os_family', '')
- pkg_cap_targets = _PKG_CAP_TARGETS.get(os_family, [])
- if not len(pkg_cap_targets) > 0:
- self.skipTest('Capability not provided')
- target, realpkg = pkg_cap_targets[0]
- version = self.run_function('pkg.version', [target])
- realver = self.run_function('pkg.version', [realpkg])
- # If this assert fails, we need to find new targets, this test needs to
- # be able to test successful installation of packages, so this package
- # needs to not be installed before we run the states below
- self.assertFalse(version)
- self.assertFalse(realver)
- ret = self.run_state('pkg.downloaded', name=target, refresh=False)
- self.assertSaltFalseReturn(ret)
- ret = self.run_state('pkg.downloaded', name=target, refresh=False, resolve_capabilities=True, test=True)
- self.assertInSaltComment("The following packages would be downloaded: {0}".format(realpkg), ret)
- ret = self.run_state('pkg.downloaded', name=target, refresh=False, resolve_capabilities=True)
- self.assertSaltTrueReturn(ret)
- @skipIf(salt.utils.platform.is_windows(), 'minion is windows')
- def test_pkg_cap_006_uptodate(self):
- '''
- This is a destructive test as it installs and then removes a package
- '''
- # Skip test if package manager not available
- if not self._pkgmgr_avail():
- self.skipTest('Package manager is not available')
- os_family = self.grains.get('os_family', '')
- pkg_cap_targets = _PKG_CAP_TARGETS.get(os_family, [])
- if not len(pkg_cap_targets) > 0:
- self.skipTest('Capability not provided')
- target, realpkg = pkg_cap_targets[0]
- version = self.run_function('pkg.version', [target])
- realver = self.run_function('pkg.version', [realpkg])
- # If this assert fails, we need to find new targets, this test needs to
- # be able to test successful installation of packages, so this package
- # needs to not be installed before we run the states below
- self.assertFalse(version)
- self.assertFalse(realver)
- try:
- ret = self.run_state('pkg.installed', name=target,
- refresh=False, resolve_capabilities=True)
- self.assertSaltTrueReturn(ret)
- ret = self.run_state('pkg.uptodate',
- name='test_pkg_cap_006_uptodate',
- pkgs=[target],
- refresh=False,
- resolve_capabilities=True)
- self.assertSaltTrueReturn(ret)
- self.assertInSaltComment("System is already up-to-date", ret)
- finally:
- ret = self.run_state('pkg.removed', name=realpkg)
- self.assertSaltTrueReturn(ret)
- @skipIf(True, 'WAR ROOM TEMPORARY SKIP') # needs to be rewritten to allow for dnf on Fedora 30 and RHEL 8
- @requires_salt_modules('pkg.hold', 'pkg.unhold')
- def test_pkg_015_installed_held(self): # pylint: disable=unused-argument
- '''
- Tests that a package can be held even when the package is already installed.
- '''
- os_family = self.grains.get('os_family', '')
- if os_family.lower() != 'redhat' and os_family.lower() != 'debian':
- self.skipTest('Test only runs on RedHat or Debian family')
- pkg_targets = _PKG_TARGETS.get(os_family, [])
- if os_family.lower() == 'redhat':
- # If we're in the Red Hat family first we ensure that
- # the yum-plugin-versionlock package is installed
- ret = self.run_state(
- 'pkg.installed',
- name='yum-plugin-versionlock',
- refresh=False,
- )
- self.assertSaltTrueReturn(ret)
- # Make sure that we have targets that match the os_family. If this
- # fails then the _PKG_TARGETS dict above needs to have an entry added,
- # with two packages that are not installed before these tests are run
- self.assertTrue(pkg_targets)
- target = pkg_targets[0]
- # First we ensure that the package is installed
- ret = self.run_state(
- 'pkg.installed',
- name=target,
- refresh=False,
- )
- self.assertSaltTrueReturn(ret)
- # Then we check that the package is now held
- ret = self.run_state(
- 'pkg.installed',
- name=target,
- hold=True,
- refresh=False,
- )
- # changes from pkg.hold for Red Hat family are different
- if os_family.lower() == 'redhat':
- target_changes = {'new': 'hold', 'old': ''}
- elif os_family.lower() == 'debian':
- target_changes = {'new': 'hold', 'old': 'install'}
- try:
- tag = 'pkg_|-{0}_|-{0}_|-installed'.format(target)
- self.assertSaltTrueReturn(ret)
- self.assertIn(tag, ret)
- self.assertIn('changes', ret[tag])
- self.assertIn(target, ret[tag]['changes'])
- self.assertEqual(ret[tag]['changes'][target], target_changes)
- finally:
- # Clean up, unhold package and remove
- self.run_function('pkg.unhold', name=target)
- ret = self.run_state('pkg.removed', name=target)
- self.assertSaltTrueReturn(ret)
- if os_family.lower() == 'redhat':
- ret = self.run_state('pkg.removed',
- name='yum-plugin-versionlock')
- self.assertSaltTrueReturn(ret)
|