mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 03:44:55 +00:00 
			
		
		
		
	svn+ssh://pythondev@svn.python.org/python/trunk ........ r60990 | eric.smith | 2008-02-23 17:05:26 +0100 (Sat, 23 Feb 2008) | 1 line Removed duplicate Py_CHARMASK define. It's already defined in Python.h. ........ r60991 | andrew.kuchling | 2008-02-23 17:23:05 +0100 (Sat, 23 Feb 2008) | 4 lines #1330538: Improve comparison of xmlrpclib.DateTime and datetime instances. Remove automatic handling of datetime.date and datetime.time. This breaks backward compatibility, but python-dev discussion was strongly against this automatic conversion; see the bug for a link. ........ r60994 | andrew.kuchling | 2008-02-23 17:39:43 +0100 (Sat, 23 Feb 2008) | 1 line #835521: Add index entries for various pickle-protocol methods and attributes ........ r60995 | andrew.kuchling | 2008-02-23 18:10:46 +0100 (Sat, 23 Feb 2008) | 2 lines #1433694: minidom's .normalize() failed to set .nextSibling for last element. Fix by Malte Helmert ........ r61000 | christian.heimes | 2008-02-23 18:40:11 +0100 (Sat, 23 Feb 2008) | 1 line Patch #2167 from calvin: Remove unused imports ........ r61001 | christian.heimes | 2008-02-23 18:42:31 +0100 (Sat, 23 Feb 2008) | 1 line Patch #1957: syslogmodule: Release GIL when calling syslog(3) ........ r61002 | christian.heimes | 2008-02-23 18:52:07 +0100 (Sat, 23 Feb 2008) | 2 lines Issue #2051 and patch from Alexander Belopolsky: Permission for pyc and pyo files are inherited from the py file. ........
		
			
				
	
	
		
			167 lines
		
	
	
	
		
			4.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			167 lines
		
	
	
	
		
			4.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
#! /usr/bin/env python
 | 
						|
"""Test script for the gzip module.
 | 
						|
"""
 | 
						|
 | 
						|
import unittest
 | 
						|
from test import test_support
 | 
						|
import os
 | 
						|
import gzip
 | 
						|
 | 
						|
 | 
						|
data1 = b"""  int length=DEFAULTALLOC, err = Z_OK;
 | 
						|
  PyObject *RetVal;
 | 
						|
  int flushmode = Z_FINISH;
 | 
						|
  unsigned long start_total_out;
 | 
						|
 | 
						|
"""
 | 
						|
 | 
						|
data2 = b"""/* zlibmodule.c -- gzip-compatible data compression */
 | 
						|
/* See http://www.gzip.org/zlib/
 | 
						|
/* See http://www.winimage.com/zLibDll for Windows */
 | 
						|
"""
 | 
						|
 | 
						|
 | 
						|
