1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
|
# -* coding: latin-1 -*-
""" Run is the main function that will check if the recode and bibtex
modules are working """
import sys, os
def check_recode ():
try:
import _recode
except SystemError:
raise RuntimeError ('the recode library is probably broken.')
# First, check if the recode version has the famous 3.6 bug
rq = _recode.request ('latin1..latex')
if _recode.recode (rq, 'abc') != 'abc':
raise RuntimeError ('the _recode module is broken.')
return 0
def expected_result (obtained, valid):
if obtained == valid:
return True
try:
return eval(obtained) == eval(valid)
except SyntaxError:
return False
def check_bibtex ():
_debug = False
import _bibtex
def checkfile (filename, strict = 1, typemap = {}):
def expand (file, entry, type = -1):
items = entry [4]
for k in items.keys ():
items [k] = _bibtex.expand (file, items [k], typemap.get (k, -1))
return
file = _bibtex.open_file (filename, strict)
result = open (filename + '-ok', 'r')
line = 1
failures = 0
checks = 0
while 1:
try:
entry = _bibtex.next (file)
if entry is None: break
expand (file, entry)
obtained = `entry`
except IOError, msg:
obtained = 'ParserError'
if _debug: print obtained
valid = result.readline ().strip ()
if not expected_result(obtained, valid):
sys.stderr.write ('error: %s: line %d: unexpected result:\n' % (
filename, line))
sys.stderr.write ('error: %s: line %d: obtained %s\n' % (
filename, line, obtained))
sys.stderr.write ('error: %s: line %d: expected %s\n' % (
filename, line, valid))
failures = failures + 1
checks = checks + 1
return failures, checks
def checkunfiltered (filename, strict = 1):
def expand (file, entry):
if entry [0] in ('preamble', 'string'): return
items = entry [1] [4]
for k in items.keys ():
items [k] = _bibtex.expand (file, items [k], -1)
return
file = _bibtex.open_file (filename, strict)
result = open (filename + '-ok', 'r')
line = 1
failures = 0
checks = 0
while 1:
try:
entry = _bibtex.next_unfiltered (file)
if entry is None: break
expand (file, entry)
obtained = `entry`
except IOError, msg:
obtained = 'ParserError'
if _debug: print obtained
valid = result.readline ().strip ()
if not expected_result(obtained, valid):
sys.stderr.write ('error: %s: line %d: unexpected result:\n' % (
filename, line))
sys.stderr.write ('error: %s: line %d: obtained %s\n' % (
filename, line, obtained))
sys.stderr.write ('error: %s: line %d: expected %s\n' % (
filename, line, valid))
failures = failures + 1
checks = checks + 1
return failures, checks
failures = 0
checks = 0
parser = _bibtex.open_file('/dev/null', True)
def convert(text, t):
field = _bibtex.reverse(t, True, text)
return _bibtex.get_latex(parser, field, t)
text = 'ssai A {} toto~tutu'
for t, r in ((0, r'\'essai A \{\} toto~tutu'),
(2, r'\'essai {A} \{\} toto~tutu'),
(4, text)):
checks += 1
o = convert(text, t)
if o != r:
print "type %d convert: got %r instead of %r" % (
t, o, r)
failures += 1
for file in('tests/preamble.bib',
'tests/string.bib',
'tests/simple-2.bib'):
f, c = checkunfiltered (file)
failures = failures + f
checks = checks + c
failures += f
checks += c
for file in ('tests/simple.bib',
'tests/authors.bib',
'tests/eof.bib',
'tests/paren.bib',
'tests/url.bib'):
f, c = checkfile (file, typemap = {'url': 4})
failures = failures + f
checks = checks + c
print "testsuite: %d checks, %d failures" % (checks, failures)
return failures
def run ():
failures = 0
failures += check_recode ()
failures += check_bibtex ()
return failures
|