| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  | from test.test_support import TESTFN, run_unittest | 
					
						
							| 
									
										
										
										
											2000-03-30 21:15:29 +00:00
										 |  |  | import mmap | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  | import unittest | 
					
						
							| 
									
										
										
										
											2001-05-11 14:29:21 +00:00
										 |  |  | import os, re | 
					
						
							| 
									
										
										
										
											2000-03-30 21:15:29 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | PAGESIZE = mmap.PAGESIZE | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  | class MmapTests(unittest.TestCase): | 
					
						
							| 
									
										
										
										
											2000-10-23 17:22:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |     def setUp(self): | 
					
						
							|  |  |  |         if os.path.exists(TESTFN): | 
					
						
							|  |  |  |             os.unlink(TESTFN) | 
					
						
							| 
									
										
										
										
											2001-05-10 20:03:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |     def tearDown(self): | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             os.unlink(TESTFN) | 
					
						
							|  |  |  |         except OSError: | 
					
						
							|  |  |  |             pass | 
					
						
							| 
									
										
										
										
											2001-05-10 20:03:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |     def test_basic(self): | 
					
						
							|  |  |  |         # Test mmap module on Unix systems and Windows | 
					
						
							| 
									
										
										
										
											2001-05-10 20:03:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |         # Create a file to be mmap'ed. | 
					
						
							|  |  |  |         f = open(TESTFN, 'w+') | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             # Write 2 pages worth of data to the file | 
					
						
							|  |  |  |             f.write('\0'* PAGESIZE) | 
					
						
							|  |  |  |             f.write('foo') | 
					
						
							|  |  |  |             f.write('\0'* (PAGESIZE-3) ) | 
					
						
							|  |  |  |             f.flush() | 
					
						
							|  |  |  |             m = mmap.mmap(f.fileno(), 2 * PAGESIZE) | 
					
						
							|  |  |  |             f.close() | 
					
						
							| 
									
										
										
										
											2001-05-10 20:03:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |             # Simple sanity checks | 
					
						
							| 
									
										
										
										
											2001-05-10 20:03:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |             tp = str(type(m))  # SF bug 128713:  segfaulted on Linux | 
					
						
							|  |  |  |             self.assertEqual(m.find('foo'), PAGESIZE) | 
					
						
							| 
									
										
										
										
											2001-05-10 20:03:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |             self.assertEqual(len(m), 2*PAGESIZE) | 
					
						
							| 
									
										
										
										
											2001-05-10 20:03:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |             self.assertEqual(m[0], '\0') | 
					
						
							|  |  |  |             self.assertEqual(m[0:3], '\0\0\0') | 
					
						
							| 
									
										
										
										
											2001-05-10 20:03:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |             # Modify the file's content | 
					
						
							|  |  |  |             m[0] = '3' | 
					
						
							|  |  |  |             m[PAGESIZE +3: PAGESIZE +3+3] = 'bar' | 
					
						
							| 
									
										
										
										
											2001-05-10 20:03:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |             # Check that the modification worked | 
					
						
							|  |  |  |             self.assertEqual(m[0], '3') | 
					
						
							|  |  |  |             self.assertEqual(m[0:3], '3\0\0') | 
					
						
							|  |  |  |             self.assertEqual(m[PAGESIZE-1 : PAGESIZE + 7], '\0foobar\0') | 
					
						
							| 
									
										
										
										
											2001-05-10 20:03:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |             m.flush() | 
					
						
							| 
									
										
										
										
											2001-05-10 20:03:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |             # Test doing a regular expression match in an mmap'ed file | 
					
						
							|  |  |  |             match = re.search('[A-Za-z]+', m) | 
					
						
							|  |  |  |             if match is None: | 
					
						
							|  |  |  |                 self.fail('regex match on mmap failed!') | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 start, end = match.span(0) | 
					
						
							|  |  |  |                 length = end - start | 
					
						
							| 
									
										
										
										
											2001-05-10 20:03:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |                 self.assertEqual(start, PAGESIZE) | 
					
						
							|  |  |  |                 self.assertEqual(end, PAGESIZE + 6) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             # test seeking around (try to overflow the seek implementation) | 
					
						
							|  |  |  |             m.seek(0,0) | 
					
						
							|  |  |  |             self.assertEqual(m.tell(), 0) | 
					
						
							|  |  |  |             m.seek(42,1) | 
					
						
							|  |  |  |             self.assertEqual(m.tell(), 42) | 
					
						
							|  |  |  |             m.seek(0,2) | 
					
						
							|  |  |  |             self.assertEqual(m.tell(), len(m)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             # Try to seek to negative position... | 
					
						
							|  |  |  |             self.assertRaises(ValueError, m.seek, -1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             # Try to seek beyond end of mmap... | 
					
						
							|  |  |  |             self.assertRaises(ValueError, m.seek, 1, 2) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             # Try to seek to negative position... | 
					
						
							|  |  |  |             self.assertRaises(ValueError, m.seek, -len(m)-1, 2) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             # Try resizing map | 
					
						
							| 
									
										
										
										
											2001-05-10 20:03:04 +00:00
										 |  |  |             try: | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |                 m.resize(512) | 
					
						
							|  |  |  |             except SystemError: | 
					
						
							|  |  |  |                 # resize() not supported | 
					
						
							|  |  |  |                 # No messages are printed, since the output of this test suite | 
					
						
							|  |  |  |                 # would then be different across platforms. | 
					
						
							| 
									
										
										
										
											2001-05-10 20:03:04 +00:00
										 |  |  |                 pass | 
					
						
							|  |  |  |             else: | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |                 # resize() is supported | 
					
						
							|  |  |  |                 self.assertEqual(len(m), 512) | 
					
						
							|  |  |  |                 # Check that we can no longer seek beyond the new size. | 
					
						
							|  |  |  |                 self.assertRaises(ValueError, m.seek, 513, 0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 # Check that the underlying file is truncated too | 
					
						
							|  |  |  |                 # (bug #728515) | 
					
						
							|  |  |  |                 f = open(TESTFN) | 
					
						
							|  |  |  |                 f.seek(0, 2) | 
					
						
							|  |  |  |                 self.assertEqual(f.tell(), 512) | 
					
						
							|  |  |  |                 f.close() | 
					
						
							|  |  |  |                 self.assertEqual(m.size(), 512) | 
					
						
							| 
									
										
										
										
											2001-05-10 20:03:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |             m.close() | 
					
						
							| 
									
										
										
										
											2001-05-10 20:03:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |         finally: | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 f.close() | 
					
						
							|  |  |  |             except OSError: | 
					
						
							|  |  |  |                 pass | 
					
						
							| 
									
										
										
										
											2000-10-23 17:22:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |     def test_access_parameter(self): | 
					
						
							|  |  |  |         # Test for "access" keyword parameter | 
					
						
							| 
									
										
										
										
											2001-11-13 23:11:19 +00:00
										 |  |  |         mapsize = 10 | 
					
						
							|  |  |  |         open(TESTFN, "wb").write("a"*mapsize) | 
					
						
							|  |  |  |         f = open(TESTFN, "rb") | 
					
						
							|  |  |  |         m = mmap.mmap(f.fileno(), mapsize, access=mmap.ACCESS_READ) | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |         self.assertEqual(m[:], 'a'*mapsize, "Readonly memory map data incorrect.") | 
					
						
							| 
									
										
										
										
											2001-11-13 23:11:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |         # Ensuring that readonly mmap can't be slice assigned | 
					
						
							| 
									
										
										
										
											2001-11-13 23:11:19 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             m[:] = 'b'*mapsize | 
					
						
							|  |  |  |         except TypeError: | 
					
						
							|  |  |  |             pass | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |             self.fail("Able to write to readonly memory map") | 
					
						
							| 
									
										
										
										
											2001-11-13 23:11:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |         # Ensuring that readonly mmap can't be item assigned | 
					
						
							| 
									
										
										
										
											2001-11-13 23:11:19 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             m[0] = 'b' | 
					
						
							|  |  |  |         except TypeError: | 
					
						
							|  |  |  |             pass | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |             self.fail("Able to write to readonly memory map") | 
					
						
							| 
									
										
										
										
											2001-11-13 23:11:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |         # Ensuring that readonly mmap can't be write() to | 
					
						
							| 
									
										
										
										
											2001-11-13 23:11:19 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             m.seek(0,0) | 
					
						
							|  |  |  |             m.write('abc') | 
					
						
							|  |  |  |         except TypeError: | 
					
						
							|  |  |  |             pass | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |             self.fail("Able to write to readonly memory map") | 
					
						
							| 
									
										
										
										
											2001-11-13 23:11:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |         # Ensuring that readonly mmap can't be write_byte() to | 
					
						
							| 
									
										
										
										
											2001-11-13 23:11:19 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             m.seek(0,0) | 
					
						
							|  |  |  |             m.write_byte('d') | 
					
						
							|  |  |  |         except TypeError: | 
					
						
							|  |  |  |             pass | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |             self.fail("Able to write to readonly memory map") | 
					
						
							| 
									
										
										
										
											2001-11-13 23:11:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |         # Ensuring that readonly mmap can't be resized | 
					
						
							| 
									
										
										
										
											2001-11-13 23:11:19 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             m.resize(2*mapsize) | 
					
						
							|  |  |  |         except SystemError:   # resize is not universally supported | 
					
						
							|  |  |  |             pass | 
					
						
							|  |  |  |         except TypeError: | 
					
						
							|  |  |  |             pass | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |             self.fail("Able to resize readonly memory map") | 
					
						
							| 
									
										
										
										
											2001-11-13 23:11:19 +00:00
										 |  |  |         del m, f | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |         self.assertEqual(open(TESTFN, "rb").read(), 'a'*mapsize, | 
					
						
							| 
									
										
										
										
											2001-11-13 23:11:19 +00:00
										 |  |  |                "Readonly memory map data file was modified") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |         # Opening mmap with size too big | 
					
						
							| 
									
										
										
										
											2002-09-05 21:48:07 +00:00
										 |  |  |         import sys | 
					
						
							|  |  |  |         f = open(TESTFN, "r+b") | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             m = mmap.mmap(f.fileno(), mapsize+1) | 
					
						
							|  |  |  |         except ValueError: | 
					
						
							|  |  |  |             # we do not expect a ValueError on Windows | 
					
						
							| 
									
										
										
										
											2002-09-10 20:49:15 +00:00
										 |  |  |             # CAUTION:  This also changes the size of the file on disk, and | 
					
						
							|  |  |  |             # later tests assume that the length hasn't changed.  We need to | 
					
						
							|  |  |  |             # repair that. | 
					
						
							| 
									
										
										
										
											2002-09-05 21:48:07 +00:00
										 |  |  |             if sys.platform.startswith('win'): | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |                 self.fail("Opening mmap with size+1 should work on Windows.") | 
					
						
							| 
									
										
										
										
											2002-09-05 21:48:07 +00:00
										 |  |  |         else: | 
					
						
							|  |  |  |             # we expect a ValueError on Unix, but not on Windows | 
					
						
							|  |  |  |             if not sys.platform.startswith('win'): | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |                 self.fail("Opening mmap with size+1 should raise ValueError.") | 
					
						
							| 
									
										
										
										
											2002-09-11 02:56:42 +00:00
										 |  |  |             m.close() | 
					
						
							| 
									
										
										
										
											2002-09-10 20:49:15 +00:00
										 |  |  |         f.close() | 
					
						
							|  |  |  |         if sys.platform.startswith('win'): | 
					
						
							|  |  |  |             # Repair damage from the resizing test. | 
					
						
							|  |  |  |             f = open(TESTFN, 'r+b') | 
					
						
							|  |  |  |             f.truncate(mapsize) | 
					
						
							|  |  |  |             f.close() | 
					
						
							| 
									
										
										
										
											2002-09-05 21:48:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |         # Opening mmap with access=ACCESS_WRITE | 
					
						
							| 
									
										
										
										
											2001-11-13 23:11:19 +00:00
										 |  |  |         f = open(TESTFN, "r+b") | 
					
						
							|  |  |  |         m = mmap.mmap(f.fileno(), mapsize, access=mmap.ACCESS_WRITE) | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |         # Modifying write-through memory map | 
					
						
							| 
									
										
										
										
											2001-11-13 23:11:19 +00:00
										 |  |  |         m[:] = 'c'*mapsize | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |         self.assertEqual(m[:], 'c'*mapsize, | 
					
						
							| 
									
										
										
										
											2001-11-13 23:11:19 +00:00
										 |  |  |                "Write-through memory map memory not updated properly.") | 
					
						
							|  |  |  |         m.flush() | 
					
						
							| 
									
										
										
										
											2002-09-10 21:19:55 +00:00
										 |  |  |         m.close() | 
					
						
							|  |  |  |         f.close() | 
					
						
							| 
									
										
										
										
											2002-09-10 20:49:15 +00:00
										 |  |  |         f = open(TESTFN, 'rb') | 
					
						
							|  |  |  |         stuff = f.read() | 
					
						
							|  |  |  |         f.close() | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |         self.assertEqual(stuff, 'c'*mapsize, | 
					
						
							| 
									
										
										
										
											2001-11-13 23:11:19 +00:00
										 |  |  |                "Write-through memory map data file not updated properly.") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |         # Opening mmap with access=ACCESS_COPY | 
					
						
							| 
									
										
										
										
											2001-11-13 23:11:19 +00:00
										 |  |  |         f = open(TESTFN, "r+b") | 
					
						
							|  |  |  |         m = mmap.mmap(f.fileno(), mapsize, access=mmap.ACCESS_COPY) | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |         # Modifying copy-on-write memory map | 
					
						
							| 
									
										
										
										
											2001-11-13 23:11:19 +00:00
										 |  |  |         m[:] = 'd'*mapsize | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |         self.assertEqual(m[:], 'd' * mapsize, | 
					
						
							| 
									
										
										
										
											2001-11-13 23:11:19 +00:00
										 |  |  |                "Copy-on-write memory map data not written correctly.") | 
					
						
							|  |  |  |         m.flush() | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |         self.assertEqual(open(TESTFN, "rb").read(), 'c'*mapsize, | 
					
						
							| 
									
										
										
										
											2001-11-13 23:11:19 +00:00
										 |  |  |                "Copy-on-write test data file should not be modified.") | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |         # Ensuring copy-on-write maps cannot be resized | 
					
						
							|  |  |  |         self.assertRaises(TypeError, m.resize, 2*mapsize) | 
					
						
							| 
									
										
										
										
											2001-11-13 23:11:19 +00:00
										 |  |  |         del m, f | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |      | 
					
						
							|  |  |  |         # Ensuring invalid access parameter raises exception | 
					
						
							|  |  |  |         f = open(TESTFN, "r+b") | 
					
						
							|  |  |  |         self.assertRaises(ValueError, mmap.mmap, f.fileno(), mapsize, access=4) | 
					
						
							|  |  |  |         f.close() | 
					
						
							| 
									
										
										
										
											2001-11-13 23:11:19 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if os.name == "posix": | 
					
						
							| 
									
										
										
										
											2001-11-13 23:39:47 +00:00
										 |  |  |             # Try incompatible flags, prot and access parameters. | 
					
						
							|  |  |  |             f = open(TESTFN, "r+b") | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |             self.assertRaises(ValueError, mmap.mmap, f.fileno(), mapsize, | 
					
						
							|  |  |  |                               flags=mmap.MAP_PRIVATE, | 
					
						
							| 
									
										
										
										
											2001-11-13 23:11:19 +00:00
										 |  |  |                               prot=mmap.PROT_READ, access=mmap.ACCESS_WRITE) | 
					
						
							| 
									
										
										
										
											2002-04-18 04:30:18 +00:00
										 |  |  |             f.close() | 
					
						
							| 
									
										
										
										
											2001-11-13 23:11:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |     def test_bad_file_desc(self): | 
					
						
							|  |  |  |         # Try opening a bad file descriptor... | 
					
						
							|  |  |  |         self.assertRaises(mmap.error, mmap.mmap, -2, 4096) | 
					
						
							| 
									
										
										
										
											2006-01-11 08:54:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |     def test_tougher_find(self): | 
					
						
							|  |  |  |         # Do a tougher .find() test.  SF bug 515943 pointed out that, in 2.2, | 
					
						
							|  |  |  |         # searching for data with embedded \0 bytes didn't work. | 
					
						
							|  |  |  |         f = open(TESTFN, 'w+') | 
					
						
							| 
									
										
										
										
											2002-03-08 05:43:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         data = 'aabaac\x00deef\x00\x00aa\x00' | 
					
						
							|  |  |  |         n = len(data) | 
					
						
							|  |  |  |         f.write(data) | 
					
						
							| 
									
										
										
										
											2002-04-18 04:30:18 +00:00
										 |  |  |         f.flush() | 
					
						
							| 
									
										
										
										
											2002-03-08 05:43:32 +00:00
										 |  |  |         m = mmap.mmap(f.fileno(), n) | 
					
						
							|  |  |  |         f.close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for start in range(n+1): | 
					
						
							|  |  |  |             for finish in range(start, n+1): | 
					
						
							|  |  |  |                 slice = data[start : finish] | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |                 self.assertEqual(m.find(slice), data.find(slice)) | 
					
						
							|  |  |  |                 self.assertEqual(m.find(slice + 'x'), -1) | 
					
						
							| 
									
										
										
										
											2003-01-13 21:38:45 +00:00
										 |  |  |         m.close() | 
					
						
							| 
									
										
										
										
											2002-03-08 05:43:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |     def test_double_close(self): | 
					
						
							|  |  |  |         # make sure a double close doesn't crash on Solaris (Bug# 665913) | 
					
						
							|  |  |  |         f = open(TESTFN, 'w+') | 
					
						
							| 
									
										
										
										
											2002-03-08 05:43:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-13 21:38:45 +00:00
										 |  |  |         f.write(2**16 * 'a') # Arbitrary character | 
					
						
							| 
									
										
										
										
											2003-01-10 20:52:16 +00:00
										 |  |  |         f.close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         f = open(TESTFN) | 
					
						
							| 
									
										
										
										
											2003-01-13 21:38:45 +00:00
										 |  |  |         mf = mmap.mmap(f.fileno(), 2**16, access=mmap.ACCESS_READ) | 
					
						
							| 
									
										
										
										
											2003-01-10 20:52:16 +00:00
										 |  |  |         mf.close() | 
					
						
							|  |  |  |         mf.close() | 
					
						
							|  |  |  |         f.close() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |     def test_entire_file(self): | 
					
						
							|  |  |  |         # test mapping of entire file by passing 0 for map length | 
					
						
							|  |  |  |         if hasattr(os, "stat"): | 
					
						
							|  |  |  |             f = open(TESTFN, "w+") | 
					
						
							| 
									
										
										
										
											2002-03-08 05:43:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-03 11:22:44 +00:00
										 |  |  |             f.write(2**16 * 'm') # Arbitrary character | 
					
						
							|  |  |  |             f.close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             f = open(TESTFN, "rb+") | 
					
						
							| 
									
										
										
										
											2005-03-28 01:08:02 +00:00
										 |  |  |             mf = mmap.mmap(f.fileno(), 0) | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |             self.assertEqual(len(mf), 2**16, "Map size should equal file size.") | 
					
						
							|  |  |  |             self.assertEqual(mf.read(2**16), 2**16 * "m") | 
					
						
							| 
									
										
										
										
											2005-03-03 11:22:44 +00:00
										 |  |  |             mf.close() | 
					
						
							|  |  |  |             f.close() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |     def test_move(self): | 
					
						
							|  |  |  |         # make move works everywhere (64-bit format problem earlier) | 
					
						
							|  |  |  |         f = open(TESTFN, 'w+') | 
					
						
							| 
									
										
										
										
											2005-12-18 03:34:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         f.write("ABCDEabcde") # Arbitrary character | 
					
						
							|  |  |  |         f.flush() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         mf = mmap.mmap(f.fileno(), 10) | 
					
						
							|  |  |  |         mf.move(5, 0, 5) | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |         self.assertEqual(mf[:], "ABCDEABCDE", "Map move should have duplicated front 5") | 
					
						
							| 
									
										
										
										
											2005-12-18 03:34:22 +00:00
										 |  |  |         mf.close() | 
					
						
							|  |  |  |         f.close() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |     def test_anonymous(self): | 
					
						
							|  |  |  |         # anonymous mmap.mmap(-1, PAGE) | 
					
						
							|  |  |  |         m = mmap.mmap(-1, PAGESIZE) | 
					
						
							|  |  |  |         for x in xrange(PAGESIZE): | 
					
						
							|  |  |  |             self.assertEqual(m[x], '\0', "anonymously mmap'ed contents should be zero") | 
					
						
							| 
									
										
										
										
											2005-12-18 03:34:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  |         for x in xrange(PAGESIZE): | 
					
						
							|  |  |  |             m[x] = ch = chr(x & 255) | 
					
						
							|  |  |  |             self.assertEqual(m[x], ch) | 
					
						
							| 
									
										
										
										
											2006-02-05 05:45:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  | def test_main(): | 
					
						
							|  |  |  |     run_unittest(MmapTests) | 
					
						
							| 
									
										
										
										
											2000-03-30 21:15:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-29 19:13:40 +00:00
										 |  |  | if __name__ == '__main__': | 
					
						
							|  |  |  |     test_main() |