mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 07:31:38 +00:00 
			
		
		
		
	Convert gzip test suite to use unittest
This commit is contained in:
		
							parent
							
								
									6564ca72ad
								
							
						
					
					
						commit
						a6f68e1b1f
					
				
					 1 changed files with 96 additions and 60 deletions
				
			
		| 
						 | 
				
			
			@ -1,8 +1,12 @@
 | 
			
		|||
from test.test_support import verify, TESTFN
 | 
			
		||||
#! /usr/bin/env python
 | 
			
		||||
"""Test script for the gzip module.
 | 
			
		||||
"""
 | 
			
		||||
 | 
			
		||||
import unittest
 | 
			
		||||
from test import test_support
 | 
			
		||||
import sys, os
 | 
			
		||||
import gzip
 | 
			
		||||
 | 
			
		||||
filename = TESTFN
 | 
			
		||||
 | 
			
		||||
data1 = """  int length=DEFAULTALLOC, err = Z_OK;
 | 
			
		||||
  PyObject *RetVal;
 | 
			
		||||
| 
						 | 
				
			
			@ -16,52 +20,77 @@
 | 
			
		|||
/* See http://www.winimage.com/zLibDll for Windows */
 | 
			
		||||
"""
 | 
			
		||||
 | 
			
		||||
f = gzip.GzipFile(filename, 'wb') ; f.write(data1 * 50)
 | 
			
		||||
 | 
			
		||||
# Try flush and fileno.
 | 
			
		||||
f.flush()
 | 
			
		||||
f.fileno()
 | 
			
		||||
if hasattr(os, 'fsync'):
 | 
			
		||||
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()
 | 
			
		||||
        f.close()
 | 
			
		||||
 | 
			
		||||
# Try reading.
 | 
			
		||||
f = gzip.GzipFile(filename, 'r') ; d = f.read() ; f.close()
 | 
			
		||||
verify(d == data1*50)
 | 
			
		||||
    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)
 | 
			
		||||
 | 
			
		||||
# Append to the previous file
 | 
			
		||||
f = gzip.GzipFile(filename, 'ab') ; f.write(data2 * 15) ; f.close()
 | 
			
		||||
    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(filename, 'rb') ; d = f.read() ; f.close()
 | 
			
		||||
verify(d == (data1*50) + (data2*15))
 | 
			
		||||
        f = gzip.GzipFile(self.filename, 'rb') ; d = f.read() ; f.close()
 | 
			
		||||
        self.assertEqual(d, (data1*50) + (data2*15))
 | 
			
		||||
 | 
			
		||||
# Try .readline() with varying line lengths
 | 
			
		||||
    def test_readline(self):
 | 
			
		||||
        self.test_write()
 | 
			
		||||
        # Try .readline() with varying line lengths
 | 
			
		||||
 | 
			
		||||
f = gzip.GzipFile(filename, 'rb')
 | 
			
		||||
line_length = 0
 | 
			
		||||
while 1:
 | 
			
		||||
        f = gzip.GzipFile(self.filename, 'rb')
 | 
			
		||||
        line_length = 0
 | 
			
		||||
        while 1:
 | 
			
		||||
            L = f.readline(line_length)
 | 
			
		||||
            if L == "" and line_length != 0: break
 | 
			
		||||
    verify(len(L) <= line_length)
 | 
			
		||||
            self.assert_(len(L) <= line_length)
 | 
			
		||||
            line_length = (line_length + 1) % 50
 | 
			
		||||
f.close()
 | 
			
		||||
        f.close()
 | 
			
		||||
 | 
			
		||||
# Try .readlines()
 | 
			
		||||
    def test_readlines(self):
 | 
			
		||||
        self.test_write()
 | 
			
		||||
        # Try .readlines()
 | 
			
		||||
 | 
			
		||||
f = gzip.GzipFile(filename, 'rb')
 | 
			
		||||
L = f.readlines()
 | 
			
		||||
f.close()
 | 
			
		||||
        f = gzip.GzipFile(self.filename, 'rb')
 | 
			
		||||
        L = f.readlines()
 | 
			
		||||
        f.close()
 | 
			
		||||
 | 
			
		||||
f = gzip.GzipFile(filename, 'rb')
 | 
			
		||||
while 1:
 | 
			
		||||
        f = gzip.GzipFile(self.filename, 'rb')
 | 
			
		||||
        while 1:
 | 
			
		||||
            L = f.readlines(150)
 | 
			
		||||
            if L == []: break
 | 
			
		||||
f.close()
 | 
			
		||||
        f.close()
 | 
			
		||||
 | 
			
		||||
# Try seek, read test
 | 
			
		||||
    def test_seek_read(self):
 | 
			
		||||
        self.test_write()
 | 
			
		||||
        # Try seek, read test
 | 
			
		||||
 | 
			
		||||
f = gzip.GzipFile(filename)
 | 
			
		||||
while 1:
 | 
			
		||||
        f = gzip.GzipFile(self.filename)
 | 
			
		||||
        while 1:
 | 
			
		||||
            oldpos = f.tell()
 | 
			
		||||
            line1 = f.readline()
 | 
			
		||||
            if not line1: break
 | 
			
		||||
| 
						 | 
				
			
			@ -72,19 +101,26 @@
 | 
			
		|||
            else:
 | 
			
		||||
                amount = len(line1)
 | 
			
		||||
            line2 = f.read(amount)
 | 
			
		||||
    verify(line1[:amount] == line2)
 | 
			
		||||
            self.assertEqual(line1[:amount], line2)
 | 
			
		||||
            f.seek(newpos)  # positive seek
 | 
			
		||||
f.close()
 | 
			
		||||
        f.close()
 | 
			
		||||
 | 
			
		||||
# Try seek, write test
 | 
			
		||||
f = gzip.GzipFile(filename, 'w')
 | 
			
		||||
for pos in range(0, 256, 16):
 | 
			
		||||
    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('GZ\n')
 | 
			
		||||
f.close()
 | 
			
		||||
        f.close()
 | 
			
		||||
 | 
			
		||||
f = gzip.GzipFile(filename, 'r')
 | 
			
		||||
verify(f.myfileobj.mode == 'rb')
 | 
			
		||||
f.close()
 | 
			
		||||
    def test_mode(self):
 | 
			
		||||
        self.test_write()
 | 
			
		||||
        f = gzip.GzipFile(self.filename, 'r')
 | 
			
		||||
        self.assertEqual(f.myfileobj.mode, 'rb')
 | 
			
		||||
        f.close()
 | 
			
		||||
 | 
			
		||||
os.unlink(filename)
 | 
			
		||||
def test_main(verbose=None):
 | 
			
		||||
    test_support.run_unittest(TestGzip)
 | 
			
		||||
 | 
			
		||||
if __name__ == "__main__":
 | 
			
		||||
    test_main(verbose=True)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue