blob: df0939151f058d61e3bb164f64a2f1f464c34dd8 [file] [log] [blame]
Roger E. Massefb01d4b1996-12-17 17:41:09 +00001"""Test program for the fcntl C module.
Brett Cannon1f5182b2008-03-13 21:09:28 +00002
3OS/2+EMX doesn't support the file locking operations.
4
Roger E. Massefb01d4b1996-12-17 17:41:09 +00005"""
Gregory P. Smitha5cfcad2008-03-19 23:03:25 +00006import os
7import struct
8import sys
Brett Cannon1f5182b2008-03-13 21:09:28 +00009import unittest
R. David Murray597ebab2009-03-31 18:32:17 +000010from test.test_support import (verbose, TESTFN, unlink, run_unittest,
11 import_module)
12
13# Skip test if no fnctl module.
14fcntl = import_module('fcntl')
15
Roger E. Massefb01d4b1996-12-17 17:41:09 +000016
Gregory P. Smith6af3db82008-03-20 05:41:53 +000017# TODO - Write tests for flock() and lockf().
Martin v. Löwisa660a342001-10-18 22:07:48 +000018
Brett Cannon1f5182b2008-03-13 21:09:28 +000019def get_lockdata():
20 if sys.platform.startswith('atheos'):
21 start_len = "qq"
Hye-Shik Changac89f6e2005-04-04 15:21:04 +000022 else:
Brett Cannon1f5182b2008-03-13 21:09:28 +000023 try:
24 os.O_LARGEFILE
25 except AttributeError:
26 start_len = "ll"
27 else:
28 start_len = "qq"
Fred Drakebc7809b2001-05-09 21:11:59 +000029
Charles-François Natalicdaafe02011-08-23 19:42:02 +020030 if (sys.platform.startswith(('netbsd', 'freebsd', 'openbsd', 'bsdos'))
31 or sys.platform == 'darwin'):
Brett Cannon1f5182b2008-03-13 21:09:28 +000032 if struct.calcsize('l') == 8:
33 off_t = 'l'
34 pid_t = 'i'
35 else:
36 off_t = 'lxxxx'
37 pid_t = 'l'
38 lockdata = struct.pack(off_t + off_t + pid_t + 'hh', 0, 0, 0,
39 fcntl.F_WRLCK, 0)
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 Drakebc7809b2001-05-09 21:11:59 +000050
Brett Cannon1f5182b2008-03-13 21:09:28 +000051lockdata = get_lockdata()
Fred Drakebc7809b2001-05-09 21:11:59 +000052
53
Brett Cannon1f5182b2008-03-13 21:09:28 +000054class TestFcntl(unittest.TestCase):
Fred Drakebc7809b2001-05-09 21:11:59 +000055
Brett Cannon1f5182b2008-03-13 21:09:28 +000056 def setUp(self):
57 self.f = None
Fred Drakebc7809b2001-05-09 21:11:59 +000058
Brett Cannon1f5182b2008-03-13 21:09:28 +000059 def tearDown(self):
Antoine Pitroud49e3752009-05-24 15:40:09 +000060 if self.f and not self.f.closed:
Brett Cannon1f5182b2008-03-13 21:09:28 +000061 self.f.close()
62 unlink(TESTFN)
63
64 def test_fcntl_fileno(self):
65 # the example from the library docs
66 self.f = open(TESTFN, 'w')
67 rv = fcntl.fcntl(self.f.fileno(), fcntl.F_SETFL, os.O_NONBLOCK)
68 if verbose:
69 print 'Status from fcntl with O_NONBLOCK: ', rv
70 if sys.platform not in ['os2emx']:
71 rv = fcntl.fcntl(self.f.fileno(), fcntl.F_SETLKW, lockdata)
72 if verbose:
73 print 'String from fcntl with F_SETLKW: ', repr(rv)
74 self.f.close()
75
76 def test_fcntl_file_descriptor(self):
77 # again, but pass the file rather than numeric descriptor
78 self.f = open(TESTFN, 'w')
79 rv = fcntl.fcntl(self.f, fcntl.F_SETFL, os.O_NONBLOCK)
80 if sys.platform not in ['os2emx']:
81 rv = fcntl.fcntl(self.f, fcntl.F_SETLKW, lockdata)
82 self.f.close()
83
Antoine Pitroud49e3752009-05-24 15:40:09 +000084 def test_fcntl_64_bit(self):
85 # Issue #1309352: fcntl shouldn't fail when the third arg fits in a
86 # C 'long' but not in a C 'int'.
87 try:
88 cmd = fcntl.F_NOTIFY
89 # This flag is larger than 2**31 in 64-bit builds
90 flags = fcntl.DN_MULTISHOT
91 except AttributeError:
92 self.skipTest("F_NOTIFY or DN_MULTISHOT unavailable")
93 fd = os.open(os.path.dirname(os.path.abspath(TESTFN)), os.O_RDONLY)
94 try:
95 fcntl.fcntl(fd, cmd, flags)
96 finally:
97 os.close(fd)
98
Brett Cannon1f5182b2008-03-13 21:09:28 +000099
100def test_main():
101 run_unittest(TestFcntl)
102
103if __name__ == '__main__':
104 test_main()