test_mmap.py :  » Language-Interface » ChinesePython » chinesepython2.1.3-0.4 » Lib » test » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » Language Interface » ChinesePython 
ChinesePython » chinesepython2.1.3 0.4 » Lib » test » test_mmap.py
from test_support import verify
import mmap
import os, re, sys

PAGESIZE = mmap.PAGESIZE

def test_both():
    "Test mmap module on Unix systems and Windows"

    # Create an mmap'ed file
    f = open('foo', 'w+')

    # Write 2 pages worth of data to the file
    f.write('\0'* PAGESIZE)
    f.write('foo')
    f.write('\0'* (PAGESIZE-3) )

    m = mmap.mmap(f.fileno(), 2 * PAGESIZE)
    f.close()

    # Simple sanity checks

    print type(m)  # SF bug 128713:  segfaulted on Linux
    print '  Position of foo:', m.find('foo') / float(PAGESIZE), 'pages'
    verify(m.find('foo') == PAGESIZE)

    print '  Length of file:', len(m) / float(PAGESIZE), 'pages'
    verify(len(m) == 2*PAGESIZE)

    print '  Contents of byte 0:', repr(m[0])
    verify(m[0] == '\0')
    print '  Contents of first 3 bytes:', repr(m[0:3])
    verify(m[0:3] == '\0\0\0')

    # Modify the file's content
    print "\n  Modifying file's content..."
    m[0] = '3'
    m[PAGESIZE +3: PAGESIZE +3+3]='bar'

    # Check that the modification worked
    print '  Contents of byte 0:', repr(m[0])
    verify(m[0] == '3')
    print '  Contents of first 3 bytes:', repr(m[0:3])
    verify(m[0:3] == '3\0\0')
    print '  Contents of second page:',  repr(m[PAGESIZE-1 : PAGESIZE + 7])
    verify(m[PAGESIZE-1 : PAGESIZE + 7] == '\0foobar\0')

    m.flush()

    # Test doing a regular expression match in an mmap'ed file
    match=re.search('[A-Za-z]+', m)
    if match is None:
        print '  ERROR: regex match on mmap failed!'
    else:
        start, end = match.span(0)
        length = end - start

        print '  Regex match on mmap (page start, length of match):',
        print start / float(PAGESIZE), length

        verify(start == PAGESIZE)
        verify(end == PAGESIZE + 6)

    # test seeking around (try to overflow the seek implementation)
    m.seek(0,0)
    print '  Seek to zeroth byte'
    verify(m.tell() == 0)
    m.seek(42,1)
    print '  Seek to 42nd byte'
    verify(m.tell() == 42)
    m.seek(0,2)
    print '  Seek to last byte'
    verify(m.tell() == len(m))

    print '  Try to seek to negative position...'
    try:
        m.seek(-1)
    except ValueError:
        pass
    else:
        verify(0, 'expected a ValueError but did not get it')

    print '  Try to seek beyond end of mmap...'
    try:
        m.seek(1,2)
    except ValueError:
        pass
    else:
        verify(0, 'expected a ValueError but did not get it')

    print '  Try to seek to negative position...'
    try:
        m.seek(-len(m)-1,2)
    except ValueError:
        pass
    else:
        verify(0, 'expected a ValueError but did not get it')

    # Try resizing map
    print '  Attempting resize()'
    try:
        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.
        pass
    else:
        # resize() is supported
        verify(len(m) == 512,
                "len(m) is %d, but expecting 512" % (len(m),) )
        # Check that we can no longer seek beyond the new size.
        try:
            m.seek(513,0)
        except ValueError:
            pass
        else:
            verify(0, 'Could seek beyond the new size')

    m.close()
    os.unlink("foo")
    print ' Test passed'

test_both()
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.