2009-02-12 11:55:38 -04:00
|
|
|
"""
|
|
|
|
Test suite for OS X interpreter environment variables.
|
|
|
|
"""
|
|
|
|
|
2015-04-13 17:00:43 -03:00
|
|
|
from test.support import EnvironmentVarGuard
|
2009-02-12 11:55:38 -04:00
|
|
|
import subprocess
|
|
|
|
import sys
|
2011-03-01 20:31:51 -04:00
|
|
|
import sysconfig
|
2009-02-12 11:55:38 -04:00
|
|
|
import unittest
|
|
|
|
|
2013-04-18 23:38:18 -03:00
|
|
|
@unittest.skipUnless(sys.platform == 'darwin' and
|
|
|
|
sysconfig.get_config_var('WITH_NEXT_FRAMEWORK'),
|
|
|
|
'unnecessary on this platform')
|
2009-02-12 11:55:38 -04:00
|
|
|
class OSXEnvironmentVariableTestCase(unittest.TestCase):
|
2010-07-23 08:48:36 -03:00
|
|
|
def _check_sys(self, ev, cond, sv, val = sys.executable + 'dummy'):
|
2009-02-12 11:55:38 -04:00
|
|
|
with EnvironmentVarGuard() as evg:
|
|
|
|
subpc = [str(sys.executable), '-c',
|
|
|
|
'import sys; sys.exit(2 if "%s" %s %s else 3)' % (val, cond, sv)]
|
|
|
|
# ensure environment variable does not exist
|
|
|
|
evg.unset(ev)
|
|
|
|
# test that test on sys.xxx normally fails
|
|
|
|
rc = subprocess.call(subpc)
|
|
|
|
self.assertEqual(rc, 3, "expected %s not %s %s" % (ev, cond, sv))
|
|
|
|
# set environ variable
|
|
|
|
evg.set(ev, val)
|
|
|
|
# test that sys.xxx has been influenced by the environ value
|
|
|
|
rc = subprocess.call(subpc)
|
|
|
|
self.assertEqual(rc, 2, "expected %s %s %s" % (ev, cond, sv))
|
|
|
|
|
|
|
|
def test_pythonexecutable_sets_sys_executable(self):
|
|
|
|
self._check_sys('PYTHONEXECUTABLE', '==', 'sys.executable')
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2013-04-18 23:38:18 -03:00
|
|
|
unittest.main()
|