2008-05-15 23:24:49 -03:00
|
|
|
import sys
|
2008-05-18 19:07:42 -03:00
|
|
|
import os
|
2005-11-21 13:48:12 -04:00
|
|
|
import unittest
|
|
|
|
import platform
|
|
|
|
|
2008-05-15 23:24:49 -03:00
|
|
|
from test import test_support
|
|
|
|
|
2005-11-21 13:48:12 -04:00
|
|
|
class PlatformTest(unittest.TestCase):
|
|
|
|
def test_architecture(self):
|
|
|
|
res = platform.architecture()
|
|
|
|
|
|
|
|
def test_machine(self):
|
|
|
|
res = platform.machine()
|
|
|
|
|
|
|
|
def test_node(self):
|
|
|
|
res = platform.node()
|
|
|
|
|
|
|
|
def test_platform(self):
|
|
|
|
for aliased in (False, True):
|
|
|
|
for terse in (False, True):
|
|
|
|
res = platform.platform(aliased, terse)
|
|
|
|
|
|
|
|
def test_processor(self):
|
|
|
|
res = platform.processor()
|
|
|
|
|
|
|
|
def test_python_build(self):
|
|
|
|
res = platform.python_build()
|
|
|
|
|
|
|
|
def test_python_compiler(self):
|
|
|
|
res = platform.python_compiler()
|
|
|
|
|
|
|
|
def test_version(self):
|
|
|
|
res1 = platform.version()
|
|
|
|
res2 = platform.version_tuple()
|
|
|
|
self.assertEqual(res1, ".".join(res2))
|
|
|
|
|
|
|
|
def test_release(self):
|
|
|
|
res = platform.release()
|
|
|
|
|
|
|
|
def test_system(self):
|
|
|
|
res = platform.system()
|
|
|
|
|
|
|
|
def test_version(self):
|
|
|
|
res = platform.version()
|
|
|
|
|
|
|
|
def test_system_alias(self):
|
|
|
|
res = platform.system_alias(
|
|
|
|
platform.system(),
|
|
|
|
platform.release(),
|
|
|
|
platform.version(),
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_uname(self):
|
|
|
|
res = platform.uname()
|
2008-05-15 23:24:49 -03:00
|
|
|
self.assert_(any(res))
|
2005-11-21 13:48:12 -04:00
|
|
|
|
|
|
|
def test_java_ver(self):
|
|
|
|
res = platform.java_ver()
|
2008-05-15 23:24:49 -03:00
|
|
|
if sys.platform == 'java':
|
|
|
|
self.assert_(all(res))
|
2005-11-21 13:48:12 -04:00
|
|
|
|
|
|
|
def test_win32_ver(self):
|
|
|
|
res = platform.win32_ver()
|
|
|
|
|
|
|
|
def test_mac_ver(self):
|
|
|
|
res = platform.mac_ver()
|
2008-05-18 17:54:47 -03:00
|
|
|
|
2008-05-21 19:52:39 -03:00
|
|
|
try:
|
|
|
|
import gestalt
|
|
|
|
except ImportError:
|
|
|
|
have_toolbox_glue = False
|
|
|
|
else:
|
|
|
|
have_toolbox_glue = True
|
|
|
|
|
2008-06-10 19:39:25 -03:00
|
|
|
if have_toolbox_glue and platform.uname()[0] == 'Darwin':
|
2008-05-18 17:54:47 -03:00
|
|
|
# We're on a MacOSX system, check that
|
|
|
|
# the right version information is returned
|
|
|
|
fd = os.popen('sw_vers', 'r')
|
|
|
|
real_ver = None
|
|
|
|
for ln in fd:
|
|
|
|
if ln.startswith('ProductVersion:'):
|
|
|
|
real_ver = ln.strip().split()[-1]
|
|
|
|
break
|
|
|
|
fd.close()
|
|
|
|
self.failIf(real_ver is None)
|
|
|
|
self.assertEquals(res[0], real_ver)
|
|
|
|
|
|
|
|
# res[1] claims to contain
|
|
|
|
# (version, dev_stage, non_release_version)
|
|
|
|
# That information is no longer available
|
|
|
|
self.assertEquals(res[1], ('', '', ''))
|
|
|
|
|
|
|
|
if sys.byteorder == 'little':
|
|
|
|
self.assertEquals(res[2], 'i386')
|
|
|
|
else:
|
|
|
|
self.assertEquals(res[2], 'PowerPC')
|
2005-11-21 13:48:12 -04:00
|
|
|
|
|
|
|
def test_dist(self):
|
|
|
|
res = platform.dist()
|
|
|
|
|
|
|
|
def test_libc_ver(self):
|
2006-04-04 12:52:00 -03:00
|
|
|
import os
|
2008-05-15 23:24:49 -03:00
|
|
|
if os.path.isdir(sys.executable) and \
|
|
|
|
os.path.exists(sys.executable+'.exe'):
|
2006-04-04 12:52:00 -03:00
|
|
|
# Cygwin horror
|
|
|
|
executable = executable + '.exe'
|
2008-05-15 23:24:49 -03:00
|
|
|
res = platform.libc_ver(sys.executable)
|
2005-11-21 13:48:12 -04:00
|
|
|
|
|
|
|
def test_main():
|
|
|
|
test_support.run_unittest(
|
|
|
|
PlatformTest
|
|
|
|
)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
test_main()
|