]> git.lyx.org Git - lyx.git/blob - src/tex2lyx/test/runtests.py
f175f6b86b51b5c85bf4249afd2d04e41d8f4ac7
[lyx.git] / src / tex2lyx / test / runtests.py
1 #! /usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 # file src/tex2lyx/test/runtests.py
5 # This file is part of LyX, the document processor.
6 # Licence details can be found in the file COPYING.
7
8 # author Georg Baum
9
10 # Full author contact details are available in file CREDITS
11
12 # This script is a very basic test suite runner for tex2lyx
13 # The defaults for optional command line arguments are tailored to the
14 # standard use case of testing without special build settings like a version
15 # suffix, since I don't know how to transport command line arguments through
16 # the autotools "make check" mechanism.
17
18 import os, string, sys, time, difflib, filecmp, subprocess, re
19
20 def usage(prog_name):
21   return "Usage: %s [uselyx2lyx] [<tex2lyx binary> [[<script dir>] [[<output dir>] [testfile]]]]" % prog_name
22
23
24 def main(argv):
25     # Parse and manipulate the command line arguments.
26     skipcount = 0
27     uselyx2lyx = False
28     if len(argv) > 1:
29         if argv[1] == "uselyx2lyx":
30             uselyx2lyx = True
31             skipcount = 1
32     if len(argv) >= 3+skipcount:
33         sys.path.append(os.path.join(sys.argv[2+skipcount]))
34     else:
35         sys.path.append(os.path.join(os.path.dirname(sys.argv[0]), '../../../lib/scripts'))
36
37     from lyxpreview_tools import error
38
39     if len(argv) < 2+skipcount:
40         tex2lyx = './tex2lyx'
41     elif len(argv) <= 5+skipcount:
42         tex2lyx = argv[1+skipcount]
43     else:
44         error(usage(argv[0]))
45
46     suffixre = re.search(r'\d+\.\d+$', tex2lyx)
47     if suffixre:
48         suffix = suffixre.group()
49     else:
50         suffix = ""
51     lyx = os.path.join(os.path.dirname(tex2lyx), "lyx" + suffix)
52     inputdir = os.path.dirname(argv[0])
53     if len(argv) >= 4+skipcount:
54         outputdir = sys.argv[3+skipcount]
55     else:
56 #        outputdir = inputdir
57         outputdir = os.path.join(os.path.dirname(tex2lyx), "test")
58
59     if len(argv) >= 5+skipcount:
60         files = [sys.argv[4+skipcount]]
61     else:
62         files = ['test.ltx', 'test-structure.tex', 'test-insets.tex', \
63              'test-modules.tex', 'test-refstyle-theorems.tex', \
64              'box-color-size-space-align.tex', 'verbatim.tex', \
65              'CJK.tex', 'CJKutf8.tex', 'XeTeX-polyglossia.tex']
66
67     errors = []
68     overwrite = (outputdir == inputdir)
69     for f in files:
70         (base, ext) = os.path.splitext(f)
71         texfile = os.path.join(inputdir, f)
72         if overwrite:
73             # we are updating the test references, so use roundtrip to allow
74             # for checking the LyX export as well.
75             cmd = '%s -roundtrip -f %s' % (tex2lyx, texfile)
76         else:
77             lyxfile = os.path.join(outputdir, base + ".lyx")
78             cmd = '%s -roundtrip -copyfiles -f %s %s' % (tex2lyx, texfile, lyxfile)
79         proc = subprocess.Popen(cmd, shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
80         proc.wait()
81         err = proc.returncode
82         errorstring = proc.stderr.read()
83         if not errorstring is None:
84             print errorstring
85         if err != 0:
86             errors.append(f)
87         elif not overwrite:
88             lyxfile1 = getlyxinput(lyx,
89                         os.path.join(inputdir, base + ".lyx.lyx"),
90                         os.path.join(outputdir, base + ".lyx1.lyx") , uselyx2lyx)
91             if lyxfile1 is None:
92                 errors.append(f)
93             else:
94                 lyxfile2 = getlyxinput(lyx,
95                           os.path.join(outputdir, base + ".lyx"),
96                           os.path.join(outputdir, base + ".lyx2.lyx"), uselyx2lyx)
97                 if lyxfile2 is None:
98                     errors.append(f)
99                 elif not filecmp.cmp(lyxfile1, lyxfile2, False):
100                     t1 = time.ctime(os.path.getmtime(lyxfile1))
101                     t2 = time.ctime(os.path.getmtime(lyxfile2))
102                     f1 = open(lyxfile1, 'r')
103                     f2 = open(lyxfile2, 'r')
104                     lines1 = f1.readlines()
105                     lines2 = f2.readlines()
106                     diff = difflib.unified_diff(lines1, lines2, lyxfile1, lyxfile2, t1, t2)
107                     f1.close()
108                     f2.close()
109                     sys.stdout.writelines(diff)
110                     errors.append(f)
111
112     if len(errors) > 0:
113         error('Converting the following files failed: %s' % ', '.join(errors))
114
115 def getlyxinput(lyx, lyxfx, lyxf, uselyx2lyx):
116     if uselyx2lyx:
117         cmd = '%s -E lyx %s %s' % (lyx, lyxf, lyxfx)
118         sys.stdout.writelines(cmd)
119         if os.system(cmd) != 0:
120             return None
121         return lyxf
122     else:
123         return lyxfx
124
125 if __name__ == "__main__":
126     main(sys.argv)
127