1996-07-22 12:23:25 -03:00
|
|
|
# Testing rgbimg module
|
|
|
|
|
1997-05-08 20:14:57 -03:00
|
|
|
import rgbimg, os, uu
|
|
|
|
|
1998-08-11 23:38:11 -03:00
|
|
|
from test_support import verbose, unlink, findfile
|
1996-07-22 12:23:25 -03:00
|
|
|
|
|
|
|
error = 'test_rgbimg.error'
|
|
|
|
|
|
|
|
print 'RGBimg test suite:'
|
|
|
|
|
|
|
|
def testimg(rgb_file, raw_file):
|
1998-03-26 18:14:20 -04:00
|
|
|
rgb_file = findfile(rgb_file)
|
|
|
|
raw_file = findfile(raw_file)
|
|
|
|
width, height = rgbimg.sizeofimage(rgb_file)
|
|
|
|
rgb = rgbimg.longimagedata(rgb_file)
|
|
|
|
if len(rgb) != width * height * 4:
|
|
|
|
raise error, 'bad image length'
|
|
|
|
raw = open(raw_file, 'rb').read()
|
|
|
|
if rgb != raw:
|
|
|
|
raise error, \
|
|
|
|
'images don\'t match for '+rgb_file+' and '+raw_file
|
|
|
|
for depth in [1, 3, 4]:
|
|
|
|
rgbimg.longstoimage(rgb, width, height, depth, '@.rgb')
|
|
|
|
os.unlink('@.rgb')
|
1996-07-22 12:23:25 -03:00
|
|
|
|
1997-05-08 20:14:57 -03:00
|
|
|
table = [
|
|
|
|
('testrgb.uue', 'test.rgb'),
|
|
|
|
('testimg.uue', 'test.rawimg'),
|
|
|
|
('testimgr.uue', 'test.rawimg.rev'),
|
|
|
|
]
|
|
|
|
for source, target in table:
|
|
|
|
source = findfile(source)
|
|
|
|
target = findfile(target)
|
|
|
|
if verbose:
|
1998-03-26 18:14:20 -04:00
|
|
|
print "uudecoding", source, "->", target, "..."
|
1997-05-08 20:14:57 -03:00
|
|
|
uu.decode(source, target)
|
|
|
|
|
|
|
|
if verbose:
|
|
|
|
print "testing..."
|
|
|
|
|
1996-07-22 12:23:25 -03:00
|
|
|
ttob = rgbimg.ttob(0)
|
|
|
|
if ttob != 0:
|
1998-03-26 18:14:20 -04:00
|
|
|
raise error, 'ttob should start out as zero'
|
1996-07-22 12:23:25 -03:00
|
|
|
|
|
|
|
testimg('test.rgb', 'test.rawimg')
|
|
|
|
|
|
|
|
ttob = rgbimg.ttob(1)
|
|
|
|
if ttob != 0:
|
1998-03-26 18:14:20 -04:00
|
|
|
raise error, 'ttob should be zero'
|
1996-07-22 12:23:25 -03:00
|
|
|
|
|
|
|
testimg('test.rgb', 'test.rawimg.rev')
|
|
|
|
|
|
|
|
ttob = rgbimg.ttob(0)
|
|
|
|
if ttob != 1:
|
1998-03-26 18:14:20 -04:00
|
|
|
raise error, 'ttob should be one'
|
1996-07-22 12:23:25 -03:00
|
|
|
|
|
|
|
ttob = rgbimg.ttob(0)
|
|
|
|
if ttob != 0:
|
1998-03-26 18:14:20 -04:00
|
|
|
raise error, 'ttob should be zero'
|
1997-05-08 20:14:57 -03:00
|
|
|
|
|
|
|
for source, target in table:
|
|
|
|
unlink(findfile(target))
|