class TestGzip(unittest.TestCase):
 | 
						|
    filename = test_support.TESTFN
 | 
						|
 | 
						|
    def setUp (self):
 | 
						|
        pass
 | 
						|
 | 
						|
    def tearDown (self):
 | 
						|
        try:
 | 
						|
            os.unlink(self.filename)
 | 
						|
        except os.error:
 | 
						|
            pass
 | 
						|
 | 
						|
 | 
						|
    def test_write (self):
 | 
						|
        f = gzip.GzipFile(self.filename, 'wb') ; f.write(data1 * 50)
 | 
						|
 | 
						|
        # Try flush and fileno.
 | 
						|
        f.flush()
 | 
						|
        f.fileno()
 | 
						|
        if hasattr(os, 'fsync'):
 | 
						|
            os.fsync(f.fileno())
 | 
						|
        f.close()
 | 
						|
 | 
						|
    def test_read(self):
 | 
						|
        self.test_write()
 | 
						|
        # Try reading.
 | 
						|
        f = gzip.GzipFile(self.filename, 'r') ; d = f.read() ; f.close()
 | 
						|
        self.assertEqual(d, data1*50)
 | 
						|
 | 
						|
    def test_append(self):
 | 
						|
        self.test_write()
 | 
						|
        # Append to the previous file
 | 
						|
        f = gzip.GzipFile(self.filename, 'ab') ; f.write(data2 * 15) ; f.close()
 | 
						|
 | 
						|
        f = gzip.GzipFile(self.filename, 'rb') ; d = f.read() ; f.close()
 | 
						|
        self.assertEqual(d, (data1*50) + (data2*15))
 | 
						|
 | 
						|
    def test_many_append(self):
 | 
						|
        # Bug #1074261 was triggered when reading a file that contained
 | 
						|
        # many, many members.  Create such a file and verify that reading it
 | 
						|
        # works.
 | 
						|
        f = gzip.open(self.filename, 'wb', 9)
 | 
						|
        f.write(b'a')
 | 
						|
        f.close()
 | 
						|
        for i in range(0, 200):
 | 
						|
            f = gzip.open(self.filename, "ab", 9) # append
 | 
						|
            f.write(b'a')
 | 
						|
            f.close()
 | 
						|
 | 
						|
        # Try reading the file
 | 
						|
        zgfile = gzip.open(self.filename, "rb")
 | 
						|
        contents = b""
 | 
						|
        while 1:
 | 
						|
            ztxt = zgfile.read(8192)
 | 
						|
            contents += ztxt
 | 
						|
            if not ztxt: break
 | 
						|
        zgfile.close()
 | 
						|
        self.assertEquals(contents, b'a'*201)
 | 
						|
 | 
						|
 | 
						|
    def test_readline(self):
 | 
						|
        self.test_write()
 | 
						|
        # Try .readline() with varying line lengths
 | 
						|
 | 
						|
        f = gzip.GzipFile(self.filename, 'rb')
 | 
						|
        line_length = 0
 | 
						|
        while 1:
 | 
						|
            L = f.readline(line_length)
 | 
						|
            if not L and line_length != 0: break
 | 
						|
            self.assert_(len(L) <= line_length)
 | 
						|
            line_length = (line_length + 1) % 50
 | 
						|
        f.close()
 | 
						|
 | 
						|
    def test_readlines(self):
 | 
						|
        self.test_write()
 | 
						|
        # Try .readlines()
 | 
						|
 | 
						|
        f = gzip.GzipFile(self.filename, 'rb')
 | 
						|
        L = f.readlines()
 | 
						|
        f.close()
 | 
						|
 | 
						|
        f = gzip.GzipFile(self.filename, 'rb')
 | 
						|
        while 1:
 | 
						|
            L = f.readlines(150)
 | 
						|
            if L == []: break
 | 
						|
        f.close()
 | 
						|
 | 
						|
    def test_seek_read(self):
 | 
						|
        self.test_write()
 | 
						|
        # Try seek, read test
 | 
						|
 | 
						|
        f = gzip.GzipFile(self.filename)
 | 
						|
        while 1:
 | 
						|
            oldpos = f.tell()
 | 
						|
            line1 = f.readline()
 | 
						|
            if not line1: break
 | 
						|
            newpos = f.tell()
 | 
						|
            f.seek(oldpos)  # negative seek
 | 
						|
            if len(line1)>10:
 | 
						|
                amount = 10
 | 
						|
            else:
 | 
						|
                amount = len(line1)
 | 
						|
            line2 = f.read(amount)
 | 
						|
            self.assertEqual(line1[:amount], line2)
 | 
						|
            f.seek(newpos)  # positive seek
 | 
						|
        f.close()
 | 
						|
 | 
						|
    def test_seek_whence(self):
 | 
						|
        self.test_write()
 | 
						|
        # Try seek(whence=1), read test
 | 
						|
 | 
						|
        f = gzip.GzipFile(self.filename)
 | 
						|
        f.read(10)
 | 
						|
        f.seek(10, whence=1)
 | 
						|
        y = f.read(10)
 | 
						|
        f.close()
 | 
						|
        self.assertEquals(y, data1[20:30])
 | 
						|
 | 
						|
    def test_seek_write(self):
 | 
						|
        # Try seek, write test
 | 
						|
        f = gzip.GzipFile(self.filename, 'w')
 | 
						|
        for pos in range(0, 256, 16):
 | 
						|
            f.seek(pos)
 | 
						|
            f.write(b'GZ\n')
 | 
						|
        f.close()
 | 
						|
 | 
						|
    def test_mode(self):
 | 
						|
        self.test_write()
 | 
						|
        f = gzip.GzipFile(self.filename, 'r')
 | 
						|
        self.assertEqual(f.myfileobj.mode, 'rb')
 | 
						|
        f.close()
 | 
						|
 | 
						|
    def test_1647484(self):
 | 
						|
        for mode in ('wb', 'rb'):
 | 
						|
            f = gzip.GzipFile(self.filename, mode)
 | 
						|
            self.assert_(hasattr(f, "name"))
 | 
						|
            self.assertEqual(f.name, self.filename)
 | 
						|
            f.close()
 | 
						|
 | 
						|
def test_main(verbose=None):
 | 
						|
    test_support.run_unittest(TestGzip)
 | 
						|
 | 
						|
if __name__ == "__main__":
 | 
						|
    test_main(verbose=True)
 |