2008-05-29 18:22:40 -03:00
|
|
|
import os
|
2020-12-31 15:08:03 -04:00
|
|
|
import copy
|
|
|
|
import pickle
|
2005-11-21 13:48:12 -04:00
|
|
|
import platform
|
2008-10-06 01:51:11 -03:00
|
|
|
import subprocess
|
2011-06-10 08:59:59 -03:00
|
|
|
import sys
|
|
|
|
import unittest
|
2018-12-05 09:04:52 -04:00
|
|
|
from unittest import mock
|
2005-11-21 13:48:12 -04:00
|
|
|
|
2008-05-20 18:35:26 -03:00
|
|
|
from test import support
|
2020-06-25 07:38:51 -03:00
|
|
|
from test.support import os_helper
|
Merged revisions 63208-63209,63211-63212,63214-63217,63219-63224,63226-63227,63229-63232,63234-63235,63237-63239,63241,63243-63246,63250-63254,63256-63259,63261,63263-63264,63266-63267,63269-63270,63272-63273,63275-63276,63278,63280-63281,63283-63284,63286-63287,63289-63290,63292-63293,63295-63296,63298-63299,63301-63302,63304-63305,63307,63309-63314,63316-63322,63324-63325,63327-63335,63337-63338,63340-63342,63344-63346,63348 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r63208 | georg.brandl | 2008-05-13 15:04:54 -0400 (Tue, 13 May 2008) | 2 lines
#2831: add start argument to enumerate(). Patch by Scott Dial and me.
........
r63209 | marc-andre.lemburg | 2008-05-13 15:10:45 -0400 (Tue, 13 May 2008) | 3 lines
Remove leftovers from reverted setuptools checkin (they were added in r45525).
........
r63211 | georg.brandl | 2008-05-13 17:32:03 -0400 (Tue, 13 May 2008) | 2 lines
Fix a refleak in the _warnings module.
........
r63212 | andrew.kuchling | 2008-05-13 20:46:41 -0400 (Tue, 13 May 2008) | 1 line
List all the removes and renamed modules
........
r63214 | brett.cannon | 2008-05-13 21:09:40 -0400 (Tue, 13 May 2008) | 2 lines
Rewrap some lines in test_py3kwarn.
........
r63219 | georg.brandl | 2008-05-14 02:34:15 -0400 (Wed, 14 May 2008) | 2 lines
Add NEWS entry for #2831.
........
r63220 | neal.norwitz | 2008-05-14 02:47:56 -0400 (Wed, 14 May 2008) | 3 lines
Fix "refleak" by restoring the tearDown method removed by accident (AFAICT)
in r62788.
........
r63221 | georg.brandl | 2008-05-14 03:18:22 -0400 (Wed, 14 May 2008) | 2 lines
Fix another "refleak" by clearing the filters after test.
........
r63222 | neal.norwitz | 2008-05-14 03:21:42 -0400 (Wed, 14 May 2008) | 5 lines
Install the json package and tests as well as the lib2to3 tests
so the tests work when run from an install directory.
They are currently skipped on the daily runs (not from the buildbots)
for checking refleaks, etc.
........
r63256 | andrew.kuchling | 2008-05-14 21:10:24 -0400 (Wed, 14 May 2008) | 1 line
Note some removals and a rename
........
r63311 | brett.cannon | 2008-05-15 00:36:53 -0400 (Thu, 15 May 2008) | 2 lines
Add a snippet for the deprecation directive for docs.
........
r63313 | gregory.p.smith | 2008-05-15 00:56:18 -0400 (Thu, 15 May 2008) | 5 lines
disable the crashing test. I will also file a bug. This crash does
not appear to be a new bug, its just that the test coverage went up
recently exposing it. (I verified that by testing this test code on
an older Modules/_bsddb.c)
........
r63320 | georg.brandl | 2008-05-15 11:08:32 -0400 (Thu, 15 May 2008) | 2 lines
#2863: add gen.__name__ and add this name to generator repr().
........
r63324 | andrew.kuchling | 2008-05-15 16:07:39 -0400 (Thu, 15 May 2008) | 1 line
Import class from distutils.cmd, not .core, to avoid circular import
........
r63327 | alexandre.vassalotti | 2008-05-15 16:31:42 -0400 (Thu, 15 May 2008) | 2 lines
Fixed typo in a doctest of test_genexps.
........
r63332 | benjamin.peterson | 2008-05-15 18:34:33 -0400 (Thu, 15 May 2008) | 2 lines
add Mac modules to the list of deprecated ones
........
r63333 | benjamin.peterson | 2008-05-15 18:41:16 -0400 (Thu, 15 May 2008) | 2 lines
fix typos in whatsnew
........
r63348 | benjamin.peterson | 2008-05-15 22:24:49 -0400 (Thu, 15 May 2008) | 2 lines
make test_platform a bit more assertive (We'll see what the buildbots say.)
........
2008-05-16 01:39:54 -03:00
|
|
|
|
2024-03-28 04:59:33 -03:00
|
|
|
try:
|
|
|
|
# Some of the iOS tests need ctypes to operate.
|
|
|
|
# Confirm that the ctypes module is available
|
|
|
|
# is available.
|
|
|
|
import _ctypes
|
|
|
|
except ImportError:
|
|
|
|
_ctypes = None
|
|
|
|
|
2020-11-30 17:34:45 -04:00
|
|
|
FEDORA_OS_RELEASE = """\
|
|
|
|
NAME=Fedora
|
|
|
|
VERSION="32 (Thirty Two)"
|
|
|
|
ID=fedora
|
|
|
|
VERSION_ID=32
|
|
|
|
VERSION_CODENAME=""
|
|
|
|
PLATFORM_ID="platform:f32"
|
|
|
|
PRETTY_NAME="Fedora 32 (Thirty Two)"
|
|
|
|
ANSI_COLOR="0;34"
|
|
|
|
LOGO=fedora-logo-icon
|
|
|
|
CPE_NAME="cpe:/o:fedoraproject:fedora:32"
|
|
|
|
HOME_URL="https://fedoraproject.org/"
|
|
|
|
DOCUMENTATION_URL="https://docs.fedoraproject.org/en-US/fedora/f32/system-administrators-guide/"
|
|
|
|
SUPPORT_URL="https://fedoraproject.org/wiki/Communicating_and_getting_help"
|
|
|
|
BUG_REPORT_URL="https://bugzilla.redhat.com/"
|
|
|
|
REDHAT_BUGZILLA_PRODUCT="Fedora"
|
|
|
|
REDHAT_BUGZILLA_PRODUCT_VERSION=32
|
|
|
|
REDHAT_SUPPORT_PRODUCT="Fedora"
|
|
|
|
REDHAT_SUPPORT_PRODUCT_VERSION=32
|
|
|
|
PRIVACY_POLICY_URL="https://fedoraproject.org/wiki/Legal:PrivacyPolicy"
|
|
|
|
"""
|
|
|
|
|
|
|
|
UBUNTU_OS_RELEASE = """\
|
|
|
|
NAME="Ubuntu"
|
|
|
|
VERSION="20.04.1 LTS (Focal Fossa)"
|
|
|
|
ID=ubuntu
|
|
|
|
ID_LIKE=debian
|
|
|
|
PRETTY_NAME="Ubuntu 20.04.1 LTS"
|
|
|
|
VERSION_ID="20.04"
|
|
|
|
HOME_URL="https://www.ubuntu.com/"
|
|
|
|
SUPPORT_URL="https://help.ubuntu.com/"
|
|
|
|
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
|
|
|
|
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
|
|
|
|
VERSION_CODENAME=focal
|
|
|
|
UBUNTU_CODENAME=focal
|
|
|
|
"""
|
|
|
|
|
|
|
|
TEST_OS_RELEASE = r"""
|
|
|
|
# test data
|
|
|
|
ID_LIKE="egg spam viking"
|
|
|
|
EMPTY=
|
|
|
|
# comments and empty lines are ignored
|
|
|
|
|
|
|
|
SINGLE_QUOTE='single'
|
|
|
|
EMPTY_SINGLE=''
|
|
|
|
DOUBLE_QUOTE="double"
|
|
|
|
EMPTY_DOUBLE=""
|
|
|
|
QUOTES="double\'s"
|
|
|
|
SPECIALS="\$\`\\\'\""
|
|
|
|
# invalid lines
|
|
|
|
=invalid
|
|
|
|
=
|
|
|
|
INVALID
|
|
|
|
IN-VALID=value
|
|
|
|
IN VALID=value
|
|
|
|
"""
|
|
|
|
|
2019-07-01 13:28:25 -03:00
|
|
|
|
2005-11-21 13:48:12 -04:00
|
|
|
class PlatformTest(unittest.TestCase):
|
2018-12-05 17:41:52 -04:00
|
|
|
def clear_caches(self):
|
|
|
|
platform._platform_cache.clear()
|
|
|
|
platform._sys_version_cache.clear()
|
|
|
|
platform._uname_cache = None
|
2020-11-30 17:34:45 -04:00
|
|
|
platform._os_release_cache = None
|
2018-12-05 17:41:52 -04:00
|
|
|
|
2005-11-21 13:48:12 -04:00
|
|
|
def test_architecture(self):
|
|
|
|
res = platform.architecture()
|
|
|
|
|
2020-06-25 07:38:51 -03:00
|
|
|
@os_helper.skip_unless_symlink
|
2022-01-25 03:09:06 -04:00
|
|
|
@support.requires_subprocess()
|
2010-07-08 18:39:08 -03:00
|
|
|
def test_architecture_via_symlink(self): # issue3762
|
2019-06-29 14:34:11 -03:00
|
|
|
with support.PythonSymlink() as py:
|
|
|
|
cmd = "-c", "import platform; print(platform.architecture())"
|
|
|
|
self.assertEqual(py.call_real(*cmd), py.call_link(*cmd))
|
2008-10-06 01:51:11 -03:00
|
|
|
|
2005-11-21 13:48:12 -04:00
|
|
|
def test_platform(self):
|
|
|
|
for aliased in (False, True):
|
|
|
|
for terse in (False, True):
|
|
|
|
res = platform.platform(aliased, terse)
|
|
|
|
|
Merged revisions 70518,70521,70590,70594-70595 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70518 | matthias.klose | 2009-03-22 08:08:22 -0500 (Sun, 22 Mar 2009) | 2 lines
- Fix comment macro in python.man
........
r70521 | benjamin.peterson | 2009-03-22 12:45:11 -0500 (Sun, 22 Mar 2009) | 1 line
close the file even if an exception occurs #5536
........
r70590 | skip.montanaro | 2009-03-24 19:52:11 -0500 (Tue, 24 Mar 2009) | 1 line
clarify the type of data returned
........
r70594 | marc-andre.lemburg | 2009-03-25 14:44:58 -0500 (Wed, 25 Mar 2009) | 9 lines
Remove the sys.version_info shortcut, since they cause the APIs
to return different information than the _sys_version() output
used in previous Python versions.
This also fixes issue5561: platform.python_version_tuple returns tuple of ints, should be strings
Added more tests for the various platform functions.
........
r70595 | marc-andre.lemburg | 2009-03-25 14:45:33 -0500 (Wed, 25 Mar 2009) | 3 lines
News item for the platform.py fix (r70594).
........
2009-03-26 18:49:58 -03:00
|
|
|
def test_system(self):
|
|
|
|
res = platform.system()
|
2005-11-21 13:48:12 -04:00
|
|
|
|
Merged revisions 70518,70521,70590,70594-70595 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70518 | matthias.klose | 2009-03-22 08:08:22 -0500 (Sun, 22 Mar 2009) | 2 lines
- Fix comment macro in python.man
........
r70521 | benjamin.peterson | 2009-03-22 12:45:11 -0500 (Sun, 22 Mar 2009) | 1 line
close the file even if an exception occurs #5536
........
r70590 | skip.montanaro | 2009-03-24 19:52:11 -0500 (Tue, 24 Mar 2009) | 1 line
clarify the type of data returned
........
r70594 | marc-andre.lemburg | 2009-03-25 14:44:58 -0500 (Wed, 25 Mar 2009) | 9 lines
Remove the sys.version_info shortcut, since they cause the APIs
to return different information than the _sys_version() output
used in previous Python versions.
This also fixes issue5561: platform.python_version_tuple returns tuple of ints, should be strings
Added more tests for the various platform functions.
........
r70595 | marc-andre.lemburg | 2009-03-25 14:45:33 -0500 (Wed, 25 Mar 2009) | 3 lines
News item for the platform.py fix (r70594).
........
2009-03-26 18:49:58 -03:00
|
|
|
def test_node(self):
|
|
|
|
res = platform.node()
|
2005-11-21 13:48:12 -04:00
|
|
|
|
Merged revisions 70518,70521,70590,70594-70595 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70518 | matthias.klose | 2009-03-22 08:08:22 -0500 (Sun, 22 Mar 2009) | 2 lines
- Fix comment macro in python.man
........
r70521 | benjamin.peterson | 2009-03-22 12:45:11 -0500 (Sun, 22 Mar 2009) | 1 line
close the file even if an exception occurs #5536
........
r70590 | skip.montanaro | 2009-03-24 19:52:11 -0500 (Tue, 24 Mar 2009) | 1 line
clarify the type of data returned
........
r70594 | marc-andre.lemburg | 2009-03-25 14:44:58 -0500 (Wed, 25 Mar 2009) | 9 lines
Remove the sys.version_info shortcut, since they cause the APIs
to return different information than the _sys_version() output
used in previous Python versions.
This also fixes issue5561: platform.python_version_tuple returns tuple of ints, should be strings
Added more tests for the various platform functions.
........
r70595 | marc-andre.lemburg | 2009-03-25 14:45:33 -0500 (Wed, 25 Mar 2009) | 3 lines
News item for the platform.py fix (r70594).
........
2009-03-26 18:49:58 -03:00
|
|
|
def test_release(self):
|
|
|
|
res = platform.release()
|
2005-11-21 13:48:12 -04:00
|
|
|
|
|
|
|
def test_version(self):
|
Merged revisions 70518,70521,70590,70594-70595 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70518 | matthias.klose | 2009-03-22 08:08:22 -0500 (Sun, 22 Mar 2009) | 2 lines
- Fix comment macro in python.man
........
r70521 | benjamin.peterson | 2009-03-22 12:45:11 -0500 (Sun, 22 Mar 2009) | 1 line
close the file even if an exception occurs #5536
........
r70590 | skip.montanaro | 2009-03-24 19:52:11 -0500 (Tue, 24 Mar 2009) | 1 line
clarify the type of data returned
........
r70594 | marc-andre.lemburg | 2009-03-25 14:44:58 -0500 (Wed, 25 Mar 2009) | 9 lines
Remove the sys.version_info shortcut, since they cause the APIs
to return different information than the _sys_version() output
used in previous Python versions.
This also fixes issue5561: platform.python_version_tuple returns tuple of ints, should be strings
Added more tests for the various platform functions.
........
r70595 | marc-andre.lemburg | 2009-03-25 14:45:33 -0500 (Wed, 25 Mar 2009) | 3 lines
News item for the platform.py fix (r70594).
........
2009-03-26 18:49:58 -03:00
|
|
|
res = platform.version()
|
|
|
|
|
|
|
|
def test_machine(self):
|
|
|
|
res = platform.machine()
|
|
|
|
|
|
|
|
def test_processor(self):
|
|
|
|
res = platform.processor()
|
|
|
|
|
Merged revisions 70554,70588-70589,70598,70605,70611-70621,70623-70624,70626-70627 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70554 | benjamin.peterson | 2009-03-23 16:25:15 -0500 (Mon, 23 Mar 2009) | 1 line
complain when there's no last exception
........
r70588 | benjamin.peterson | 2009-03-24 17:56:32 -0500 (Tue, 24 Mar 2009) | 1 line
fix newline issue in test summary
........
r70589 | benjamin.peterson | 2009-03-24 18:07:07 -0500 (Tue, 24 Mar 2009) | 1 line
another style nit
........
r70598 | benjamin.peterson | 2009-03-25 16:24:04 -0500 (Wed, 25 Mar 2009) | 1 line
add shorthands for expected failures and unexpected success
........
r70605 | benjamin.peterson | 2009-03-26 11:32:23 -0500 (Thu, 26 Mar 2009) | 1 line
remove uneeded function
........
r70611 | benjamin.peterson | 2009-03-26 13:35:37 -0500 (Thu, 26 Mar 2009) | 1 line
add much better tests for python version information parsing
........
r70612 | benjamin.peterson | 2009-03-26 13:55:48 -0500 (Thu, 26 Mar 2009) | 1 line
more and more implementations now support sys.subversion
........
r70613 | benjamin.peterson | 2009-03-26 13:58:30 -0500 (Thu, 26 Mar 2009) | 1 line
roll old test in with new one
........
r70614 | benjamin.peterson | 2009-03-26 14:09:21 -0500 (Thu, 26 Mar 2009) | 1 line
add support for PyPy
........
r70615 | benjamin.peterson | 2009-03-26 14:58:18 -0500 (Thu, 26 Mar 2009) | 5 lines
add some useful utilities for skipping tests with unittest's new skipping ability
most significantly apply a modified portion of the patch from #4242 with
patches for skipping implementation details
........
r70616 | benjamin.peterson | 2009-03-26 15:05:50 -0500 (Thu, 26 Mar 2009) | 1 line
rename TestCase.skip() to skipTest() because it causes annoying problems with trial #5571
........
r70617 | benjamin.peterson | 2009-03-26 15:17:27 -0500 (Thu, 26 Mar 2009) | 1 line
apply the second part of #4242's patch; classify all the implementation details in test_descr
........
r70618 | benjamin.peterson | 2009-03-26 15:48:25 -0500 (Thu, 26 Mar 2009) | 1 line
remove test_support.TestSkipped and just use unittest.SkipTest
........
r70619 | benjamin.peterson | 2009-03-26 15:49:40 -0500 (Thu, 26 Mar 2009) | 1 line
fix naming
........
r70620 | benjamin.peterson | 2009-03-26 16:10:30 -0500 (Thu, 26 Mar 2009) | 1 line
fix incorrect auto-translation of TestSkipped -> unittest.SkipTest
........
r70621 | benjamin.peterson | 2009-03-26 16:11:16 -0500 (Thu, 26 Mar 2009) | 1 line
must pass argument to get expected behavior ;)
........
r70623 | benjamin.peterson | 2009-03-26 16:30:10 -0500 (Thu, 26 Mar 2009) | 1 line
add missing import
........
r70624 | benjamin.peterson | 2009-03-26 16:30:54 -0500 (Thu, 26 Mar 2009) | 1 line
** is required here
........
r70626 | benjamin.peterson | 2009-03-26 16:40:29 -0500 (Thu, 26 Mar 2009) | 1 line
update email tests to use SkipTest
........
r70627 | benjamin.peterson | 2009-03-26 16:44:43 -0500 (Thu, 26 Mar 2009) | 1 line
fix another name
........
2009-03-28 18:42:05 -03:00
|
|
|
def setUp(self):
|
|
|
|
self.save_version = sys.version
|
2017-03-04 01:19:55 -04:00
|
|
|
self.save_git = sys._git
|
Merged revisions 70554,70588-70589,70598,70605,70611-70621,70623-70624,70626-70627 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70554 | benjamin.peterson | 2009-03-23 16:25:15 -0500 (Mon, 23 Mar 2009) | 1 line
complain when there's no last exception
........
r70588 | benjamin.peterson | 2009-03-24 17:56:32 -0500 (Tue, 24 Mar 2009) | 1 line
fix newline issue in test summary
........
r70589 | benjamin.peterson | 2009-03-24 18:07:07 -0500 (Tue, 24 Mar 2009) | 1 line
another style nit
........
r70598 | benjamin.peterson | 2009-03-25 16:24:04 -0500 (Wed, 25 Mar 2009) | 1 line
add shorthands for expected failures and unexpected success
........
r70605 | benjamin.peterson | 2009-03-26 11:32:23 -0500 (Thu, 26 Mar 2009) | 1 line
remove uneeded function
........
r70611 | benjamin.peterson | 2009-03-26 13:35:37 -0500 (Thu, 26 Mar 2009) | 1 line
add much better tests for python version information parsing
........
r70612 | benjamin.peterson | 2009-03-26 13:55:48 -0500 (Thu, 26 Mar 2009) | 1 line
more and more implementations now support sys.subversion
........
r70613 | benjamin.peterson | 2009-03-26 13:58:30 -0500 (Thu, 26 Mar 2009) | 1 line
roll old test in with new one
........
r70614 | benjamin.peterson | 2009-03-26 14:09:21 -0500 (Thu, 26 Mar 2009) | 1 line
add support for PyPy
........
r70615 | benjamin.peterson | 2009-03-26 14:58:18 -0500 (Thu, 26 Mar 2009) | 5 lines
add some useful utilities for skipping tests with unittest's new skipping ability
most significantly apply a modified portion of the patch from #4242 with
patches for skipping implementation details
........
r70616 | benjamin.peterson | 2009-03-26 15:05:50 -0500 (Thu, 26 Mar 2009) | 1 line
rename TestCase.skip() to skipTest() because it causes annoying problems with trial #5571
........
r70617 | benjamin.peterson | 2009-03-26 15:17:27 -0500 (Thu, 26 Mar 2009) | 1 line
apply the second part of #4242's patch; classify all the implementation details in test_descr
........
r70618 | benjamin.peterson | 2009-03-26 15:48:25 -0500 (Thu, 26 Mar 2009) | 1 line
remove test_support.TestSkipped and just use unittest.SkipTest
........
r70619 | benjamin.peterson | 2009-03-26 15:49:40 -0500 (Thu, 26 Mar 2009) | 1 line
fix naming
........
r70620 | benjamin.peterson | 2009-03-26 16:10:30 -0500 (Thu, 26 Mar 2009) | 1 line
fix incorrect auto-translation of TestSkipped -> unittest.SkipTest
........
r70621 | benjamin.peterson | 2009-03-26 16:11:16 -0500 (Thu, 26 Mar 2009) | 1 line
must pass argument to get expected behavior ;)
........
r70623 | benjamin.peterson | 2009-03-26 16:30:10 -0500 (Thu, 26 Mar 2009) | 1 line
add missing import
........
r70624 | benjamin.peterson | 2009-03-26 16:30:54 -0500 (Thu, 26 Mar 2009) | 1 line
** is required here
........
r70626 | benjamin.peterson | 2009-03-26 16:40:29 -0500 (Thu, 26 Mar 2009) | 1 line
update email tests to use SkipTest
........
r70627 | benjamin.peterson | 2009-03-26 16:44:43 -0500 (Thu, 26 Mar 2009) | 1 line
fix another name
........
2009-03-28 18:42:05 -03:00
|
|
|
self.save_platform = sys.platform
|
Merged revisions 70518,70521,70590,70594-70595 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70518 | matthias.klose | 2009-03-22 08:08:22 -0500 (Sun, 22 Mar 2009) | 2 lines
- Fix comment macro in python.man
........
r70521 | benjamin.peterson | 2009-03-22 12:45:11 -0500 (Sun, 22 Mar 2009) | 1 line
close the file even if an exception occurs #5536
........
r70590 | skip.montanaro | 2009-03-24 19:52:11 -0500 (Tue, 24 Mar 2009) | 1 line
clarify the type of data returned
........
r70594 | marc-andre.lemburg | 2009-03-25 14:44:58 -0500 (Wed, 25 Mar 2009) | 9 lines
Remove the sys.version_info shortcut, since they cause the APIs
to return different information than the _sys_version() output
used in previous Python versions.
This also fixes issue5561: platform.python_version_tuple returns tuple of ints, should be strings
Added more tests for the various platform functions.
........
r70595 | marc-andre.lemburg | 2009-03-25 14:45:33 -0500 (Wed, 25 Mar 2009) | 3 lines
News item for the platform.py fix (r70594).
........
2009-03-26 18:49:58 -03:00
|
|
|
|
Merged revisions 70554,70588-70589,70598,70605,70611-70621,70623-70624,70626-70627 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70554 | benjamin.peterson | 2009-03-23 16:25:15 -0500 (Mon, 23 Mar 2009) | 1 line
complain when there's no last exception
........
r70588 | benjamin.peterson | 2009-03-24 17:56:32 -0500 (Tue, 24 Mar 2009) | 1 line
fix newline issue in test summary
........
r70589 | benjamin.peterson | 2009-03-24 18:07:07 -0500 (Tue, 24 Mar 2009) | 1 line
another style nit
........
r70598 | benjamin.peterson | 2009-03-25 16:24:04 -0500 (Wed, 25 Mar 2009) | 1 line
add shorthands for expected failures and unexpected success
........
r70605 | benjamin.peterson | 2009-03-26 11:32:23 -0500 (Thu, 26 Mar 2009) | 1 line
remove uneeded function
........
r70611 | benjamin.peterson | 2009-03-26 13:35:37 -0500 (Thu, 26 Mar 2009) | 1 line
add much better tests for python version information parsing
........
r70612 | benjamin.peterson | 2009-03-26 13:55:48 -0500 (Thu, 26 Mar 2009) | 1 line
more and more implementations now support sys.subversion
........
r70613 | benjamin.peterson | 2009-03-26 13:58:30 -0500 (Thu, 26 Mar 2009) | 1 line
roll old test in with new one
........
r70614 | benjamin.peterson | 2009-03-26 14:09:21 -0500 (Thu, 26 Mar 2009) | 1 line
add support for PyPy
........
r70615 | benjamin.peterson | 2009-03-26 14:58:18 -0500 (Thu, 26 Mar 2009) | 5 lines
add some useful utilities for skipping tests with unittest's new skipping ability
most significantly apply a modified portion of the patch from #4242 with
patches for skipping implementation details
........
r70616 | benjamin.peterson | 2009-03-26 15:05:50 -0500 (Thu, 26 Mar 2009) | 1 line
rename TestCase.skip() to skipTest() because it causes annoying problems with trial #5571
........
r70617 | benjamin.peterson | 2009-03-26 15:17:27 -0500 (Thu, 26 Mar 2009) | 1 line
apply the second part of #4242's patch; classify all the implementation details in test_descr
........
r70618 | benjamin.peterson | 2009-03-26 15:48:25 -0500 (Thu, 26 Mar 2009) | 1 line
remove test_support.TestSkipped and just use unittest.SkipTest
........
r70619 | benjamin.peterson | 2009-03-26 15:49:40 -0500 (Thu, 26 Mar 2009) | 1 line
fix naming
........
r70620 | benjamin.peterson | 2009-03-26 16:10:30 -0500 (Thu, 26 Mar 2009) | 1 line
fix incorrect auto-translation of TestSkipped -> unittest.SkipTest
........
r70621 | benjamin.peterson | 2009-03-26 16:11:16 -0500 (Thu, 26 Mar 2009) | 1 line
must pass argument to get expected behavior ;)
........
r70623 | benjamin.peterson | 2009-03-26 16:30:10 -0500 (Thu, 26 Mar 2009) | 1 line
add missing import
........
r70624 | benjamin.peterson | 2009-03-26 16:30:54 -0500 (Thu, 26 Mar 2009) | 1 line
** is required here
........
r70626 | benjamin.peterson | 2009-03-26 16:40:29 -0500 (Thu, 26 Mar 2009) | 1 line
update email tests to use SkipTest
........
r70627 | benjamin.peterson | 2009-03-26 16:44:43 -0500 (Thu, 26 Mar 2009) | 1 line
fix another name
........
2009-03-28 18:42:05 -03:00
|
|
|
def tearDown(self):
|
|
|
|
sys.version = self.save_version
|
2017-03-04 01:19:55 -04:00
|
|
|
sys._git = self.save_git
|
Merged revisions 70554,70588-70589,70598,70605,70611-70621,70623-70624,70626-70627 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70554 | benjamin.peterson | 2009-03-23 16:25:15 -0500 (Mon, 23 Mar 2009) | 1 line
complain when there's no last exception
........
r70588 | benjamin.peterson | 2009-03-24 17:56:32 -0500 (Tue, 24 Mar 2009) | 1 line
fix newline issue in test summary
........
r70589 | benjamin.peterson | 2009-03-24 18:07:07 -0500 (Tue, 24 Mar 2009) | 1 line
another style nit
........
r70598 | benjamin.peterson | 2009-03-25 16:24:04 -0500 (Wed, 25 Mar 2009) | 1 line
add shorthands for expected failures and unexpected success
........
r70605 | benjamin.peterson | 2009-03-26 11:32:23 -0500 (Thu, 26 Mar 2009) | 1 line
remove uneeded function
........
r70611 | benjamin.peterson | 2009-03-26 13:35:37 -0500 (Thu, 26 Mar 2009) | 1 line
add much better tests for python version information parsing
........
r70612 | benjamin.peterson | 2009-03-26 13:55:48 -0500 (Thu, 26 Mar 2009) | 1 line
more and more implementations now support sys.subversion
........
r70613 | benjamin.peterson | 2009-03-26 13:58:30 -0500 (Thu, 26 Mar 2009) | 1 line
roll old test in with new one
........
r70614 | benjamin.peterson | 2009-03-26 14:09:21 -0500 (Thu, 26 Mar 2009) | 1 line
add support for PyPy
........
r70615 | benjamin.peterson | 2009-03-26 14:58:18 -0500 (Thu, 26 Mar 2009) | 5 lines
add some useful utilities for skipping tests with unittest's new skipping ability
most significantly apply a modified portion of the patch from #4242 with
patches for skipping implementation details
........
r70616 | benjamin.peterson | 2009-03-26 15:05:50 -0500 (Thu, 26 Mar 2009) | 1 line
rename TestCase.skip() to skipTest() because it causes annoying problems with trial #5571
........
r70617 | benjamin.peterson | 2009-03-26 15:17:27 -0500 (Thu, 26 Mar 2009) | 1 line
apply the second part of #4242's patch; classify all the implementation details in test_descr
........
r70618 | benjamin.peterson | 2009-03-26 15:48:25 -0500 (Thu, 26 Mar 2009) | 1 line
remove test_support.TestSkipped and just use unittest.SkipTest
........
r70619 | benjamin.peterson | 2009-03-26 15:49:40 -0500 (Thu, 26 Mar 2009) | 1 line
fix naming
........
r70620 | benjamin.peterson | 2009-03-26 16:10:30 -0500 (Thu, 26 Mar 2009) | 1 line
fix incorrect auto-translation of TestSkipped -> unittest.SkipTest
........
r70621 | benjamin.peterson | 2009-03-26 16:11:16 -0500 (Thu, 26 Mar 2009) | 1 line
must pass argument to get expected behavior ;)
........
r70623 | benjamin.peterson | 2009-03-26 16:30:10 -0500 (Thu, 26 Mar 2009) | 1 line
add missing import
........
r70624 | benjamin.peterson | 2009-03-26 16:30:54 -0500 (Thu, 26 Mar 2009) | 1 line
** is required here
........
r70626 | benjamin.peterson | 2009-03-26 16:40:29 -0500 (Thu, 26 Mar 2009) | 1 line
update email tests to use SkipTest
........
r70627 | benjamin.peterson | 2009-03-26 16:44:43 -0500 (Thu, 26 Mar 2009) | 1 line
fix another name
........
2009-03-28 18:42:05 -03:00
|
|
|
sys.platform = self.save_platform
|
2005-11-21 13:48:12 -04:00
|
|
|
|
Merged revisions 70554,70588-70589,70598,70605,70611-70621,70623-70624,70626-70627 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70554 | benjamin.peterson | 2009-03-23 16:25:15 -0500 (Mon, 23 Mar 2009) | 1 line
complain when there's no last exception
........
r70588 | benjamin.peterson | 2009-03-24 17:56:32 -0500 (Tue, 24 Mar 2009) | 1 line
fix newline issue in test summary
........
r70589 | benjamin.peterson | 2009-03-24 18:07:07 -0500 (Tue, 24 Mar 2009) | 1 line
another style nit
........
r70598 | benjamin.peterson | 2009-03-25 16:24:04 -0500 (Wed, 25 Mar 2009) | 1 line
add shorthands for expected failures and unexpected success
........
r70605 | benjamin.peterson | 2009-03-26 11:32:23 -0500 (Thu, 26 Mar 2009) | 1 line
remove uneeded function
........
r70611 | benjamin.peterson | 2009-03-26 13:35:37 -0500 (Thu, 26 Mar 2009) | 1 line
add much better tests for python version information parsing
........
r70612 | benjamin.peterson | 2009-03-26 13:55:48 -0500 (Thu, 26 Mar 2009) | 1 line
more and more implementations now support sys.subversion
........
r70613 | benjamin.peterson | 2009-03-26 13:58:30 -0500 (Thu, 26 Mar 2009) | 1 line
roll old test in with new one
........
r70614 | benjamin.peterson | 2009-03-26 14:09:21 -0500 (Thu, 26 Mar 2009) | 1 line
add support for PyPy
........
r70615 | benjamin.peterson | 2009-03-26 14:58:18 -0500 (Thu, 26 Mar 2009) | 5 lines
add some useful utilities for skipping tests with unittest's new skipping ability
most significantly apply a modified portion of the patch from #4242 with
patches for skipping implementation details
........
r70616 | benjamin.peterson | 2009-03-26 15:05:50 -0500 (Thu, 26 Mar 2009) | 1 line
rename TestCase.skip() to skipTest() because it causes annoying problems with trial #5571
........
r70617 | benjamin.peterson | 2009-03-26 15:17:27 -0500 (Thu, 26 Mar 2009) | 1 line
apply the second part of #4242's patch; classify all the implementation details in test_descr
........
r70618 | benjamin.peterson | 2009-03-26 15:48:25 -0500 (Thu, 26 Mar 2009) | 1 line
remove test_support.TestSkipped and just use unittest.SkipTest
........
r70619 | benjamin.peterson | 2009-03-26 15:49:40 -0500 (Thu, 26 Mar 2009) | 1 line
fix naming
........
r70620 | benjamin.peterson | 2009-03-26 16:10:30 -0500 (Thu, 26 Mar 2009) | 1 line
fix incorrect auto-translation of TestSkipped -> unittest.SkipTest
........
r70621 | benjamin.peterson | 2009-03-26 16:11:16 -0500 (Thu, 26 Mar 2009) | 1 line
must pass argument to get expected behavior ;)
........
r70623 | benjamin.peterson | 2009-03-26 16:30:10 -0500 (Thu, 26 Mar 2009) | 1 line
add missing import
........
r70624 | benjamin.peterson | 2009-03-26 16:30:54 -0500 (Thu, 26 Mar 2009) | 1 line
** is required here
........
r70626 | benjamin.peterson | 2009-03-26 16:40:29 -0500 (Thu, 26 Mar 2009) | 1 line
update email tests to use SkipTest
........
r70627 | benjamin.peterson | 2009-03-26 16:44:43 -0500 (Thu, 26 Mar 2009) | 1 line
fix another name
........
2009-03-28 18:42:05 -03:00
|
|
|
def test_sys_version(self):
|
|
|
|
# Old test.
|
|
|
|
for input, output in (
|
|
|
|
('2.4.3 (#1, Jun 21 2006, 13:54:21) \n[GCC 3.3.4 (pre 3.3.5 20040809)]',
|
|
|
|
('CPython', '2.4.3', '', '', '1', 'Jun 21 2006 13:54:21', 'GCC 3.3.4 (pre 3.3.5 20040809)')),
|
2016-06-08 03:12:22 -03:00
|
|
|
('2.4.3 (truncation, date, t) \n[GCC]',
|
|
|
|
('CPython', '2.4.3', '', '', 'truncation', 'date t', 'GCC')),
|
|
|
|
('2.4.3 (truncation, date, ) \n[GCC]',
|
|
|
|
('CPython', '2.4.3', '', '', 'truncation', 'date', 'GCC')),
|
|
|
|
('2.4.3 (truncation, date,) \n[GCC]',
|
|
|
|
('CPython', '2.4.3', '', '', 'truncation', 'date', 'GCC')),
|
|
|
|
('2.4.3 (truncation, date) \n[GCC]',
|
|
|
|
('CPython', '2.4.3', '', '', 'truncation', 'date', 'GCC')),
|
|
|
|
('2.4.3 (truncation, d) \n[GCC]',
|
|
|
|
('CPython', '2.4.3', '', '', 'truncation', 'd', 'GCC')),
|
|
|
|
('2.4.3 (truncation, ) \n[GCC]',
|
|
|
|
('CPython', '2.4.3', '', '', 'truncation', '', 'GCC')),
|
|
|
|
('2.4.3 (truncation,) \n[GCC]',
|
|
|
|
('CPython', '2.4.3', '', '', 'truncation', '', 'GCC')),
|
|
|
|
('2.4.3 (truncation) \n[GCC]',
|
|
|
|
('CPython', '2.4.3', '', '', 'truncation', '', 'GCC')),
|
Merged revisions 70554,70588-70589,70598,70605,70611-70621,70623-70624,70626-70627 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70554 | benjamin.peterson | 2009-03-23 16:25:15 -0500 (Mon, 23 Mar 2009) | 1 line
complain when there's no last exception
........
r70588 | benjamin.peterson | 2009-03-24 17:56:32 -0500 (Tue, 24 Mar 2009) | 1 line
fix newline issue in test summary
........
r70589 | benjamin.peterson | 2009-03-24 18:07:07 -0500 (Tue, 24 Mar 2009) | 1 line
another style nit
........
r70598 | benjamin.peterson | 2009-03-25 16:24:04 -0500 (Wed, 25 Mar 2009) | 1 line
add shorthands for expected failures and unexpected success
........
r70605 | benjamin.peterson | 2009-03-26 11:32:23 -0500 (Thu, 26 Mar 2009) | 1 line
remove uneeded function
........
r70611 | benjamin.peterson | 2009-03-26 13:35:37 -0500 (Thu, 26 Mar 2009) | 1 line
add much better tests for python version information parsing
........
r70612 | benjamin.peterson | 2009-03-26 13:55:48 -0500 (Thu, 26 Mar 2009) | 1 line
more and more implementations now support sys.subversion
........
r70613 | benjamin.peterson | 2009-03-26 13:58:30 -0500 (Thu, 26 Mar 2009) | 1 line
roll old test in with new one
........
r70614 | benjamin.peterson | 2009-03-26 14:09:21 -0500 (Thu, 26 Mar 2009) | 1 line
add support for PyPy
........
r70615 | benjamin.peterson | 2009-03-26 14:58:18 -0500 (Thu, 26 Mar 2009) | 5 lines
add some useful utilities for skipping tests with unittest's new skipping ability
most significantly apply a modified portion of the patch from #4242 with
patches for skipping implementation details
........
r70616 | benjamin.peterson | 2009-03-26 15:05:50 -0500 (Thu, 26 Mar 2009) | 1 line
rename TestCase.skip() to skipTest() because it causes annoying problems with trial #5571
........
r70617 | benjamin.peterson | 2009-03-26 15:17:27 -0500 (Thu, 26 Mar 2009) | 1 line
apply the second part of #4242's patch; classify all the implementation details in test_descr
........
r70618 | benjamin.peterson | 2009-03-26 15:48:25 -0500 (Thu, 26 Mar 2009) | 1 line
remove test_support.TestSkipped and just use unittest.SkipTest
........
r70619 | benjamin.peterson | 2009-03-26 15:49:40 -0500 (Thu, 26 Mar 2009) | 1 line
fix naming
........
r70620 | benjamin.peterson | 2009-03-26 16:10:30 -0500 (Thu, 26 Mar 2009) | 1 line
fix incorrect auto-translation of TestSkipped -> unittest.SkipTest
........
r70621 | benjamin.peterson | 2009-03-26 16:11:16 -0500 (Thu, 26 Mar 2009) | 1 line
must pass argument to get expected behavior ;)
........
r70623 | benjamin.peterson | 2009-03-26 16:30:10 -0500 (Thu, 26 Mar 2009) | 1 line
add missing import
........
r70624 | benjamin.peterson | 2009-03-26 16:30:54 -0500 (Thu, 26 Mar 2009) | 1 line
** is required here
........
r70626 | benjamin.peterson | 2009-03-26 16:40:29 -0500 (Thu, 26 Mar 2009) | 1 line
update email tests to use SkipTest
........
r70627 | benjamin.peterson | 2009-03-26 16:44:43 -0500 (Thu, 26 Mar 2009) | 1 line
fix another name
........
2009-03-28 18:42:05 -03:00
|
|
|
):
|
|
|
|
# branch and revision are not "parsed", but fetched
|
2017-03-04 01:19:55 -04:00
|
|
|
# from sys._git. Ignore them
|
Merged revisions 70554,70588-70589,70598,70605,70611-70621,70623-70624,70626-70627 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70554 | benjamin.peterson | 2009-03-23 16:25:15 -0500 (Mon, 23 Mar 2009) | 1 line
complain when there's no last exception
........
r70588 | benjamin.peterson | 2009-03-24 17:56:32 -0500 (Tue, 24 Mar 2009) | 1 line
fix newline issue in test summary
........
r70589 | benjamin.peterson | 2009-03-24 18:07:07 -0500 (Tue, 24 Mar 2009) | 1 line
another style nit
........
r70598 | benjamin.peterson | 2009-03-25 16:24:04 -0500 (Wed, 25 Mar 2009) | 1 line
add shorthands for expected failures and unexpected success
........
r70605 | benjamin.peterson | 2009-03-26 11:32:23 -0500 (Thu, 26 Mar 2009) | 1 line
remove uneeded function
........
r70611 | benjamin.peterson | 2009-03-26 13:35:37 -0500 (Thu, 26 Mar 2009) | 1 line
add much better tests for python version information parsing
........
r70612 | benjamin.peterson | 2009-03-26 13:55:48 -0500 (Thu, 26 Mar 2009) | 1 line
more and more implementations now support sys.subversion
........
r70613 | benjamin.peterson | 2009-03-26 13:58:30 -0500 (Thu, 26 Mar 2009) | 1 line
roll old test in with new one
........
r70614 | benjamin.peterson | 2009-03-26 14:09:21 -0500 (Thu, 26 Mar 2009) | 1 line
add support for PyPy
........
r70615 | benjamin.peterson | 2009-03-26 14:58:18 -0500 (Thu, 26 Mar 2009) | 5 lines
add some useful utilities for skipping tests with unittest's new skipping ability
most significantly apply a modified portion of the patch from #4242 with
patches for skipping implementation details
........
r70616 | benjamin.peterson | 2009-03-26 15:05:50 -0500 (Thu, 26 Mar 2009) | 1 line
rename TestCase.skip() to skipTest() because it causes annoying problems with trial #5571
........
r70617 | benjamin.peterson | 2009-03-26 15:17:27 -0500 (Thu, 26 Mar 2009) | 1 line
apply the second part of #4242's patch; classify all the implementation details in test_descr
........
r70618 | benjamin.peterson | 2009-03-26 15:48:25 -0500 (Thu, 26 Mar 2009) | 1 line
remove test_support.TestSkipped and just use unittest.SkipTest
........
r70619 | benjamin.peterson | 2009-03-26 15:49:40 -0500 (Thu, 26 Mar 2009) | 1 line
fix naming
........
r70620 | benjamin.peterson | 2009-03-26 16:10:30 -0500 (Thu, 26 Mar 2009) | 1 line
fix incorrect auto-translation of TestSkipped -> unittest.SkipTest
........
r70621 | benjamin.peterson | 2009-03-26 16:11:16 -0500 (Thu, 26 Mar 2009) | 1 line
must pass argument to get expected behavior ;)
........
r70623 | benjamin.peterson | 2009-03-26 16:30:10 -0500 (Thu, 26 Mar 2009) | 1 line
add missing import
........
r70624 | benjamin.peterson | 2009-03-26 16:30:54 -0500 (Thu, 26 Mar 2009) | 1 line
** is required here
........
r70626 | benjamin.peterson | 2009-03-26 16:40:29 -0500 (Thu, 26 Mar 2009) | 1 line
update email tests to use SkipTest
........
r70627 | benjamin.peterson | 2009-03-26 16:44:43 -0500 (Thu, 26 Mar 2009) | 1 line
fix another name
........
2009-03-28 18:42:05 -03:00
|
|
|
(name, version, branch, revision, buildno, builddate, compiler) \
|
|
|
|
= platform._sys_version(input)
|
|
|
|
self.assertEqual(
|
|
|
|
(name, version, '', '', buildno, builddate, compiler), output)
|
Merged revisions 70518,70521,70590,70594-70595 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70518 | matthias.klose | 2009-03-22 08:08:22 -0500 (Sun, 22 Mar 2009) | 2 lines
- Fix comment macro in python.man
........
r70521 | benjamin.peterson | 2009-03-22 12:45:11 -0500 (Sun, 22 Mar 2009) | 1 line
close the file even if an exception occurs #5536
........
r70590 | skip.montanaro | 2009-03-24 19:52:11 -0500 (Tue, 24 Mar 2009) | 1 line
clarify the type of data returned
........
r70594 | marc-andre.lemburg | 2009-03-25 14:44:58 -0500 (Wed, 25 Mar 2009) | 9 lines
Remove the sys.version_info shortcut, since they cause the APIs
to return different information than the _sys_version() output
used in previous Python versions.
This also fixes issue5561: platform.python_version_tuple returns tuple of ints, should be strings
Added more tests for the various platform functions.
........
r70595 | marc-andre.lemburg | 2009-03-25 14:45:33 -0500 (Wed, 25 Mar 2009) | 3 lines
News item for the platform.py fix (r70594).
........
2009-03-26 18:49:58 -03:00
|
|
|
|
Merged revisions 70554,70588-70589,70598,70605,70611-70621,70623-70624,70626-70627 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70554 | benjamin.peterson | 2009-03-23 16:25:15 -0500 (Mon, 23 Mar 2009) | 1 line
complain when there's no last exception
........
r70588 | benjamin.peterson | 2009-03-24 17:56:32 -0500 (Tue, 24 Mar 2009) | 1 line
fix newline issue in test summary
........
r70589 | benjamin.peterson | 2009-03-24 18:07:07 -0500 (Tue, 24 Mar 2009) | 1 line
another style nit
........
r70598 | benjamin.peterson | 2009-03-25 16:24:04 -0500 (Wed, 25 Mar 2009) | 1 line
add shorthands for expected failures and unexpected success
........
r70605 | benjamin.peterson | 2009-03-26 11:32:23 -0500 (Thu, 26 Mar 2009) | 1 line
remove uneeded function
........
r70611 | benjamin.peterson | 2009-03-26 13:35:37 -0500 (Thu, 26 Mar 2009) | 1 line
add much better tests for python version information parsing
........
r70612 | benjamin.peterson | 2009-03-26 13:55:48 -0500 (Thu, 26 Mar 2009) | 1 line
more and more implementations now support sys.subversion
........
r70613 | benjamin.peterson | 2009-03-26 13:58:30 -0500 (Thu, 26 Mar 2009) | 1 line
roll old test in with new one
........
r70614 | benjamin.peterson | 2009-03-26 14:09:21 -0500 (Thu, 26 Mar 2009) | 1 line
add support for PyPy
........
r70615 | benjamin.peterson | 2009-03-26 14:58:18 -0500 (Thu, 26 Mar 2009) | 5 lines
add some useful utilities for skipping tests with unittest's new skipping ability
most significantly apply a modified portion of the patch from #4242 with
patches for skipping implementation details
........
r70616 | benjamin.peterson | 2009-03-26 15:05:50 -0500 (Thu, 26 Mar 2009) | 1 line
rename TestCase.skip() to skipTest() because it causes annoying problems with trial #5571
........
r70617 | benjamin.peterson | 2009-03-26 15:17:27 -0500 (Thu, 26 Mar 2009) | 1 line
apply the second part of #4242's patch; classify all the implementation details in test_descr
........
r70618 | benjamin.peterson | 2009-03-26 15:48:25 -0500 (Thu, 26 Mar 2009) | 1 line
remove test_support.TestSkipped and just use unittest.SkipTest
........
r70619 | benjamin.peterson | 2009-03-26 15:49:40 -0500 (Thu, 26 Mar 2009) | 1 line
fix naming
........
r70620 | benjamin.peterson | 2009-03-26 16:10:30 -0500 (Thu, 26 Mar 2009) | 1 line
fix incorrect auto-translation of TestSkipped -> unittest.SkipTest
........
r70621 | benjamin.peterson | 2009-03-26 16:11:16 -0500 (Thu, 26 Mar 2009) | 1 line
must pass argument to get expected behavior ;)
........
r70623 | benjamin.peterson | 2009-03-26 16:30:10 -0500 (Thu, 26 Mar 2009) | 1 line
add missing import
........
r70624 | benjamin.peterson | 2009-03-26 16:30:54 -0500 (Thu, 26 Mar 2009) | 1 line
** is required here
........
r70626 | benjamin.peterson | 2009-03-26 16:40:29 -0500 (Thu, 26 Mar 2009) | 1 line
update email tests to use SkipTest
........
r70627 | benjamin.peterson | 2009-03-26 16:44:43 -0500 (Thu, 26 Mar 2009) | 1 line
fix another name
........
2009-03-28 18:42:05 -03:00
|
|
|
# Tests for python_implementation(), python_version(), python_branch(),
|
|
|
|
# python_revision(), python_build(), and python_compiler().
|
|
|
|
sys_versions = {
|
|
|
|
("2.6.1 (r261:67515, Dec 6 2008, 15:26:00) \n[GCC 4.0.1 (Apple Computer, Inc. build 5370)]",
|
|
|
|
('CPython', 'tags/r261', '67515'), self.save_platform)
|
|
|
|
:
|
|
|
|
("CPython", "2.6.1", "tags/r261", "67515",
|
|
|
|
('r261:67515', 'Dec 6 2008 15:26:00'),
|
|
|
|
'GCC 4.0.1 (Apple Computer, Inc. build 5370)'),
|
2013-10-20 21:03:32 -03:00
|
|
|
|
2023-03-19 19:52:47 -03:00
|
|
|
("3.10.8 (tags/v3.10.8:aaaf517424, Feb 14 2023, 16:28:12) [GCC 9.4.0]",
|
|
|
|
None, "linux")
|
Merged revisions 70554,70588-70589,70598,70605,70611-70621,70623-70624,70626-70627 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70554 | benjamin.peterson | 2009-03-23 16:25:15 -0500 (Mon, 23 Mar 2009) | 1 line
complain when there's no last exception
........
r70588 | benjamin.peterson | 2009-03-24 17:56:32 -0500 (Tue, 24 Mar 2009) | 1 line
fix newline issue in test summary
........
r70589 | benjamin.peterson | 2009-03-24 18:07:07 -0500 (Tue, 24 Mar 2009) | 1 line
another style nit
........
r70598 | benjamin.peterson | 2009-03-25 16:24:04 -0500 (Wed, 25 Mar 2009) | 1 line
add shorthands for expected failures and unexpected success
........
r70605 | benjamin.peterson | 2009-03-26 11:32:23 -0500 (Thu, 26 Mar 2009) | 1 line
remove uneeded function
........
r70611 | benjamin.peterson | 2009-03-26 13:35:37 -0500 (Thu, 26 Mar 2009) | 1 line
add much better tests for python version information parsing
........
r70612 | benjamin.peterson | 2009-03-26 13:55:48 -0500 (Thu, 26 Mar 2009) | 1 line
more and more implementations now support sys.subversion
........
r70613 | benjamin.peterson | 2009-03-26 13:58:30 -0500 (Thu, 26 Mar 2009) | 1 line
roll old test in with new one
........
r70614 | benjamin.peterson | 2009-03-26 14:09:21 -0500 (Thu, 26 Mar 2009) | 1 line
add support for PyPy
........
r70615 | benjamin.peterson | 2009-03-26 14:58:18 -0500 (Thu, 26 Mar 2009) | 5 lines
add some useful utilities for skipping tests with unittest's new skipping ability
most significantly apply a modified portion of the patch from #4242 with
patches for skipping implementation details
........
r70616 | benjamin.peterson | 2009-03-26 15:05:50 -0500 (Thu, 26 Mar 2009) | 1 line
rename TestCase.skip() to skipTest() because it causes annoying problems with trial #5571
........
r70617 | benjamin.peterson | 2009-03-26 15:17:27 -0500 (Thu, 26 Mar 2009) | 1 line
apply the second part of #4242's patch; classify all the implementation details in test_descr
........
r70618 | benjamin.peterson | 2009-03-26 15:48:25 -0500 (Thu, 26 Mar 2009) | 1 line
remove test_support.TestSkipped and just use unittest.SkipTest
........
r70619 | benjamin.peterson | 2009-03-26 15:49:40 -0500 (Thu, 26 Mar 2009) | 1 line
fix naming
........
r70620 | benjamin.peterson | 2009-03-26 16:10:30 -0500 (Thu, 26 Mar 2009) | 1 line
fix incorrect auto-translation of TestSkipped -> unittest.SkipTest
........
r70621 | benjamin.peterson | 2009-03-26 16:11:16 -0500 (Thu, 26 Mar 2009) | 1 line
must pass argument to get expected behavior ;)
........
r70623 | benjamin.peterson | 2009-03-26 16:30:10 -0500 (Thu, 26 Mar 2009) | 1 line
add missing import
........
r70624 | benjamin.peterson | 2009-03-26 16:30:54 -0500 (Thu, 26 Mar 2009) | 1 line
** is required here
........
r70626 | benjamin.peterson | 2009-03-26 16:40:29 -0500 (Thu, 26 Mar 2009) | 1 line
update email tests to use SkipTest
........
r70627 | benjamin.peterson | 2009-03-26 16:44:43 -0500 (Thu, 26 Mar 2009) | 1 line
fix another name
........
2009-03-28 18:42:05 -03:00
|
|
|
:
|
2023-03-19 19:52:47 -03:00
|
|
|
('CPython', '3.10.8', '', '',
|
|
|
|
('tags/v3.10.8:aaaf517424', 'Feb 14 2023 16:28:12'), 'GCC 9.4.0'),
|
2013-10-20 21:03:32 -03:00
|
|
|
|
Merged revisions 70554,70588-70589,70598,70605,70611-70621,70623-70624,70626-70627 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70554 | benjamin.peterson | 2009-03-23 16:25:15 -0500 (Mon, 23 Mar 2009) | 1 line
complain when there's no last exception
........
r70588 | benjamin.peterson | 2009-03-24 17:56:32 -0500 (Tue, 24 Mar 2009) | 1 line
fix newline issue in test summary
........
r70589 | benjamin.peterson | 2009-03-24 18:07:07 -0500 (Tue, 24 Mar 2009) | 1 line
another style nit
........
r70598 | benjamin.peterson | 2009-03-25 16:24:04 -0500 (Wed, 25 Mar 2009) | 1 line
add shorthands for expected failures and unexpected success
........
r70605 | benjamin.peterson | 2009-03-26 11:32:23 -0500 (Thu, 26 Mar 2009) | 1 line
remove uneeded function
........
r70611 | benjamin.peterson | 2009-03-26 13:35:37 -0500 (Thu, 26 Mar 2009) | 1 line
add much better tests for python version information parsing
........
r70612 | benjamin.peterson | 2009-03-26 13:55:48 -0500 (Thu, 26 Mar 2009) | 1 line
more and more implementations now support sys.subversion
........
r70613 | benjamin.peterson | 2009-03-26 13:58:30 -0500 (Thu, 26 Mar 2009) | 1 line
roll old test in with new one
........
r70614 | benjamin.peterson | 2009-03-26 14:09:21 -0500 (Thu, 26 Mar 2009) | 1 line
add support for PyPy
........
r70615 | benjamin.peterson | 2009-03-26 14:58:18 -0500 (Thu, 26 Mar 2009) | 5 lines
add some useful utilities for skipping tests with unittest's new skipping ability
most significantly apply a modified portion of the patch from #4242 with
patches for skipping implementation details
........
r70616 | benjamin.peterson | 2009-03-26 15:05:50 -0500 (Thu, 26 Mar 2009) | 1 line
rename TestCase.skip() to skipTest() because it causes annoying problems with trial #5571
........
r70617 | benjamin.peterson | 2009-03-26 15:17:27 -0500 (Thu, 26 Mar 2009) | 1 line
apply the second part of #4242's patch; classify all the implementation details in test_descr
........
r70618 | benjamin.peterson | 2009-03-26 15:48:25 -0500 (Thu, 26 Mar 2009) | 1 line
remove test_support.TestSkipped and just use unittest.SkipTest
........
r70619 | benjamin.peterson | 2009-03-26 15:49:40 -0500 (Thu, 26 Mar 2009) | 1 line
fix naming
........
r70620 | benjamin.peterson | 2009-03-26 16:10:30 -0500 (Thu, 26 Mar 2009) | 1 line
fix incorrect auto-translation of TestSkipped -> unittest.SkipTest
........
r70621 | benjamin.peterson | 2009-03-26 16:11:16 -0500 (Thu, 26 Mar 2009) | 1 line
must pass argument to get expected behavior ;)
........
r70623 | benjamin.peterson | 2009-03-26 16:30:10 -0500 (Thu, 26 Mar 2009) | 1 line
add missing import
........
r70624 | benjamin.peterson | 2009-03-26 16:30:54 -0500 (Thu, 26 Mar 2009) | 1 line
** is required here
........
r70626 | benjamin.peterson | 2009-03-26 16:40:29 -0500 (Thu, 26 Mar 2009) | 1 line
update email tests to use SkipTest
........
r70627 | benjamin.peterson | 2009-03-26 16:44:43 -0500 (Thu, 26 Mar 2009) | 1 line
fix another name
........
2009-03-28 18:42:05 -03:00
|
|
|
("2.5 (trunk:6107, Mar 26 2009, 13:02:18) \n[Java HotSpot(TM) Client VM (\"Apple Computer, Inc.\")]",
|
|
|
|
('Jython', 'trunk', '6107'), "java1.5.0_16")
|
|
|
|
:
|
|
|
|
("Jython", "2.5.0", "trunk", "6107",
|
|
|
|
('trunk:6107', 'Mar 26 2009'), "java1.5.0_16"),
|
2013-10-20 21:03:32 -03:00
|
|
|
|
Merged revisions 70554,70588-70589,70598,70605,70611-70621,70623-70624,70626-70627 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70554 | benjamin.peterson | 2009-03-23 16:25:15 -0500 (Mon, 23 Mar 2009) | 1 line
complain when there's no last exception
........
r70588 | benjamin.peterson | 2009-03-24 17:56:32 -0500 (Tue, 24 Mar 2009) | 1 line
fix newline issue in test summary
........
r70589 | benjamin.peterson | 2009-03-24 18:07:07 -0500 (Tue, 24 Mar 2009) | 1 line
another style nit
........
r70598 | benjamin.peterson | 2009-03-25 16:24:04 -0500 (Wed, 25 Mar 2009) | 1 line
add shorthands for expected failures and unexpected success
........
r70605 | benjamin.peterson | 2009-03-26 11:32:23 -0500 (Thu, 26 Mar 2009) | 1 line
remove uneeded function
........
r70611 | benjamin.peterson | 2009-03-26 13:35:37 -0500 (Thu, 26 Mar 2009) | 1 line
add much better tests for python version information parsing
........
r70612 | benjamin.peterson | 2009-03-26 13:55:48 -0500 (Thu, 26 Mar 2009) | 1 line
more and more implementations now support sys.subversion
........
r70613 | benjamin.peterson | 2009-03-26 13:58:30 -0500 (Thu, 26 Mar 2009) | 1 line
roll old test in with new one
........
r70614 | benjamin.peterson | 2009-03-26 14:09:21 -0500 (Thu, 26 Mar 2009) | 1 line
add support for PyPy
........
r70615 | benjamin.peterson | 2009-03-26 14:58:18 -0500 (Thu, 26 Mar 2009) | 5 lines
add some useful utilities for skipping tests with unittest's new skipping ability
most significantly apply a modified portion of the patch from #4242 with
patches for skipping implementation details
........
r70616 | benjamin.peterson | 2009-03-26 15:05:50 -0500 (Thu, 26 Mar 2009) | 1 line
rename TestCase.skip() to skipTest() because it causes annoying problems with trial #5571
........
r70617 | benjamin.peterson | 2009-03-26 15:17:27 -0500 (Thu, 26 Mar 2009) | 1 line
apply the second part of #4242's patch; classify all the implementation details in test_descr
........
r70618 | benjamin.peterson | 2009-03-26 15:48:25 -0500 (Thu, 26 Mar 2009) | 1 line
remove test_support.TestSkipped and just use unittest.SkipTest
........
r70619 | benjamin.peterson | 2009-03-26 15:49:40 -0500 (Thu, 26 Mar 2009) | 1 line
fix naming
........
r70620 | benjamin.peterson | 2009-03-26 16:10:30 -0500 (Thu, 26 Mar 2009) | 1 line
fix incorrect auto-translation of TestSkipped -> unittest.SkipTest
........
r70621 | benjamin.peterson | 2009-03-26 16:11:16 -0500 (Thu, 26 Mar 2009) | 1 line
must pass argument to get expected behavior ;)
........
r70623 | benjamin.peterson | 2009-03-26 16:30:10 -0500 (Thu, 26 Mar 2009) | 1 line
add missing import
........
r70624 | benjamin.peterson | 2009-03-26 16:30:54 -0500 (Thu, 26 Mar 2009) | 1 line
** is required here
........
r70626 | benjamin.peterson | 2009-03-26 16:40:29 -0500 (Thu, 26 Mar 2009) | 1 line
update email tests to use SkipTest
........
r70627 | benjamin.peterson | 2009-03-26 16:44:43 -0500 (Thu, 26 Mar 2009) | 1 line
fix another name
........
2009-03-28 18:42:05 -03:00
|
|
|
("2.5.2 (63378, Mar 26 2009, 18:03:29)\n[PyPy 1.0.0]",
|
|
|
|
('PyPy', 'trunk', '63378'), self.save_platform)
|
|
|
|
:
|
|
|
|
("PyPy", "2.5.2", "trunk", "63378", ('63378', 'Mar 26 2009'),
|
|
|
|
"")
|
|
|
|
}
|
2017-11-28 17:29:32 -04:00
|
|
|
for (version_tag, scm, sys_platform), info in \
|
Merged revisions 70554,70588-70589,70598,70605,70611-70621,70623-70624,70626-70627 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70554 | benjamin.peterson | 2009-03-23 16:25:15 -0500 (Mon, 23 Mar 2009) | 1 line
complain when there's no last exception
........
r70588 | benjamin.peterson | 2009-03-24 17:56:32 -0500 (Tue, 24 Mar 2009) | 1 line
fix newline issue in test summary
........
r70589 | benjamin.peterson | 2009-03-24 18:07:07 -0500 (Tue, 24 Mar 2009) | 1 line
another style nit
........
r70598 | benjamin.peterson | 2009-03-25 16:24:04 -0500 (Wed, 25 Mar 2009) | 1 line
add shorthands for expected failures and unexpected success
........
r70605 | benjamin.peterson | 2009-03-26 11:32:23 -0500 (Thu, 26 Mar 2009) | 1 line
remove uneeded function
........
r70611 | benjamin.peterson | 2009-03-26 13:35:37 -0500 (Thu, 26 Mar 2009) | 1 line
add much better tests for python version information parsing
........
r70612 | benjamin.peterson | 2009-03-26 13:55:48 -0500 (Thu, 26 Mar 2009) | 1 line
more and more implementations now support sys.subversion
........
r70613 | benjamin.peterson | 2009-03-26 13:58:30 -0500 (Thu, 26 Mar 2009) | 1 line
roll old test in with new one
........
r70614 | benjamin.peterson | 2009-03-26 14:09:21 -0500 (Thu, 26 Mar 2009) | 1 line
add support for PyPy
........
r70615 | benjamin.peterson | 2009-03-26 14:58:18 -0500 (Thu, 26 Mar 2009) | 5 lines
add some useful utilities for skipping tests with unittest's new skipping ability
most significantly apply a modified portion of the patch from #4242 with
patches for skipping implementation details
........
r70616 | benjamin.peterson | 2009-03-26 15:05:50 -0500 (Thu, 26 Mar 2009) | 1 line
rename TestCase.skip() to skipTest() because it causes annoying problems with trial #5571
........
r70617 | benjamin.peterson | 2009-03-26 15:17:27 -0500 (Thu, 26 Mar 2009) | 1 line
apply the second part of #4242's patch; classify all the implementation details in test_descr
........
r70618 | benjamin.peterson | 2009-03-26 15:48:25 -0500 (Thu, 26 Mar 2009) | 1 line
remove test_support.TestSkipped and just use unittest.SkipTest
........
r70619 | benjamin.peterson | 2009-03-26 15:49:40 -0500 (Thu, 26 Mar 2009) | 1 line
fix naming
........
r70620 | benjamin.peterson | 2009-03-26 16:10:30 -0500 (Thu, 26 Mar 2009) | 1 line
fix incorrect auto-translation of TestSkipped -> unittest.SkipTest
........
r70621 | benjamin.peterson | 2009-03-26 16:11:16 -0500 (Thu, 26 Mar 2009) | 1 line
must pass argument to get expected behavior ;)
........
r70623 | benjamin.peterson | 2009-03-26 16:30:10 -0500 (Thu, 26 Mar 2009) | 1 line
add missing import
........
r70624 | benjamin.peterson | 2009-03-26 16:30:54 -0500 (Thu, 26 Mar 2009) | 1 line
** is required here
........
r70626 | benjamin.peterson | 2009-03-26 16:40:29 -0500 (Thu, 26 Mar 2009) | 1 line
update email tests to use SkipTest
........
r70627 | benjamin.peterson | 2009-03-26 16:44:43 -0500 (Thu, 26 Mar 2009) | 1 line
fix another name
........
2009-03-28 18:42:05 -03:00
|
|
|
sys_versions.items():
|
|
|
|
sys.version = version_tag
|
2017-11-28 17:29:32 -04:00
|
|
|
if scm is None:
|
2017-03-04 01:19:55 -04:00
|
|
|
if hasattr(sys, "_git"):
|
|
|
|
del sys._git
|
Merged revisions 70554,70588-70589,70598,70605,70611-70621,70623-70624,70626-70627 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70554 | benjamin.peterson | 2009-03-23 16:25:15 -0500 (Mon, 23 Mar 2009) | 1 line
complain when there's no last exception
........
r70588 | benjamin.peterson | 2009-03-24 17:56:32 -0500 (Tue, 24 Mar 2009) | 1 line
fix newline issue in test summary
........
r70589 | benjamin.peterson | 2009-03-24 18:07:07 -0500 (Tue, 24 Mar 2009) | 1 line
another style nit
........
r70598 | benjamin.peterson | 2009-03-25 16:24:04 -0500 (Wed, 25 Mar 2009) | 1 line
add shorthands for expected failures and unexpected success
........
r70605 | benjamin.peterson | 2009-03-26 11:32:23 -0500 (Thu, 26 Mar 2009) | 1 line
remove uneeded function
........
r70611 | benjamin.peterson | 2009-03-26 13:35:37 -0500 (Thu, 26 Mar 2009) | 1 line
add much better tests for python version information parsing
........
r70612 | benjamin.peterson | 2009-03-26 13:55:48 -0500 (Thu, 26 Mar 2009) | 1 line
more and more implementations now support sys.subversion
........
r70613 | benjamin.peterson | 2009-03-26 13:58:30 -0500 (Thu, 26 Mar 2009) | 1 line
roll old test in with new one
........
r70614 | benjamin.peterson | 2009-03-26 14:09:21 -0500 (Thu, 26 Mar 2009) | 1 line
add support for PyPy
........
r70615 | benjamin.peterson | 2009-03-26 14:58:18 -0500 (Thu, 26 Mar 2009) | 5 lines
add some useful utilities for skipping tests with unittest's new skipping ability
most significantly apply a modified portion of the patch from #4242 with
patches for skipping implementation details
........
r70616 | benjamin.peterson | 2009-03-26 15:05:50 -0500 (Thu, 26 Mar 2009) | 1 line
rename TestCase.skip() to skipTest() because it causes annoying problems with trial #5571
........
r70617 | benjamin.peterson | 2009-03-26 15:17:27 -0500 (Thu, 26 Mar 2009) | 1 line
apply the second part of #4242's patch; classify all the implementation details in test_descr
........
r70618 | benjamin.peterson | 2009-03-26 15:48:25 -0500 (Thu, 26 Mar 2009) | 1 line
remove test_support.TestSkipped and just use unittest.SkipTest
........
r70619 | benjamin.peterson | 2009-03-26 15:49:40 -0500 (Thu, 26 Mar 2009) | 1 line
fix naming
........
r70620 | benjamin.peterson | 2009-03-26 16:10:30 -0500 (Thu, 26 Mar 2009) | 1 line
fix incorrect auto-translation of TestSkipped -> unittest.SkipTest
........
r70621 | benjamin.peterson | 2009-03-26 16:11:16 -0500 (Thu, 26 Mar 2009) | 1 line
must pass argument to get expected behavior ;)
........
r70623 | benjamin.peterson | 2009-03-26 16:30:10 -0500 (Thu, 26 Mar 2009) | 1 line
add missing import
........
r70624 | benjamin.peterson | 2009-03-26 16:30:54 -0500 (Thu, 26 Mar 2009) | 1 line
** is required here
........
r70626 | benjamin.peterson | 2009-03-26 16:40:29 -0500 (Thu, 26 Mar 2009) | 1 line
update email tests to use SkipTest
........
r70627 | benjamin.peterson | 2009-03-26 16:44:43 -0500 (Thu, 26 Mar 2009) | 1 line
fix another name
........
2009-03-28 18:42:05 -03:00
|
|
|
else:
|
2017-11-28 17:29:32 -04:00
|
|
|
sys._git = scm
|
Merged revisions 70554,70588-70589,70598,70605,70611-70621,70623-70624,70626-70627 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70554 | benjamin.peterson | 2009-03-23 16:25:15 -0500 (Mon, 23 Mar 2009) | 1 line
complain when there's no last exception
........
r70588 | benjamin.peterson | 2009-03-24 17:56:32 -0500 (Tue, 24 Mar 2009) | 1 line
fix newline issue in test summary
........
r70589 | benjamin.peterson | 2009-03-24 18:07:07 -0500 (Tue, 24 Mar 2009) | 1 line
another style nit
........
r70598 | benjamin.peterson | 2009-03-25 16:24:04 -0500 (Wed, 25 Mar 2009) | 1 line
add shorthands for expected failures and unexpected success
........
r70605 | benjamin.peterson | 2009-03-26 11:32:23 -0500 (Thu, 26 Mar 2009) | 1 line
remove uneeded function
........
r70611 | benjamin.peterson | 2009-03-26 13:35:37 -0500 (Thu, 26 Mar 2009) | 1 line
add much better tests for python version information parsing
........
r70612 | benjamin.peterson | 2009-03-26 13:55:48 -0500 (Thu, 26 Mar 2009) | 1 line
more and more implementations now support sys.subversion
........
r70613 | benjamin.peterson | 2009-03-26 13:58:30 -0500 (Thu, 26 Mar 2009) | 1 line
roll old test in with new one
........
r70614 | benjamin.peterson | 2009-03-26 14:09:21 -0500 (Thu, 26 Mar 2009) | 1 line
add support for PyPy
........
r70615 | benjamin.peterson | 2009-03-26 14:58:18 -0500 (Thu, 26 Mar 2009) | 5 lines
add some useful utilities for skipping tests with unittest's new skipping ability
most significantly apply a modified portion of the patch from #4242 with
patches for skipping implementation details
........
r70616 | benjamin.peterson | 2009-03-26 15:05:50 -0500 (Thu, 26 Mar 2009) | 1 line
rename TestCase.skip() to skipTest() because it causes annoying problems with trial #5571
........
r70617 | benjamin.peterson | 2009-03-26 15:17:27 -0500 (Thu, 26 Mar 2009) | 1 line
apply the second part of #4242's patch; classify all the implementation details in test_descr
........
r70618 | benjamin.peterson | 2009-03-26 15:48:25 -0500 (Thu, 26 Mar 2009) | 1 line
remove test_support.TestSkipped and just use unittest.SkipTest
........
r70619 | benjamin.peterson | 2009-03-26 15:49:40 -0500 (Thu, 26 Mar 2009) | 1 line
fix naming
........
r70620 | benjamin.peterson | 2009-03-26 16:10:30 -0500 (Thu, 26 Mar 2009) | 1 line
fix incorrect auto-translation of TestSkipped -> unittest.SkipTest
........
r70621 | benjamin.peterson | 2009-03-26 16:11:16 -0500 (Thu, 26 Mar 2009) | 1 line
must pass argument to get expected behavior ;)
........
r70623 | benjamin.peterson | 2009-03-26 16:30:10 -0500 (Thu, 26 Mar 2009) | 1 line
add missing import
........
r70624 | benjamin.peterson | 2009-03-26 16:30:54 -0500 (Thu, 26 Mar 2009) | 1 line
** is required here
........
r70626 | benjamin.peterson | 2009-03-26 16:40:29 -0500 (Thu, 26 Mar 2009) | 1 line
update email tests to use SkipTest
........
r70627 | benjamin.peterson | 2009-03-26 16:44:43 -0500 (Thu, 26 Mar 2009) | 1 line
fix another name
........
2009-03-28 18:42:05 -03:00
|
|
|
if sys_platform is not None:
|
|
|
|
sys.platform = sys_platform
|
|
|
|
self.assertEqual(platform.python_implementation(), info[0])
|
|
|
|
self.assertEqual(platform.python_version(), info[1])
|
|
|
|
self.assertEqual(platform.python_branch(), info[2])
|
|
|
|
self.assertEqual(platform.python_revision(), info[3])
|
|
|
|
self.assertEqual(platform.python_build(), info[4])
|
|
|
|
self.assertEqual(platform.python_compiler(), info[5])
|
2005-11-21 13:48:12 -04:00
|
|
|
|
2023-03-19 19:52:47 -03:00
|
|
|
with self.assertRaises(ValueError):
|
|
|
|
platform._sys_version('2. 4.3 (truncation) \n[GCC]')
|
|
|
|
|
2005-11-21 13:48:12 -04:00
|
|
|
def test_system_alias(self):
|
|
|
|
res = platform.system_alias(
|
|
|
|
platform.system(),
|
|
|
|
platform.release(),
|
|
|
|
platform.version(),
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_uname(self):
|
|
|
|
res = platform.uname()
|
2009-06-30 20:06:06 -03:00
|
|
|
self.assertTrue(any(res))
|
2012-06-24 18:30:41 -03:00
|
|
|
self.assertEqual(res[0], res.system)
|
2020-05-09 11:12:41 -03:00
|
|
|
self.assertEqual(res[-6], res.system)
|
2012-06-24 18:30:41 -03:00
|
|
|
self.assertEqual(res[1], res.node)
|
2020-05-09 11:12:41 -03:00
|
|
|
self.assertEqual(res[-5], res.node)
|
2012-06-24 18:30:41 -03:00
|
|
|
self.assertEqual(res[2], res.release)
|
2020-05-09 11:12:41 -03:00
|
|
|
self.assertEqual(res[-4], res.release)
|
2012-06-24 18:30:41 -03:00
|
|
|
self.assertEqual(res[3], res.version)
|
2020-05-09 11:12:41 -03:00
|
|
|
self.assertEqual(res[-3], res.version)
|
2012-06-24 18:30:41 -03:00
|
|
|
self.assertEqual(res[4], res.machine)
|
2020-05-09 11:12:41 -03:00
|
|
|
self.assertEqual(res[-2], res.machine)
|
2012-06-24 18:30:41 -03:00
|
|
|
self.assertEqual(res[5], res.processor)
|
2020-05-09 11:12:41 -03:00
|
|
|
self.assertEqual(res[-1], res.processor)
|
|
|
|
self.assertEqual(len(res), 6)
|
|
|
|
|
2024-03-27 13:53:27 -03:00
|
|
|
if os.name == "posix":
|
|
|
|
uname = os.uname()
|
|
|
|
self.assertEqual(res.node, uname.nodename)
|
|
|
|
self.assertEqual(res.version, uname.version)
|
|
|
|
self.assertEqual(res.machine, uname.machine)
|
|
|
|
|
|
|
|
if sys.platform == "android":
|
|
|
|
self.assertEqual(res.system, "Android")
|
|
|
|
self.assertEqual(res.release, platform.android_ver().release)
|
2024-03-28 04:59:33 -03:00
|
|
|
elif sys.platform == "ios":
|
|
|
|
# Platform module needs ctypes for full operation. If ctypes
|
|
|
|
# isn't available, there's no ObjC module, and dummy values are
|
|
|
|
# returned.
|
|
|
|
if _ctypes:
|
|
|
|
self.assertIn(res.system, {"iOS", "iPadOS"})
|
|
|
|
self.assertEqual(res.release, platform.ios_ver().release)
|
|
|
|
else:
|
|
|
|
self.assertEqual(res.system, "")
|
|
|
|
self.assertEqual(res.release, "")
|
2024-03-27 13:53:27 -03:00
|
|
|
else:
|
|
|
|
self.assertEqual(res.system, uname.sysname)
|
|
|
|
self.assertEqual(res.release, uname.release)
|
|
|
|
|
2024-03-28 04:59:33 -03:00
|
|
|
|
2022-09-07 17:09:20 -03:00
|
|
|
@unittest.skipUnless(sys.platform.startswith('win'), "windows only test")
|
|
|
|
def test_uname_win32_without_wmi(self):
|
|
|
|
def raises_oserror(*a):
|
|
|
|
raise OSError()
|
|
|
|
|
|
|
|
with support.swap_attr(platform, '_wmi_query', raises_oserror):
|
|
|
|
self.test_uname()
|
|
|
|
|
2020-05-09 11:12:41 -03:00
|
|
|
def test_uname_cast_to_tuple(self):
|
|
|
|
res = platform.uname()
|
|
|
|
expected = (
|
|
|
|
res.system, res.node, res.release, res.version, res.machine,
|
|
|
|
res.processor,
|
|
|
|
)
|
|
|
|
self.assertEqual(tuple(res), expected)
|
2005-11-21 13:48:12 -04:00
|
|
|
|
2020-12-31 15:08:03 -04:00
|
|
|
def test_uname_replace(self):
|
|
|
|
res = platform.uname()
|
|
|
|
new = res._replace(
|
|
|
|
system='system', node='node', release='release',
|
|
|
|
version='version', machine='machine')
|
|
|
|
self.assertEqual(new.system, 'system')
|
|
|
|
self.assertEqual(new.node, 'node')
|
|
|
|
self.assertEqual(new.release, 'release')
|
|
|
|
self.assertEqual(new.version, 'version')
|
|
|
|
self.assertEqual(new.machine, 'machine')
|
|
|
|
# processor cannot be replaced
|
|
|
|
self.assertEqual(new.processor, res.processor)
|
|
|
|
|
|
|
|
def test_uname_copy(self):
|
|
|
|
uname = platform.uname()
|
|
|
|
self.assertEqual(copy.copy(uname), uname)
|
|
|
|
self.assertEqual(copy.deepcopy(uname), uname)
|
|
|
|
|
|
|
|
def test_uname_pickle(self):
|
|
|
|
orig = platform.uname()
|
|
|
|
for proto in range(pickle.HIGHEST_PROTOCOL + 1):
|
|
|
|
with self.subTest(protocol=proto):
|
|
|
|
pickled = pickle.dumps(orig, proto)
|
|
|
|
restored = pickle.loads(pickled)
|
|
|
|
self.assertEqual(restored, orig)
|
|
|
|
|
|
|
|
def test_uname_slices(self):
|
|
|
|
res = platform.uname()
|
|
|
|
expected = tuple(res)
|
|
|
|
self.assertEqual(res[:], expected)
|
|
|
|
self.assertEqual(res[:5], expected[:5])
|
|
|
|
|
2022-11-26 09:28:49 -04:00
|
|
|
def test_uname_fields(self):
|
|
|
|
self.assertIn('processor', platform.uname()._fields)
|
|
|
|
|
|
|
|
def test_uname_asdict(self):
|
|
|
|
res = platform.uname()._asdict()
|
|
|
|
self.assertEqual(len(res), 6)
|
|
|
|
self.assertIn('processor', res)
|
|
|
|
|
2020-04-15 15:32:01 -03:00
|
|
|
@unittest.skipIf(sys.platform in ['win32', 'OpenVMS'], "uname -p not used")
|
2022-01-25 03:09:06 -04:00
|
|
|
@support.requires_subprocess()
|
2020-04-15 15:32:01 -03:00
|
|
|
def test_uname_processor(self):
|
|
|
|
"""
|
|
|
|
On some systems, the processor must match the output
|
|
|
|
of 'uname -p'. See Issue 35967 for rationale.
|
|
|
|
"""
|
bpo-35967: Skip test with `uname -p` on Android (GH-19577)
The uname binary on Android does not support -p [1]. Here is a sample
log:
```
0:06:03 load avg: 0.56 [254/421/8] test_platform failed -- running: test_asyncio (5 min 53 sec)
uname: Unknown option p (see "uname --help")
test test_platform failed -- Traceback (most recent call last):
File "/data/local/tmp/lib/python3.9/test/test_platform.py", line 170, in test_uname_processor
proc_res = subprocess.check_output(['uname', '-p'], text=True).strip()
File "/data/local/tmp/lib/python3.9/subprocess.py", line 420, in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
File "/data/local/tmp/lib/python3.9/subprocess.py", line 524, in run
raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['uname', '-p']' returned non-zero exit status 1.
```
[1] https://android.googlesource.com/platform/external/toybox/+/refs/heads/master/toys/posix/uname.c
Automerge-Triggered-By: @jaraco
2020-04-18 11:20:54 -03:00
|
|
|
try:
|
|
|
|
proc_res = subprocess.check_output(['uname', '-p'], text=True).strip()
|
|
|
|
expect = platform._unknown_as_blank(proc_res)
|
|
|
|
except (OSError, subprocess.CalledProcessError):
|
|
|
|
expect = ''
|
2020-04-15 20:55:35 -03:00
|
|
|
self.assertEqual(platform.uname().processor, expect)
|
2020-04-15 15:32:01 -03:00
|
|
|
|
2010-03-22 14:48:48 -03:00
|
|
|
@unittest.skipUnless(sys.platform.startswith('win'), "windows only test")
|
|
|
|
def test_uname_win32_ARCHITEW6432(self):
|
|
|
|
# Issue 7860: make sure we get architecture from the correct variable
|
|
|
|
# on 64 bit Windows: if PROCESSOR_ARCHITEW6432 exists we should be
|
|
|
|
# using it, per
|
|
|
|
# http://blogs.msdn.com/david.wang/archive/2006/03/26/HOWTO-Detect-Process-Bitness.aspx
|
2022-09-07 17:09:20 -03:00
|
|
|
|
|
|
|
# We also need to suppress WMI checks, as those are reliable and
|
|
|
|
# overrule the environment variables
|
|
|
|
def raises_oserror(*a):
|
|
|
|
raise OSError()
|
|
|
|
|
|
|
|
with support.swap_attr(platform, '_wmi_query', raises_oserror):
|
2020-08-07 12:18:38 -03:00
|
|
|
with os_helper.EnvironmentVarGuard() as environ:
|
2022-09-07 17:09:20 -03:00
|
|
|
try:
|
|
|
|
if 'PROCESSOR_ARCHITEW6432' in environ:
|
|
|
|
del environ['PROCESSOR_ARCHITEW6432']
|
|
|
|
environ['PROCESSOR_ARCHITECTURE'] = 'foo'
|
|
|
|
platform._uname_cache = None
|
|
|
|
system, node, release, version, machine, processor = platform.uname()
|
|
|
|
self.assertEqual(machine, 'foo')
|
|
|
|
environ['PROCESSOR_ARCHITEW6432'] = 'bar'
|
|
|
|
platform._uname_cache = None
|
|
|
|
system, node, release, version, machine, processor = platform.uname()
|
|
|
|
self.assertEqual(machine, 'bar')
|
|
|
|
finally:
|
|
|
|
platform._uname_cache = None
|
2010-03-22 14:48:48 -03:00
|
|
|
|
2005-11-21 13:48:12 -04:00
|
|
|
def test_java_ver(self):
|
2024-03-08 04:14:17 -04:00
|
|
|
import re
|
|
|
|
msg = re.escape(
|
|
|
|
"'java_ver' is deprecated and slated for removal in Python 3.15"
|
|
|
|
)
|
|
|
|
with self.assertWarnsRegex(DeprecationWarning, msg):
|
|
|
|
res = platform.java_ver()
|
|
|
|
self.assertEqual(len(res), 4)
|
2005-11-21 13:48:12 -04:00
|
|
|
|
2024-03-13 03:46:48 -03:00
|
|
|
@unittest.skipUnless(support.MS_WINDOWS, 'This test only makes sense on Windows')
|
2005-11-21 13:48:12 -04:00
|
|
|
def test_win32_ver(self):
|
2024-03-13 03:46:48 -03:00
|
|
|
release1, version1, csd1, ptype1 = 'a', 'b', 'c', 'd'
|
|
|
|
res = platform.win32_ver(release1, version1, csd1, ptype1)
|
|
|
|
self.assertEqual(len(res), 4)
|
|
|
|
release, version, csd, ptype = res
|
|
|
|
if release:
|
|
|
|
# Currently, release names always come from internal dicts,
|
|
|
|
# but this could change over time. For now, we just check that
|
|
|
|
# release is something different from what we have passed.
|
|
|
|
self.assertNotEqual(release, release1)
|
|
|
|
if version:
|
|
|
|
# It is rather hard to test explicit version without
|
|
|
|
# going deep into the details.
|
|
|
|
self.assertIn('.', version)
|
|
|
|
for v in version.split('.'):
|
|
|
|
int(v) # should not fail
|
|
|
|
if csd:
|
|
|
|
self.assertTrue(csd.startswith('SP'), msg=csd)
|
|
|
|
if ptype:
|
|
|
|
if os.cpu_count() > 1:
|
|
|
|
self.assertIn('Multiprocessor', ptype)
|
|
|
|
else:
|
|
|
|
self.assertIn('Uniprocessor', ptype)
|
|
|
|
|
|
|
|
@unittest.skipIf(support.MS_WINDOWS, 'This test only makes sense on non Windows')
|
|
|
|
def test_win32_ver_on_non_windows(self):
|
|
|
|
release, version, csd, ptype = 'a', '1.0', 'c', 'd'
|
|
|
|
res = platform.win32_ver(release, version, csd, ptype)
|
|
|
|
self.assertSequenceEqual(res, (release, version, csd, ptype), seq_type=tuple)
|
2005-11-21 13:48:12 -04:00
|
|
|
|
|
|
|
def test_mac_ver(self):
|
|
|
|
res = platform.mac_ver()
|
2008-05-29 18:22:40 -03:00
|
|
|
|
2012-06-24 18:30:41 -03:00
|
|
|
if platform.uname().system == 'Darwin':
|
2018-12-07 06:10:33 -04:00
|
|
|
# We are on a macOS system, check that the right version
|
|
|
|
# information is returned
|
|
|
|
output = subprocess.check_output(['sw_vers'], text=True)
|
|
|
|
for line in output.splitlines():
|
|
|
|
if line.startswith('ProductVersion:'):
|
|
|
|
real_ver = line.strip().split()[-1]
|
2008-05-29 18:22:40 -03:00
|
|
|
break
|
2018-12-07 06:10:33 -04:00
|
|
|
else:
|
|
|
|
self.fail(f"failed to parse sw_vers output: {output!r}")
|
|
|
|
|
2009-09-03 18:29:20 -03:00
|
|
|
result_list = res[0].split('.')
|
|
|
|
expect_list = real_ver.split('.')
|
|
|
|
len_diff = len(result_list) - len(expect_list)
|
|
|
|
# On Snow Leopard, sw_vers reports 10.6.0 as 10.6
|
|
|
|
if len_diff > 0:
|
|
|
|
expect_list.extend(['0'] * len_diff)
|
2020-11-24 02:20:35 -04:00
|
|
|
# For compatibility with older binaries, macOS 11.x may report
|
|
|
|
# itself as '10.16' rather than '11.x.y'.
|
|
|
|
if result_list != ['10', '16']:
|
|
|
|
self.assertEqual(result_list, expect_list)
|
2008-05-29 18:22:40 -03:00
|
|
|
|
|
|
|
# res[1] claims to contain
|
|
|
|
# (version, dev_stage, non_release_version)
|
|
|
|
# That information is no longer available
|
2010-11-20 15:04:17 -04:00
|
|
|
self.assertEqual(res[1], ('', '', ''))
|
2008-05-29 18:22:40 -03:00
|
|
|
|
|
|
|
if sys.byteorder == 'little':
|
2020-11-08 05:05:27 -04:00
|
|
|
self.assertIn(res[2], ('i386', 'x86_64', 'arm64'))
|
2008-05-29 18:22:40 -03:00
|
|
|
else:
|
2010-11-20 15:04:17 -04:00
|
|
|
self.assertEqual(res[2], 'PowerPC')
|
2005-11-21 13:48:12 -04:00
|
|
|
|
2010-07-23 08:54:59 -03:00
|
|
|
|
|
|
|
@unittest.skipUnless(sys.platform == 'darwin', "OSX only test")
|
|
|
|
def test_mac_ver_with_fork(self):
|
|
|
|
# Issue7895: platform.mac_ver() crashes when using fork without exec
|
|
|
|
#
|
|
|
|
# This test checks that the fix for that issue works.
|
|
|
|
#
|
|
|
|
pid = os.fork()
|
|
|
|
if pid == 0:
|
|
|
|
# child
|
|
|
|
info = platform.mac_ver()
|
|
|
|
os._exit(0)
|
|
|
|
|
|
|
|
else:
|
|
|
|
# parent
|
2020-03-31 15:08:12 -03:00
|
|
|
support.wait_process(pid, exitcode=0)
|
2010-07-23 08:54:59 -03:00
|
|
|
|
2024-03-28 04:59:33 -03:00
|
|
|
def test_ios_ver(self):
|
|
|
|
result = platform.ios_ver()
|
|
|
|
|
|
|
|
# ios_ver is only fully available on iOS where ctypes is available.
|
|
|
|
if sys.platform == "ios" and _ctypes:
|
|
|
|
system, release, model, is_simulator = result
|
|
|
|
# Result is a namedtuple
|
|
|
|
self.assertEqual(result.system, system)
|
|
|
|
self.assertEqual(result.release, release)
|
|
|
|
self.assertEqual(result.model, model)
|
|
|
|
self.assertEqual(result.is_simulator, is_simulator)
|
|
|
|
|
|
|
|
# We can't assert specific values without reproducing the logic of
|
|
|
|
# ios_ver(), so we check that the values are broadly what we expect.
|
|
|
|
|
|
|
|
# System is either iOS or iPadOS, depending on the test device
|
|
|
|
self.assertIn(system, {"iOS", "iPadOS"})
|
|
|
|
|
|
|
|
# Release is a numeric version specifier with at least 2 parts
|
|
|
|
parts = release.split(".")
|
|
|
|
self.assertGreaterEqual(len(parts), 2)
|
|
|
|
self.assertTrue(all(part.isdigit() for part in parts))
|
|
|
|
|
|
|
|
# If this is a simulator, we get a high level device descriptor
|
|
|
|
# with no identifying model number. If this is a physical device,
|
|
|
|
# we get a model descriptor like "iPhone13,1"
|
|
|
|
if is_simulator:
|
|
|
|
self.assertIn(model, {"iPhone", "iPad"})
|
|
|
|
else:
|
|
|
|
self.assertTrue(
|
|
|
|
(model.startswith("iPhone") or model.startswith("iPad"))
|
|
|
|
and "," in model
|
|
|
|
)
|
|
|
|
|
|
|
|
self.assertEqual(type(is_simulator), bool)
|
|
|
|
else:
|
|
|
|
# On non-iOS platforms, calling ios_ver doesn't fail; you get
|
|
|
|
# default values
|
|
|
|
self.assertEqual(result.system, "")
|
|
|
|
self.assertEqual(result.release, "")
|
|
|
|
self.assertEqual(result.model, "")
|
|
|
|
self.assertFalse(result.is_simulator)
|
|
|
|
|
|
|
|
# Check the fallback values can be overridden by arguments
|
|
|
|
override = platform.ios_ver("Foo", "Bar", "Whiz", True)
|
|
|
|
self.assertEqual(override.system, "Foo")
|
|
|
|
self.assertEqual(override.release, "Bar")
|
|
|
|
self.assertEqual(override.model, "Whiz")
|
|
|
|
self.assertTrue(override.is_simulator)
|
|
|
|
|
2022-03-22 07:04:36 -03:00
|
|
|
@unittest.skipIf(support.is_emscripten, "Does not apply to Emscripten")
|
2005-11-21 13:48:12 -04:00
|
|
|
def test_libc_ver(self):
|
2018-12-05 09:04:52 -04:00
|
|
|
# check that libc_ver(executable) doesn't raise an exception
|
Merged revisions 63208-63209,63211-63212,63214-63217,63219-63224,63226-63227,63229-63232,63234-63235,63237-63239,63241,63243-63246,63250-63254,63256-63259,63261,63263-63264,63266-63267,63269-63270,63272-63273,63275-63276,63278,63280-63281,63283-63284,63286-63287,63289-63290,63292-63293,63295-63296,63298-63299,63301-63302,63304-63305,63307,63309-63314,63316-63322,63324-63325,63327-63335,63337-63338,63340-63342,63344-63346,63348 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r63208 | georg.brandl | 2008-05-13 15:04:54 -0400 (Tue, 13 May 2008) | 2 lines
#2831: add start argument to enumerate(). Patch by Scott Dial and me.
........
r63209 | marc-andre.lemburg | 2008-05-13 15:10:45 -0400 (Tue, 13 May 2008) | 3 lines
Remove leftovers from reverted setuptools checkin (they were added in r45525).
........
r63211 | georg.brandl | 2008-05-13 17:32:03 -0400 (Tue, 13 May 2008) | 2 lines
Fix a refleak in the _warnings module.
........
r63212 | andrew.kuchling | 2008-05-13 20:46:41 -0400 (Tue, 13 May 2008) | 1 line
List all the removes and renamed modules
........
r63214 | brett.cannon | 2008-05-13 21:09:40 -0400 (Tue, 13 May 2008) | 2 lines
Rewrap some lines in test_py3kwarn.
........
r63219 | georg.brandl | 2008-05-14 02:34:15 -0400 (Wed, 14 May 2008) | 2 lines
Add NEWS entry for #2831.
........
r63220 | neal.norwitz | 2008-05-14 02:47:56 -0400 (Wed, 14 May 2008) | 3 lines
Fix "refleak" by restoring the tearDown method removed by accident (AFAICT)
in r62788.
........
r63221 | georg.brandl | 2008-05-14 03:18:22 -0400 (Wed, 14 May 2008) | 2 lines
Fix another "refleak" by clearing the filters after test.
........
r63222 | neal.norwitz | 2008-05-14 03:21:42 -0400 (Wed, 14 May 2008) | 5 lines
Install the json package and tests as well as the lib2to3 tests
so the tests work when run from an install directory.
They are currently skipped on the daily runs (not from the buildbots)
for checking refleaks, etc.
........
r63256 | andrew.kuchling | 2008-05-14 21:10:24 -0400 (Wed, 14 May 2008) | 1 line
Note some removals and a rename
........
r63311 | brett.cannon | 2008-05-15 00:36:53 -0400 (Thu, 15 May 2008) | 2 lines
Add a snippet for the deprecation directive for docs.
........
r63313 | gregory.p.smith | 2008-05-15 00:56:18 -0400 (Thu, 15 May 2008) | 5 lines
disable the crashing test. I will also file a bug. This crash does
not appear to be a new bug, its just that the test coverage went up
recently exposing it. (I verified that by testing this test code on
an older Modules/_bsddb.c)
........
r63320 | georg.brandl | 2008-05-15 11:08:32 -0400 (Thu, 15 May 2008) | 2 lines
#2863: add gen.__name__ and add this name to generator repr().
........
r63324 | andrew.kuchling | 2008-05-15 16:07:39 -0400 (Thu, 15 May 2008) | 1 line
Import class from distutils.cmd, not .core, to avoid circular import
........
r63327 | alexandre.vassalotti | 2008-05-15 16:31:42 -0400 (Thu, 15 May 2008) | 2 lines
Fixed typo in a doctest of test_genexps.
........
r63332 | benjamin.peterson | 2008-05-15 18:34:33 -0400 (Thu, 15 May 2008) | 2 lines
add Mac modules to the list of deprecated ones
........
r63333 | benjamin.peterson | 2008-05-15 18:41:16 -0400 (Thu, 15 May 2008) | 2 lines
fix typos in whatsnew
........
r63348 | benjamin.peterson | 2008-05-15 22:24:49 -0400 (Thu, 15 May 2008) | 2 lines
make test_platform a bit more assertive (We'll see what the buildbots say.)
........
2008-05-16 01:39:54 -03:00
|
|
|
if os.path.isdir(sys.executable) and \
|
|
|
|
os.path.exists(sys.executable+'.exe'):
|
2006-04-21 07:40:58 -03:00
|
|
|
# Cygwin horror
|
Merged revisions 78018,78035-78040,78042-78043,78046,78048-78052,78054,78059,78075-78080 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78018 | georg.brandl | 2010-02-06 11:08:21 +0100 (Sa, 06 Feb 2010) | 1 line
#7864: make deprecation notices a bit clearer.
........
r78035 | georg.brandl | 2010-02-06 23:44:17 +0100 (Sa, 06 Feb 2010) | 1 line
Fix duplicate import.
........
r78036 | georg.brandl | 2010-02-06 23:49:47 +0100 (Sa, 06 Feb 2010) | 1 line
Remove unused import.
........
r78037 | georg.brandl | 2010-02-06 23:59:15 +0100 (Sa, 06 Feb 2010) | 1 line
No need to assign the results of expressions used only for side effects.
........
r78038 | georg.brandl | 2010-02-07 00:02:29 +0100 (So, 07 Feb 2010) | 1 line
Add a missing import.
........
r78039 | georg.brandl | 2010-02-07 00:06:24 +0100 (So, 07 Feb 2010) | 1 line
Add missing imports.
........
r78040 | georg.brandl | 2010-02-07 00:08:00 +0100 (So, 07 Feb 2010) | 1 line
Fix a few UnboundLocalErrors in test_long.
........
r78042 | georg.brandl | 2010-02-07 00:12:12 +0100 (So, 07 Feb 2010) | 1 line
Add missing import.
........
r78043 | georg.brandl | 2010-02-07 00:12:19 +0100 (So, 07 Feb 2010) | 1 line
Remove duplicate test method.
........
r78046 | georg.brandl | 2010-02-07 00:18:00 +0100 (So, 07 Feb 2010) | 1 line
Fix various missing import/unbound name errors.
........
r78048 | georg.brandl | 2010-02-07 00:23:45 +0100 (So, 07 Feb 2010) | 1 line
We heard you like test failures so we put unbound locals in your test so that you can fail while you fail.
........
r78049 | georg.brandl | 2010-02-07 00:33:33 +0100 (So, 07 Feb 2010) | 1 line
Fix import/access for some identifiers. _TestSharedCTypes does not seem to be executed?
........
r78050 | georg.brandl | 2010-02-07 00:34:10 +0100 (So, 07 Feb 2010) | 1 line
Fix more unbound locals in code paths that do not seem to be used.
........
r78051 | georg.brandl | 2010-02-07 00:53:52 +0100 (So, 07 Feb 2010) | 1 line
Add missing import when running these tests standalone.
........
r78052 | georg.brandl | 2010-02-07 00:54:04 +0100 (So, 07 Feb 2010) | 1 line
Add missing import when running these tests standalone.
........
r78054 | georg.brandl | 2010-02-07 00:58:25 +0100 (So, 07 Feb 2010) | 1 line
Add missing import.
........
r78059 | georg.brandl | 2010-02-07 12:34:15 +0100 (So, 07 Feb 2010) | 1 line
Use "regexp" consistently.
........
r78075 | georg.brandl | 2010-02-07 13:16:12 +0100 (So, 07 Feb 2010) | 1 line
Fix another duplicated test method.
........
r78076 | georg.brandl | 2010-02-07 13:19:43 +0100 (So, 07 Feb 2010) | 1 line
Fix wrong usage of "except X, Y:".
........
r78077 | georg.brandl | 2010-02-07 13:25:50 +0100 (So, 07 Feb 2010) | 1 line
Fix two redefined test methods.
........
r78078 | georg.brandl | 2010-02-07 13:27:06 +0100 (So, 07 Feb 2010) | 1 line
Fix a redefined test method.
........
r78079 | georg.brandl | 2010-02-07 13:34:26 +0100 (So, 07 Feb 2010) | 1 line
Add a minimal test for fnmatchcase().
........
r78080 | georg.brandl | 2010-02-07 13:55:12 +0100 (So, 07 Feb 2010) | 1 line
Remove duplicate test method.
........
2010-03-14 07:23:39 -03:00
|
|
|
executable = sys.executable + '.exe'
|
2019-06-29 14:34:11 -03:00
|
|
|
elif sys.platform == "win32" and not os.path.exists(sys.executable):
|
|
|
|
# App symlink appears to not exist, but we want the
|
|
|
|
# real executable here anyway
|
|
|
|
import _winapi
|
|
|
|
executable = _winapi.GetModuleFileName(0)
|
Merged revisions 78018,78035-78040,78042-78043,78046,78048-78052,78054,78059,78075-78080 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78018 | georg.brandl | 2010-02-06 11:08:21 +0100 (Sa, 06 Feb 2010) | 1 line
#7864: make deprecation notices a bit clearer.
........
r78035 | georg.brandl | 2010-02-06 23:44:17 +0100 (Sa, 06 Feb 2010) | 1 line
Fix duplicate import.
........
r78036 | georg.brandl | 2010-02-06 23:49:47 +0100 (Sa, 06 Feb 2010) | 1 line
Remove unused import.
........
r78037 | georg.brandl | 2010-02-06 23:59:15 +0100 (Sa, 06 Feb 2010) | 1 line
No need to assign the results of expressions used only for side effects.
........
r78038 | georg.brandl | 2010-02-07 00:02:29 +0100 (So, 07 Feb 2010) | 1 line
Add a missing import.
........
r78039 | georg.brandl | 2010-02-07 00:06:24 +0100 (So, 07 Feb 2010) | 1 line
Add missing imports.
........
r78040 | georg.brandl | 2010-02-07 00:08:00 +0100 (So, 07 Feb 2010) | 1 line
Fix a few UnboundLocalErrors in test_long.
........
r78042 | georg.brandl | 2010-02-07 00:12:12 +0100 (So, 07 Feb 2010) | 1 line
Add missing import.
........
r78043 | georg.brandl | 2010-02-07 00:12:19 +0100 (So, 07 Feb 2010) | 1 line
Remove duplicate test method.
........
r78046 | georg.brandl | 2010-02-07 00:18:00 +0100 (So, 07 Feb 2010) | 1 line
Fix various missing import/unbound name errors.
........
r78048 | georg.brandl | 2010-02-07 00:23:45 +0100 (So, 07 Feb 2010) | 1 line
We heard you like test failures so we put unbound locals in your test so that you can fail while you fail.
........
r78049 | georg.brandl | 2010-02-07 00:33:33 +0100 (So, 07 Feb 2010) | 1 line
Fix import/access for some identifiers. _TestSharedCTypes does not seem to be executed?
........
r78050 | georg.brandl | 2010-02-07 00:34:10 +0100 (So, 07 Feb 2010) | 1 line
Fix more unbound locals in code paths that do not seem to be used.
........
r78051 | georg.brandl | 2010-02-07 00:53:52 +0100 (So, 07 Feb 2010) | 1 line
Add missing import when running these tests standalone.
........
r78052 | georg.brandl | 2010-02-07 00:54:04 +0100 (So, 07 Feb 2010) | 1 line
Add missing import when running these tests standalone.
........
r78054 | georg.brandl | 2010-02-07 00:58:25 +0100 (So, 07 Feb 2010) | 1 line
Add missing import.
........
r78059 | georg.brandl | 2010-02-07 12:34:15 +0100 (So, 07 Feb 2010) | 1 line
Use "regexp" consistently.
........
r78075 | georg.brandl | 2010-02-07 13:16:12 +0100 (So, 07 Feb 2010) | 1 line
Fix another duplicated test method.
........
r78076 | georg.brandl | 2010-02-07 13:19:43 +0100 (So, 07 Feb 2010) | 1 line
Fix wrong usage of "except X, Y:".
........
r78077 | georg.brandl | 2010-02-07 13:25:50 +0100 (So, 07 Feb 2010) | 1 line
Fix two redefined test methods.
........
r78078 | georg.brandl | 2010-02-07 13:27:06 +0100 (So, 07 Feb 2010) | 1 line
Fix a redefined test method.
........
r78079 | georg.brandl | 2010-02-07 13:34:26 +0100 (So, 07 Feb 2010) | 1 line
Add a minimal test for fnmatchcase().
........
r78080 | georg.brandl | 2010-02-07 13:55:12 +0100 (So, 07 Feb 2010) | 1 line
Remove duplicate test method.
........
2010-03-14 07:23:39 -03:00
|
|
|
else:
|
|
|
|
executable = sys.executable
|
2018-12-05 09:04:52 -04:00
|
|
|
platform.libc_ver(executable)
|
|
|
|
|
2020-06-25 07:38:51 -03:00
|
|
|
filename = os_helper.TESTFN
|
|
|
|
self.addCleanup(os_helper.unlink, filename)
|
2018-12-05 09:04:52 -04:00
|
|
|
|
|
|
|
with mock.patch('os.confstr', create=True, return_value='mock 1.0'):
|
|
|
|
# test os.confstr() code path
|
|
|
|
self.assertEqual(platform.libc_ver(), ('mock', '1.0'))
|
|
|
|
|
|
|
|
# test the different regular expressions
|
|
|
|
for data, expected in (
|
|
|
|
(b'__libc_init', ('libc', '')),
|
|
|
|
(b'GLIBC_2.9', ('glibc', '2.9')),
|
|
|
|
(b'libc.so.1.2.5', ('libc', '1.2.5')),
|
|
|
|
(b'libc_pthread.so.1.2.5', ('libc', '1.2.5_pthread')),
|
|
|
|
(b'', ('', '')),
|
|
|
|
):
|
|
|
|
with open(filename, 'wb') as fp:
|
|
|
|
fp.write(b'[xxx%sxxx]' % data)
|
|
|
|
fp.flush()
|
|
|
|
|
|
|
|
# os.confstr() must not be used if executable is set
|
|
|
|
self.assertEqual(platform.libc_ver(executable=filename),
|
|
|
|
expected)
|
|
|
|
|
|
|
|
# binary containing multiple versions: get the most recent,
|
|
|
|
# make sure that 1.9 is seen as older than 1.23.4
|
|
|
|
chunksize = 16384
|
|
|
|
with open(filename, 'wb') as f:
|
|
|
|
# test match at chunk boundary
|
|
|
|
f.write(b'x'*(chunksize - 10))
|
2018-07-09 05:47:45 -03:00
|
|
|
f.write(b'GLIBC_1.23.4\0GLIBC_1.9\0GLIBC_1.21\0')
|
2018-12-05 09:04:52 -04:00
|
|
|
self.assertEqual(platform.libc_ver(filename, chunksize=chunksize),
|
2018-07-09 05:47:45 -03:00
|
|
|
('glibc', '1.23.4'))
|
|
|
|
|
2024-03-27 13:53:27 -03:00
|
|
|
def test_android_ver(self):
|
|
|
|
res = platform.android_ver()
|
|
|
|
self.assertIsInstance(res, tuple)
|
|
|
|
self.assertEqual(res, (res.release, res.api_level, res.manufacturer,
|
|
|
|
res.model, res.device, res.is_emulator))
|
|
|
|
|
|
|
|
if sys.platform == "android":
|
|
|
|
for name in ["release", "manufacturer", "model", "device"]:
|
|
|
|
with self.subTest(name):
|
|
|
|
value = getattr(res, name)
|
|
|
|
self.assertIsInstance(value, str)
|
|
|
|
self.assertNotEqual(value, "")
|
|
|
|
|
|
|
|
self.assertIsInstance(res.api_level, int)
|
|
|
|
self.assertGreaterEqual(res.api_level, sys.getandroidapilevel())
|
|
|
|
|
|
|
|
self.assertIsInstance(res.is_emulator, bool)
|
|
|
|
|
|
|
|
# When not running on Android, it should return the default values.
|
|
|
|
else:
|
|
|
|
self.assertEqual(res.release, "")
|
|
|
|
self.assertEqual(res.api_level, 0)
|
|
|
|
self.assertEqual(res.manufacturer, "")
|
|
|
|
self.assertEqual(res.model, "")
|
|
|
|
self.assertEqual(res.device, "")
|
|
|
|
self.assertEqual(res.is_emulator, False)
|
|
|
|
|
|
|
|
# Default values may also be overridden using parameters.
|
|
|
|
res = platform.android_ver(
|
|
|
|
"alpha", 1, "bravo", "charlie", "delta", True)
|
|
|
|
self.assertEqual(res.release, "alpha")
|
|
|
|
self.assertEqual(res.api_level, 1)
|
|
|
|
self.assertEqual(res.manufacturer, "bravo")
|
|
|
|
self.assertEqual(res.model, "charlie")
|
|
|
|
self.assertEqual(res.device, "delta")
|
|
|
|
self.assertEqual(res.is_emulator, True)
|
|
|
|
|
2018-09-04 09:04:25 -03:00
|
|
|
@support.cpython_only
|
|
|
|
def test__comparable_version(self):
|
|
|
|
from platform import _comparable_version as V
|
|
|
|
self.assertEqual(V('1.2.3'), V('1.2.3'))
|
|
|
|
self.assertLess(V('1.2.3'), V('1.2.10'))
|
|
|
|
self.assertEqual(V('1.2.3.4'), V('1_2-3+4'))
|
|
|
|
self.assertLess(V('1.2spam'), V('1.2dev'))
|
|
|
|
self.assertLess(V('1.2dev'), V('1.2alpha'))
|
|
|
|
self.assertLess(V('1.2dev'), V('1.2a'))
|
|
|
|
self.assertLess(V('1.2alpha'), V('1.2beta'))
|
|
|
|
self.assertLess(V('1.2a'), V('1.2b'))
|
|
|
|
self.assertLess(V('1.2beta'), V('1.2c'))
|
|
|
|
self.assertLess(V('1.2b'), V('1.2c'))
|
|
|
|
self.assertLess(V('1.2c'), V('1.2RC'))
|
|
|
|
self.assertLess(V('1.2c'), V('1.2rc'))
|
|
|
|
self.assertLess(V('1.2RC'), V('1.2.0'))
|
|
|
|
self.assertLess(V('1.2rc'), V('1.2.0'))
|
|
|
|
self.assertLess(V('1.2.0'), V('1.2pl'))
|
|
|
|
self.assertLess(V('1.2.0'), V('1.2p'))
|
|
|
|
|
|
|
|
self.assertLess(V('1.5.1'), V('1.5.2b2'))
|
|
|
|
self.assertLess(V('3.10a'), V('161'))
|
|
|
|
self.assertEqual(V('8.02'), V('8.02'))
|
|
|
|
self.assertLess(V('3.4j'), V('1996.07.12'))
|
|
|
|
self.assertLess(V('3.1.1.6'), V('3.2.pl0'))
|
|
|
|
self.assertLess(V('2g6'), V('11g'))
|
|
|
|
self.assertLess(V('0.9'), V('2.2'))
|
|
|
|
self.assertLess(V('1.2'), V('1.2.1'))
|
|
|
|
self.assertLess(V('1.1'), V('1.2.2'))
|
|
|
|
self.assertLess(V('1.1'), V('1.2'))
|
|
|
|
self.assertLess(V('1.2.1'), V('1.2.2'))
|
|
|
|
self.assertLess(V('1.2'), V('1.2.2'))
|
|
|
|
self.assertLess(V('0.4'), V('0.4.0'))
|
|
|
|
self.assertLess(V('1.13++'), V('5.5.kw'))
|
|
|
|
self.assertLess(V('0.960923'), V('2.2beta29'))
|
|
|
|
|
2011-03-03 08:54:07 -04:00
|
|
|
|
2018-12-05 17:41:52 -04:00
|
|
|
def test_macos(self):
|
|
|
|
self.addCleanup(self.clear_caches)
|
|
|
|
|
|
|
|
uname = ('Darwin', 'hostname', '17.7.0',
|
|
|
|
('Darwin Kernel Version 17.7.0: '
|
|
|
|
'Thu Jun 21 22:53:14 PDT 2018; '
|
|
|
|
'root:xnu-4570.71.2~1/RELEASE_X86_64'),
|
|
|
|
'x86_64', 'i386')
|
|
|
|
arch = ('64bit', '')
|
2024-02-04 20:04:57 -04:00
|
|
|
with mock.patch.object(sys, "platform", "darwin"), \
|
|
|
|
mock.patch.object(platform, 'uname', return_value=uname), \
|
2018-12-05 17:41:52 -04:00
|
|
|
mock.patch.object(platform, 'architecture', return_value=arch):
|
|
|
|
for mac_ver, expected_terse, expected in [
|
|
|
|
# darwin: mac_ver() returns empty strings
|
|
|
|
(('', '', ''),
|
|
|
|
'Darwin-17.7.0',
|
|
|
|
'Darwin-17.7.0-x86_64-i386-64bit'),
|
|
|
|
# macOS: mac_ver() returns macOS version
|
|
|
|
(('10.13.6', ('', '', ''), 'x86_64'),
|
|
|
|
'macOS-10.13.6',
|
|
|
|
'macOS-10.13.6-x86_64-i386-64bit'),
|
|
|
|
]:
|
|
|
|
with mock.patch.object(platform, 'mac_ver',
|
|
|
|
return_value=mac_ver):
|
|
|
|
self.clear_caches()
|
|
|
|
self.assertEqual(platform.platform(terse=1), expected_terse)
|
|
|
|
self.assertEqual(platform.platform(), expected)
|
|
|
|
|
2020-11-30 17:34:45 -04:00
|
|
|
def test_freedesktop_os_release(self):
|
|
|
|
self.addCleanup(self.clear_caches)
|
|
|
|
self.clear_caches()
|
|
|
|
|
|
|
|
if any(os.path.isfile(fn) for fn in platform._os_release_candidates):
|
|
|
|
info = platform.freedesktop_os_release()
|
|
|
|
self.assertIn("NAME", info)
|
|
|
|
self.assertIn("ID", info)
|
|
|
|
|
|
|
|
info["CPYTHON_TEST"] = "test"
|
|
|
|
self.assertNotIn(
|
|
|
|
"CPYTHON_TEST",
|
|
|
|
platform.freedesktop_os_release()
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
with self.assertRaises(OSError):
|
|
|
|
platform.freedesktop_os_release()
|
|
|
|
|
|
|
|
def test_parse_os_release(self):
|
|
|
|
info = platform._parse_os_release(FEDORA_OS_RELEASE.splitlines())
|
|
|
|
self.assertEqual(info["NAME"], "Fedora")
|
|
|
|
self.assertEqual(info["ID"], "fedora")
|
|
|
|
self.assertNotIn("ID_LIKE", info)
|
|
|
|
self.assertEqual(info["VERSION_CODENAME"], "")
|
|
|
|
|
|
|
|
info = platform._parse_os_release(UBUNTU_OS_RELEASE.splitlines())
|
|
|
|
self.assertEqual(info["NAME"], "Ubuntu")
|
|
|
|
self.assertEqual(info["ID"], "ubuntu")
|
|
|
|
self.assertEqual(info["ID_LIKE"], "debian")
|
|
|
|
self.assertEqual(info["VERSION_CODENAME"], "focal")
|
|
|
|
|
|
|
|
info = platform._parse_os_release(TEST_OS_RELEASE.splitlines())
|
|
|
|
expected = {
|
|
|
|
"ID": "linux",
|
|
|
|
"NAME": "Linux",
|
|
|
|
"PRETTY_NAME": "Linux",
|
|
|
|
"ID_LIKE": "egg spam viking",
|
|
|
|
"EMPTY": "",
|
|
|
|
"DOUBLE_QUOTE": "double",
|
|
|
|
"EMPTY_DOUBLE": "",
|
|
|
|
"SINGLE_QUOTE": "single",
|
|
|
|
"EMPTY_SINGLE": "",
|
|
|
|
"QUOTES": "double's",
|
|
|
|
"SPECIALS": "$`\\'\"",
|
|
|
|
}
|
|
|
|
self.assertEqual(info, expected)
|
|
|
|
self.assertEqual(len(info["SPECIALS"]), 5)
|
|
|
|
|
2018-12-05 17:41:52 -04:00
|
|
|
|
2005-11-21 13:48:12 -04:00
|
|
|
if __name__ == '__main__':
|
2015-05-13 06:32:20 -03:00
|
|
|
unittest.main()
|