salt/tests/integration/states/test_virtualenv.py

137 lines
4.8 KiB
Python
Raw Normal View History

2012-09-30 11:20:38 +00:00
# -*- coding: utf-8 -*-
'''
:codeauthor: :email:`Pedro Algarvio (pedro@algarvio.me)`
tests.integration.states.virtualenv
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
'''
2012-09-30 11:20:38 +00:00
# Import python libs
from __future__ import absolute_import
2012-09-30 11:20:38 +00:00
import os
import shutil
# Import Salt Testing libs
from tests.support.case import ModuleCase
from tests.support.unit import skipIf
from tests.support.helpers import destructiveTest, skip_if_not_root
2017-04-02 16:09:47 +00:00
from tests.support.mixins import SaltReturnAssertsMixin
from tests.support.runtests import RUNTIME_VARS
# Import salt libs
import salt.utils
from salt.modules.virtualenv_mod import KNOWN_BINARY_NAMES
2012-09-30 11:20:38 +00:00
@skipIf(salt.utils.which_bin(KNOWN_BINARY_NAMES) is None, 'virtualenv not installed')
class VirtualenvTest(ModuleCase, SaltReturnAssertsMixin):
2012-09-30 11:20:38 +00:00
@destructiveTest
@skip_if_not_root
2012-09-30 11:20:38 +00:00
def test_issue_1959_virtualenv_runas(self):
user = 'issue-1959'
self.assertSaltTrueReturn(self.run_state('user.present', name=user))
2012-09-30 11:20:38 +00:00
uinfo = self.run_function('user.info', [user])
venv_dir = os.path.join(
RUNTIME_VARS.SYS_TMP_DIR, 'issue-1959-virtualenv-runas'
)
2012-09-30 11:20:38 +00:00
try:
ret = self.run_function(
'state.sls', mods='issue-1959-virtualenv-runas'
)
self.assertSaltTrueReturn(ret)
2012-09-30 11:20:38 +00:00
# Lets check proper ownership
statinfo = self.run_function('file.stats', [venv_dir])
self.assertEqual(statinfo['user'], uinfo['name'])
self.assertEqual(statinfo['uid'], uinfo['uid'])
finally:
if os.path.isdir(venv_dir):
shutil.rmtree(venv_dir)
2017-04-04 23:51:35 +00:00
self.assertSaltTrueReturn(self.run_state('user.absent', name=user, purge=True))
def test_issue_2594_non_invalidated_cache(self):
# Testing virtualenv directory
venv_path = os.path.join(RUNTIME_VARS.TMP, 'issue-2594-ve')
if os.path.exists(venv_path):
shutil.rmtree(venv_path)
# Our virtualenv requirements file
requirements_file_path = os.path.join(
RUNTIME_VARS.TMP_STATE_TREE, 'issue-2594-requirements.txt'
)
if os.path.exists(requirements_file_path):
os.unlink(requirements_file_path)
# Our state template
template = [
'{0}:'.format(venv_path),
' virtualenv.managed:',
' - system_site_packages: False',
' - clear: false',
' - requirements: salt://issue-2594-requirements.txt',
]
# Let's populate the requirements file, just pep-8 for now
with salt.utils.fopen(requirements_file_path, 'a') as fhw:
fhw.write('pep8==1.3.3\n')
# Let's run our state!!!
try:
ret = self.run_function(
'state.template_str', ['\n'.join(template)]
)
self.assertSaltTrueReturn(ret)
self.assertInSaltComment('Created new virtualenv', ret)
self.assertSaltStateChangesEqual(
ret, ['pep8==1.3.3'], keys=('packages', 'new')
)
except AssertionError:
# Always clean up the tests temp files
if os.path.exists(venv_path):
shutil.rmtree(venv_path)
if os.path.exists(requirements_file_path):
os.unlink(requirements_file_path)
raise
# Let's make sure, it really got installed
ret = self.run_function('pip.freeze', bin_env=venv_path)
self.assertIn('pep8==1.3.3', ret)
self.assertNotIn('zope.interface==4.0.1', ret)
# Now let's update the requirements file, which is now cached.
with salt.utils.fopen(requirements_file_path, 'w') as fhw:
fhw.write('zope.interface==4.0.1\n')
# Let's run our state!!!
try:
ret = self.run_function(
'state.template_str', ['\n'.join(template)]
)
self.assertSaltTrueReturn(ret)
self.assertInSaltComment('virtualenv exists', ret)
self.assertSaltStateChangesEqual(
ret, ['zope.interface==4.0.1'], keys=('packages', 'new')
)
except AssertionError:
# Always clean up the tests temp files
if os.path.exists(venv_path):
shutil.rmtree(venv_path)
if os.path.exists(requirements_file_path):
os.unlink(requirements_file_path)
raise
# Let's make sure, it really got installed
ret = self.run_function('pip.freeze', bin_env=venv_path)
self.assertIn('pep8==1.3.3', ret)
self.assertIn('zope.interface==4.0.1', ret)
# If we reached this point no assertion failed, so, cleanup!
if os.path.exists(venv_path):
shutil.rmtree(venv_path)
if os.path.exists(requirements_file_path):
os.unlink(requirements_file_path)