Roger E. Masse | fb01d4b | 1996-12-17 17:41:09 +0000 | [diff] [blame] | 1 | """Test program for the fcntl C module. |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 2 | |
| 3 | OS/2+EMX doesn't support the file locking operations. |
| 4 | |
Roger E. Masse | fb01d4b | 1996-12-17 17:41:09 +0000 | [diff] [blame] | 5 | """ |
Gregory P. Smith | e5aefa4 | 2013-03-31 10:10:50 -0700 | [diff] [blame] | 6 | import platform |
Christian Heimes | e25f35e | 2008-03-20 10:49:03 +0000 | [diff] [blame] | 7 | import os |
| 8 | import struct |
| 9 | import sys |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 10 | import unittest |
Serhiy Storchaka | 5cfc79d | 2014-02-07 10:06:39 +0200 | [diff] [blame] | 11 | from test.support import (verbose, TESTFN, unlink, run_unittest, import_module, |
| 12 | cpython_only) |
R. David Murray | a21e4ca | 2009-03-31 23:16:50 +0000 | [diff] [blame] | 13 | |
Ezio Melotti | 78ede7c | 2013-08-23 23:06:31 +0300 | [diff] [blame] | 14 | # Skip test if no fcntl module. |
R. David Murray | a21e4ca | 2009-03-31 23:16:50 +0000 | [diff] [blame] | 15 | fcntl = import_module('fcntl') |
| 16 | |
Roger E. Masse | fb01d4b | 1996-12-17 17:41:09 +0000 | [diff] [blame] | 17 | |
Christian Heimes | e25f35e | 2008-03-20 10:49:03 +0000 | [diff] [blame] | 18 | # TODO - Write tests for flock() and lockf(). |
Martin v. Löwis | a660a34 | 2001-10-18 22:07:48 +0000 | [diff] [blame] | 19 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 20 | def get_lockdata(): |
Antoine Pitrou | 6103ab1 | 2009-10-24 20:11:21 +0000 | [diff] [blame] | 21 | try: |
| 22 | os.O_LARGEFILE |
| 23 | except AttributeError: |
| 24 | start_len = "ll" |
Hye-Shik Chang | ac89f6e | 2005-04-04 15:21:04 +0000 | [diff] [blame] | 25 | else: |
Antoine Pitrou | 6103ab1 | 2009-10-24 20:11:21 +0000 | [diff] [blame] | 26 | start_len = "qq" |
Fred Drake | bc7809b | 2001-05-09 21:11:59 +0000 | [diff] [blame] | 27 | |
Charles-François Natali | 6cea35a | 2011-08-23 19:46:46 +0200 | [diff] [blame] | 28 | if (sys.platform.startswith(('netbsd', 'freebsd', 'openbsd', 'bsdos')) |
| 29 | or sys.platform == 'darwin'): |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 30 | if struct.calcsize('l') == 8: |
| 31 | off_t = 'l' |
| 32 | pid_t = 'i' |
| 33 | else: |
| 34 | off_t = 'lxxxx' |
| 35 | pid_t = 'l' |
| 36 | lockdata = struct.pack(off_t + off_t + pid_t + 'hh', 0, 0, 0, |
| 37 | fcntl.F_WRLCK, 0) |
doko@ubuntu.com | 1dfb918 | 2013-08-03 16:12:33 +0200 | [diff] [blame] | 38 | elif sys.platform.startswith('gnukfreebsd'): |
| 39 | lockdata = struct.pack('qqihhi', 0, 0, 0, fcntl.F_WRLCK, 0, 0) |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 40 | elif sys.platform in ['aix3', 'aix4', 'hp-uxB', 'unixware7']: |
| 41 | lockdata = struct.pack('hhlllii', fcntl.F_WRLCK, 0, 0, 0, 0, 0, 0) |
| 42 | elif sys.platform in ['os2emx']: |
| 43 | lockdata = None |
| 44 | else: |
| 45 | lockdata = struct.pack('hh'+start_len+'hh', fcntl.F_WRLCK, 0, 0, 0, 0, 0) |
| 46 | if lockdata: |
| 47 | if verbose: |
| 48 | print('struct.pack: ', repr(lockdata)) |
| 49 | return lockdata |
Fred Drake | bc7809b | 2001-05-09 21:11:59 +0000 | [diff] [blame] | 50 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 51 | lockdata = get_lockdata() |
Roger E. Masse | fb01d4b | 1996-12-17 17:41:09 +0000 | [diff] [blame] | 52 | |
Serhiy Storchaka | 5cfc79d | 2014-02-07 10:06:39 +0200 | [diff] [blame] | 53 | class BadFile: |
| 54 | def __init__(self, fn): |
| 55 | self.fn = fn |
| 56 | def fileno(self): |
| 57 | return self.fn |
| 58 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 59 | class TestFcntl(unittest.TestCase): |
| 60 | |
| 61 | def setUp(self): |
| 62 | self.f = None |
| 63 | |
| 64 | def tearDown(self): |
Antoine Pitrou | 61f77b5 | 2009-05-24 15:46:13 +0000 | [diff] [blame] | 65 | if self.f and not self.f.closed: |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 66 | self.f.close() |
| 67 | unlink(TESTFN) |
| 68 | |
| 69 | def test_fcntl_fileno(self): |
| 70 | # the example from the library docs |
Victor Stinner | a6d2c76 | 2011-06-30 18:20:11 +0200 | [diff] [blame] | 71 | self.f = open(TESTFN, 'wb') |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 72 | rv = fcntl.fcntl(self.f.fileno(), fcntl.F_SETFL, os.O_NONBLOCK) |
| 73 | if verbose: |
| 74 | print('Status from fcntl with O_NONBLOCK: ', rv) |
| 75 | if sys.platform not in ['os2emx']: |
| 76 | rv = fcntl.fcntl(self.f.fileno(), fcntl.F_SETLKW, lockdata) |
| 77 | if verbose: |
| 78 | print('String from fcntl with F_SETLKW: ', repr(rv)) |
| 79 | self.f.close() |
| 80 | |
| 81 | def test_fcntl_file_descriptor(self): |
| 82 | # again, but pass the file rather than numeric descriptor |
Victor Stinner | a6d2c76 | 2011-06-30 18:20:11 +0200 | [diff] [blame] | 83 | self.f = open(TESTFN, 'wb') |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 84 | rv = fcntl.fcntl(self.f, fcntl.F_SETFL, os.O_NONBLOCK) |
| 85 | if sys.platform not in ['os2emx']: |
| 86 | rv = fcntl.fcntl(self.f, fcntl.F_SETLKW, lockdata) |
| 87 | self.f.close() |
Fred Drake | bc7809b | 2001-05-09 21:11:59 +0000 | [diff] [blame] | 88 | |
Serhiy Storchaka | 441d30f | 2013-01-19 12:26:26 +0200 | [diff] [blame] | 89 | def test_fcntl_bad_file(self): |
Serhiy Storchaka | 5cfc79d | 2014-02-07 10:06:39 +0200 | [diff] [blame] | 90 | with self.assertRaises(ValueError): |
| 91 | fcntl.fcntl(-1, fcntl.F_SETFL, os.O_NONBLOCK) |
| 92 | with self.assertRaises(ValueError): |
| 93 | fcntl.fcntl(BadFile(-1), fcntl.F_SETFL, os.O_NONBLOCK) |
| 94 | with self.assertRaises(TypeError): |
| 95 | fcntl.fcntl('spam', fcntl.F_SETFL, os.O_NONBLOCK) |
| 96 | with self.assertRaises(TypeError): |
| 97 | fcntl.fcntl(BadFile('spam'), fcntl.F_SETFL, os.O_NONBLOCK) |
| 98 | |
| 99 | @cpython_only |
| 100 | def test_fcntl_bad_file_overflow(self): |
| 101 | from _testcapi import INT_MAX, INT_MIN |
Serhiy Storchaka | 441d30f | 2013-01-19 12:26:26 +0200 | [diff] [blame] | 102 | # Issue 15989 |
Serhiy Storchaka | 5cfc79d | 2014-02-07 10:06:39 +0200 | [diff] [blame] | 103 | with self.assertRaises(OverflowError): |
| 104 | fcntl.fcntl(INT_MAX + 1, fcntl.F_SETFL, os.O_NONBLOCK) |
| 105 | with self.assertRaises(OverflowError): |
| 106 | fcntl.fcntl(BadFile(INT_MAX + 1), fcntl.F_SETFL, os.O_NONBLOCK) |
| 107 | with self.assertRaises(OverflowError): |
| 108 | fcntl.fcntl(INT_MIN - 1, fcntl.F_SETFL, os.O_NONBLOCK) |
| 109 | with self.assertRaises(OverflowError): |
| 110 | fcntl.fcntl(BadFile(INT_MIN - 1), fcntl.F_SETFL, os.O_NONBLOCK) |
Serhiy Storchaka | 441d30f | 2013-01-19 12:26:26 +0200 | [diff] [blame] | 111 | |
Gregory P. Smith | e5aefa4 | 2013-03-31 10:10:50 -0700 | [diff] [blame] | 112 | @unittest.skipIf( |
| 113 | platform.machine().startswith('arm') and platform.system() == 'Linux', |
| 114 | "ARM Linux returns EINVAL for F_NOTIFY DN_MULTISHOT") |
Antoine Pitrou | 61f77b5 | 2009-05-24 15:46:13 +0000 | [diff] [blame] | 115 | def test_fcntl_64_bit(self): |
| 116 | # Issue #1309352: fcntl shouldn't fail when the third arg fits in a |
| 117 | # C 'long' but not in a C 'int'. |
| 118 | try: |
| 119 | cmd = fcntl.F_NOTIFY |
| 120 | # This flag is larger than 2**31 in 64-bit builds |
| 121 | flags = fcntl.DN_MULTISHOT |
| 122 | except AttributeError: |
| 123 | self.skipTest("F_NOTIFY or DN_MULTISHOT unavailable") |
| 124 | fd = os.open(os.path.dirname(os.path.abspath(TESTFN)), os.O_RDONLY) |
| 125 | try: |
| 126 | fcntl.fcntl(fd, cmd, flags) |
| 127 | finally: |
| 128 | os.close(fd) |
| 129 | |
Fred Drake | bc7809b | 2001-05-09 21:11:59 +0000 | [diff] [blame] | 130 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 131 | def test_main(): |
| 132 | run_unittest(TestFcntl) |
Fred Drake | bc7809b | 2001-05-09 21:11:59 +0000 | [diff] [blame] | 133 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 134 | if __name__ == '__main__': |
| 135 | test_main() |