2012-07-20 20:34:09 +00:00
|
|
|
diff -up Python-3.3.0b1/Lib/test/test_os.py.uid-gid-overflows Python-3.3.0b1/Lib/test/test_os.py
|
|
|
|
--- Python-3.3.0b1/Lib/test/test_os.py.uid-gid-overflows 2012-06-26 16:19:48.000000000 -0400
|
|
|
|
+++ Python-3.3.0b1/Lib/test/test_os.py 2012-07-20 14:21:46.856688739 -0400
|
|
|
|
@@ -1174,30 +1174,36 @@ if sys.platform != 'win32':
|
2012-05-18 18:57:53 +00:00
|
|
|
def test_setuid(self):
|
|
|
|
if os.getuid() != 0:
|
Update to Python 3.4 alpha 4.
- Refreshed patches: 55 (systemtap), 102 (lib64), 111 (no static lib),
114 (statvfs flags), 132 (unittest rpmbuild hooks), 134 (fix COUNT_ALLOCS in
test_sys), 143 (tsc on ppc64), 146 (hashlib fips), 153 (test gdb noise),
157 (UID+GID overflows), 173 (ENOPROTOOPT in bind_port), 186 (dont raise
from py_compile)
- Removed patches: 129 (test_subprocess nonreadable dir - no longer fails in
Koji), 142 (the mock issue that caused this is fixed)
- Added patch 187 (remove thread atfork) - will be in next version
- Refreshed script for checking pyc and pyo timestamps with new ignored files.
- The fips patch is disabled for now until upstream makes a final decision
what to do with sha3 implementation for 3.4.0.
2013-11-05 11:39:14 +00:00
|
|
|
self.assertRaises(OSError, os.setuid, 0)
|
2012-05-18 18:57:53 +00:00
|
|
|
+ self.assertRaises(TypeError, os.setuid, 'not an int')
|
|
|
|
self.assertRaises(OverflowError, os.setuid, 1<<32)
|
|
|
|
|
|
|
|
if hasattr(os, 'setgid'):
|
|
|
|
def test_setgid(self):
|
2013-04-10 12:30:09 +00:00
|
|
|
if os.getuid() != 0 and not HAVE_WHEEL_GROUP:
|
Update to Python 3.4 alpha 4.
- Refreshed patches: 55 (systemtap), 102 (lib64), 111 (no static lib),
114 (statvfs flags), 132 (unittest rpmbuild hooks), 134 (fix COUNT_ALLOCS in
test_sys), 143 (tsc on ppc64), 146 (hashlib fips), 153 (test gdb noise),
157 (UID+GID overflows), 173 (ENOPROTOOPT in bind_port), 186 (dont raise
from py_compile)
- Removed patches: 129 (test_subprocess nonreadable dir - no longer fails in
Koji), 142 (the mock issue that caused this is fixed)
- Added patch 187 (remove thread atfork) - will be in next version
- Refreshed script for checking pyc and pyo timestamps with new ignored files.
- The fips patch is disabled for now until upstream makes a final decision
what to do with sha3 implementation for 3.4.0.
2013-11-05 11:39:14 +00:00
|
|
|
self.assertRaises(OSError, os.setgid, 0)
|
2012-05-18 18:57:53 +00:00
|
|
|
+ self.assertRaises(TypeError, os.setgid, 'not an int')
|
|
|
|
self.assertRaises(OverflowError, os.setgid, 1<<32)
|
|
|
|
|
|
|
|
if hasattr(os, 'seteuid'):
|
|
|
|
def test_seteuid(self):
|
|
|
|
if os.getuid() != 0:
|
Update to Python 3.4 alpha 4.
- Refreshed patches: 55 (systemtap), 102 (lib64), 111 (no static lib),
114 (statvfs flags), 132 (unittest rpmbuild hooks), 134 (fix COUNT_ALLOCS in
test_sys), 143 (tsc on ppc64), 146 (hashlib fips), 153 (test gdb noise),
157 (UID+GID overflows), 173 (ENOPROTOOPT in bind_port), 186 (dont raise
from py_compile)
- Removed patches: 129 (test_subprocess nonreadable dir - no longer fails in
Koji), 142 (the mock issue that caused this is fixed)
- Added patch 187 (remove thread atfork) - will be in next version
- Refreshed script for checking pyc and pyo timestamps with new ignored files.
- The fips patch is disabled for now until upstream makes a final decision
what to do with sha3 implementation for 3.4.0.
2013-11-05 11:39:14 +00:00
|
|
|
self.assertRaises(OSError, os.seteuid, 0)
|
2012-05-18 18:57:53 +00:00
|
|
|
+ self.assertRaises(TypeError, os.seteuid, 'not an int')
|
|
|
|
self.assertRaises(OverflowError, os.seteuid, 1<<32)
|
|
|
|
|
|
|
|
if hasattr(os, 'setegid'):
|
|
|
|
def test_setegid(self):
|
2013-04-10 12:30:09 +00:00
|
|
|
if os.getuid() != 0 and not HAVE_WHEEL_GROUP:
|
Update to Python 3.4 alpha 4.
- Refreshed patches: 55 (systemtap), 102 (lib64), 111 (no static lib),
114 (statvfs flags), 132 (unittest rpmbuild hooks), 134 (fix COUNT_ALLOCS in
test_sys), 143 (tsc on ppc64), 146 (hashlib fips), 153 (test gdb noise),
157 (UID+GID overflows), 173 (ENOPROTOOPT in bind_port), 186 (dont raise
from py_compile)
- Removed patches: 129 (test_subprocess nonreadable dir - no longer fails in
Koji), 142 (the mock issue that caused this is fixed)
- Added patch 187 (remove thread atfork) - will be in next version
- Refreshed script for checking pyc and pyo timestamps with new ignored files.
- The fips patch is disabled for now until upstream makes a final decision
what to do with sha3 implementation for 3.4.0.
2013-11-05 11:39:14 +00:00
|
|
|
self.assertRaises(OSError, os.setegid, 0)
|
2012-05-18 18:57:53 +00:00
|
|
|
+ self.assertRaises(TypeError, os.setegid, 'not an int')
|
|
|
|
self.assertRaises(OverflowError, os.setegid, 1<<32)
|
|
|
|
|
|
|
|
if hasattr(os, 'setreuid'):
|
|
|
|
def test_setreuid(self):
|
|
|
|
if os.getuid() != 0:
|
Update to Python 3.4 alpha 4.
- Refreshed patches: 55 (systemtap), 102 (lib64), 111 (no static lib),
114 (statvfs flags), 132 (unittest rpmbuild hooks), 134 (fix COUNT_ALLOCS in
test_sys), 143 (tsc on ppc64), 146 (hashlib fips), 153 (test gdb noise),
157 (UID+GID overflows), 173 (ENOPROTOOPT in bind_port), 186 (dont raise
from py_compile)
- Removed patches: 129 (test_subprocess nonreadable dir - no longer fails in
Koji), 142 (the mock issue that caused this is fixed)
- Added patch 187 (remove thread atfork) - will be in next version
- Refreshed script for checking pyc and pyo timestamps with new ignored files.
- The fips patch is disabled for now until upstream makes a final decision
what to do with sha3 implementation for 3.4.0.
2013-11-05 11:39:14 +00:00
|
|
|
self.assertRaises(OSError, os.setreuid, 0, 0)
|
2012-05-18 18:57:53 +00:00
|
|
|
+ self.assertRaises(TypeError, os.setreuid, 'not an int', 0)
|
|
|
|
+ self.assertRaises(TypeError, os.setreuid, 0, 'not an int')
|
|
|
|
self.assertRaises(OverflowError, os.setreuid, 1<<32, 0)
|
|
|
|
self.assertRaises(OverflowError, os.setreuid, 0, 1<<32)
|
|
|
|
|
2012-07-20 20:34:09 +00:00
|
|
|
@@ -1212,6 +1218,8 @@ if sys.platform != 'win32':
|
2012-05-18 18:57:53 +00:00
|
|
|
def test_setregid(self):
|
2013-04-10 12:30:09 +00:00
|
|
|
if os.getuid() != 0 and not HAVE_WHEEL_GROUP:
|
Update to Python 3.4 alpha 4.
- Refreshed patches: 55 (systemtap), 102 (lib64), 111 (no static lib),
114 (statvfs flags), 132 (unittest rpmbuild hooks), 134 (fix COUNT_ALLOCS in
test_sys), 143 (tsc on ppc64), 146 (hashlib fips), 153 (test gdb noise),
157 (UID+GID overflows), 173 (ENOPROTOOPT in bind_port), 186 (dont raise
from py_compile)
- Removed patches: 129 (test_subprocess nonreadable dir - no longer fails in
Koji), 142 (the mock issue that caused this is fixed)
- Added patch 187 (remove thread atfork) - will be in next version
- Refreshed script for checking pyc and pyo timestamps with new ignored files.
- The fips patch is disabled for now until upstream makes a final decision
what to do with sha3 implementation for 3.4.0.
2013-11-05 11:39:14 +00:00
|
|
|
self.assertRaises(OSError, os.setregid, 0, 0)
|
2012-05-18 18:57:53 +00:00
|
|
|
+ self.assertRaises(TypeError, os.setregid, 'not an int', 0)
|
|
|
|
+ self.assertRaises(TypeError, os.setregid, 0, 'not an int')
|
|
|
|
self.assertRaises(OverflowError, os.setregid, 1<<32, 0)
|
|
|
|
self.assertRaises(OverflowError, os.setregid, 0, 1<<32)
|
|
|
|
|
2012-07-20 20:34:09 +00:00
|
|
|
diff -up Python-3.3.0b1/Lib/test/test_pwd.py.uid-gid-overflows Python-3.3.0b1/Lib/test/test_pwd.py
|
|
|
|
--- Python-3.3.0b1/Lib/test/test_pwd.py.uid-gid-overflows 2012-06-26 16:19:48.000000000 -0400
|
|
|
|
+++ Python-3.3.0b1/Lib/test/test_pwd.py 2012-07-20 14:21:46.857688726 -0400
|
2012-05-18 18:57:53 +00:00
|
|
|
@@ -87,9 +87,9 @@ class PwdTest(unittest.TestCase):
|
|
|
|
# In some cases, byuids isn't a complete list of all users in the
|
|
|
|
# system, so if we try to pick a value not in byuids (via a perturbing
|
|
|
|
# loop, say), pwd.getpwuid() might still be able to find data for that
|
|
|
|
- # uid. Using sys.maxint may provoke the same problems, but hopefully
|
|
|
|
+ # uid. Using 2**32 - 2 may provoke the same problems, but hopefully
|
|
|
|
# it will be a more repeatable failure.
|
|
|
|
- fakeuid = sys.maxsize
|
|
|
|
+ fakeuid = 2**32 - 2
|
|
|
|
self.assertNotIn(fakeuid, byuids)
|
|
|
|
self.assertRaises(KeyError, pwd.getpwuid, fakeuid)
|
|
|
|
|