test_binascii.py 902 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
#! /usr/bin/env python
"""Test script for the binascii C module

   Uses the mechanism of the python binhex module
   Roger E. Masse
"""
import binhex
import tempfile
from test_support import verbose

def test():

    try:
14 15 16
        fname1 = tempfile.mktemp()
        fname2 = tempfile.mktemp()
        f = open(fname1, 'w')
17
    except:
18
        raise ImportError, "Cannot test binascii without a temp file"
19 20 21 22 23 24 25

    start = 'Jack is my hero'
    f.write(start)
    f.close()
    
    binhex.binhex(fname1, fname2)
    if verbose:
26
        print 'binhex'
27 28 29

    binhex.hexbin(fname2, fname1)
    if verbose:
30
        print 'hexbin'
31 32 33 34 35

    f = open(fname1, 'r')
    finish = f.readline()

    if start <> finish:
36
        print 'Error: binhex <> hexbin'
37
    elif verbose:
38
        print 'binhex == hexbin'
39

40
    try:
41 42 43
        import os
        os.unlink(fname1)
        os.unlink(fname2)
44
    except:
45
        pass
46
test()