1994-01-12 05:55:11 -04:00
|
|
|
# Testing rgbimg module
|
|
|
|
|
2006-02-20 23:28:49 -04:00
|
|
|
import warnings
|
|
|
|
warnings.filterwarnings("ignore",
|
|
|
|
"the rgbimg module is deprecated",
|
|
|
|
DeprecationWarning,
|
|
|
|
".*test_rgbimg$")
|
|
|
|
import rgbimg
|
|
|
|
|
|
|
|
import os, uu
|
1997-04-09 18:25:01 -03:00
|
|
|
|
2002-07-23 16:04:11 -03:00
|
|
|
from test.test_support import verbose, unlink, findfile
|
1994-01-12 05:55:11 -04:00
|
|
|
|
2000-08-18 11:50:20 -03:00
|
|
|
class error(Exception):
|
2000-10-23 14:22:08 -03:00
|
|
|
pass
|
1994-01-12 05:55:11 -04:00
|
|
|
|
|
|
|
print 'RGBimg test suite:'
|
|
|
|
|
|
|
|
def testimg(rgb_file, raw_file):
|
2000-10-23 14:22:08 -03: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')
|
1994-01-12 05:55:11 -04:00
|
|
|
|
1997-04-09 18:25:01 -03:00
|
|
|
table = [
|
2001-10-24 17:42:55 -03:00
|
|
|
('testrgb'+os.extsep+'uue', 'test'+os.extsep+'rgb'),
|
|
|
|
('testimg'+os.extsep+'uue', 'test'+os.extsep+'rawimg'),
|
|
|
|
('testimgr'+os.extsep+'uue', 'test'+os.extsep+'rawimg'+os.extsep+'rev'),
|
1997-04-09 18:25:01 -03:00
|
|
|
]
|
|
|
|
for source, target in table:
|
|
|
|
source = findfile(source)
|
|
|
|
target = findfile(target)
|
|
|
|
if verbose:
|
1998-03-26 15:42:58 -04:00
|
|
|
print "uudecoding", source, "->", target, "..."
|
1997-04-09 18:25:01 -03:00
|
|
|
uu.decode(source, target)
|
|
|
|
|
|
|
|
if verbose:
|
|
|
|
print "testing..."
|
|
|
|
|
1994-01-12 05:55:11 -04:00
|
|
|
ttob = rgbimg.ttob(0)
|
|
|
|
if ttob != 0:
|
2000-10-23 14:22:08 -03:00
|
|
|
raise error, 'ttob should start out as zero'
|
1994-01-12 05:55:11 -04:00
|
|
|
|
2001-10-24 17:42:55 -03:00
|
|
|
testimg('test'+os.extsep+'rgb', 'test'+os.extsep+'rawimg')
|
1994-01-12 05:55:11 -04:00
|
|
|
|
|
|
|
ttob = rgbimg.ttob(1)
|
|
|
|
if ttob != 0:
|
2000-10-23 14:22:08 -03:00
|
|
|
raise error, 'ttob should be zero'
|
1994-01-12 05:55:11 -04:00
|
|
|
|
2001-10-24 17:42:55 -03:00
|
|
|
testimg('test'+os.extsep+'rgb', 'test'+os.extsep+'rawimg'+os.extsep+'rev')
|
1994-01-12 05:55:11 -04:00
|
|
|
|
|
|
|
ttob = rgbimg.ttob(0)
|
|
|
|
if ttob != 1:
|
2000-10-23 14:22:08 -03:00
|
|
|
raise error, 'ttob should be one'
|
1994-01-12 05:55:11 -04:00
|
|
|
|
|
|
|
ttob = rgbimg.ttob(0)
|
|
|
|
if ttob != 0:
|
2000-10-23 14:22:08 -03:00
|
|
|
raise error, 'ttob should be zero'
|
1997-04-09 18:25:01 -03:00
|
|
|
|
|
|
|
for source, target in table:
|
|
|
|
unlink(findfile(target))
|