1994-01-12 05:55:11 -04:00
|
|
|
# Testing rgbimg module
|
|
|
|
|
1997-04-09 18:25:01 -03:00
|
|
|
import rgbimg, os, uu
|
|
|
|
|
|
|
|
from test_support import verbose, unlink
|
1994-01-12 05:55:11 -04:00
|
|
|
|
|
|
|
error = 'test_rgbimg.error'
|
|
|
|
|
|
|
|
print 'RGBimg test suite:'
|
|
|
|
|
1994-03-09 08:54:32 -04:00
|
|
|
def findfile(file):
|
|
|
|
if os.path.isabs(file): return file
|
|
|
|
import sys
|
1997-09-07 13:54:34 -03:00
|
|
|
path = sys.path
|
|
|
|
try:
|
|
|
|
path = [os.path.dirname(__file__)] + path
|
|
|
|
except NameError:
|
|
|
|
pass
|
|
|
|
for dn in path:
|
1994-03-09 08:54:32 -04:00
|
|
|
fn = os.path.join(dn, file)
|
|
|
|
if os.path.exists(fn): return fn
|
|
|
|
return file
|
|
|
|
|
1994-01-12 05:55:11 -04:00
|
|
|
def testimg(rgb_file, raw_file):
|
1994-03-09 08:54:32 -04:00
|
|
|
rgb_file = findfile(rgb_file)
|
|
|
|
raw_file = findfile(raw_file)
|
1994-01-12 05:55:11 -04:00
|
|
|
width, height = rgbimg.sizeofimage(rgb_file)
|
|
|
|
rgb = rgbimg.longimagedata(rgb_file)
|
|
|
|
if len(rgb) != width * height * 4:
|
|
|
|
raise error, 'bad image length'
|
1997-04-09 18:25:01 -03:00
|
|
|
raw = open(raw_file, 'rb').read()
|
1994-01-12 05:55:11 -04:00
|
|
|
if rgb != raw:
|
1996-12-11 17:40:04 -04:00
|
|
|
raise error, \
|
|
|
|
'images don\'t match for '+rgb_file+' and '+raw_file
|
1994-01-12 05:55:11 -04:00
|
|
|
for depth in [1, 3, 4]:
|
|
|
|
rgbimg.longstoimage(rgb, width, height, depth, '@.rgb')
|
|
|
|
os.unlink('@.rgb')
|
|
|
|
|
1997-04-09 18:25:01 -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:
|
|
|
|
print "uudecoding", source, "->", target, "..."
|
|
|
|
uu.decode(source, target)
|
|
|
|
|
|
|
|
if verbose:
|
|
|
|
print "testing..."
|
|
|
|
|
1994-01-12 05:55:11 -04:00
|
|
|
ttob = rgbimg.ttob(0)
|
|
|
|
if ttob != 0:
|
|
|
|
raise error, 'ttob should start out as zero'
|
|
|
|
|
|
|
|
testimg('test.rgb', 'test.rawimg')
|
|
|
|
|
|
|
|
ttob = rgbimg.ttob(1)
|
|
|
|
if ttob != 0:
|
|
|
|
raise error, 'ttob should be zero'
|
|
|
|
|
|
|
|
testimg('test.rgb', 'test.rawimg.rev')
|
|
|
|
|
|
|
|
ttob = rgbimg.ttob(0)
|
|
|
|
if ttob != 1:
|
|
|
|
raise error, 'ttob should be one'
|
|
|
|
|
|
|
|
ttob = rgbimg.ttob(0)
|
|
|
|
if ttob != 0:
|
|
|
|
raise error, 'ttob should be zero'
|
1997-04-09 18:25:01 -03:00
|
|
|
|
|
|
|
for source, target in table:
|
|
|
|
unlink(findfile(target))
|