]> git.lyx.org Git - features.git/blob - development/autotests/keytest.py
Keytests: improve handling of strings to be send to xvkbd
[features.git] / development / autotests / keytest.py
1 #!/usr/bin/python
2 # -*- coding: utf-8 -*-
3 # This script generates hundreds of random keypresses per second,
4 #  and sends them to the lyx window
5 # It requires xvkbd and wmctrl
6 # It generates a log of the KEYCODES it sends as development/keystest/out/KEYCODES
7 #
8 # Adapted by Tommaso Cucinotta from the original MonKey Test by
9 # John McCabe-Dansted.
10
11 from __future__ import print_function
12 import random
13 import os
14 import re
15 import sys
16 import time
17 #from subprocess import call
18 import subprocess
19
20 print('Beginning keytest.py')
21
22 FNULL = open('/dev/null', 'w')
23
24 key_delay = ''
25
26 class CommandSource:
27
28     def __init__(self):
29         keycode = [
30             "\[Left]",
31             '\[Right]',
32             '\[Down]',
33             '\[Up]',
34             '\[BackSpace]',
35             '\[Delete]',
36             '\[Escape]',
37             ]
38         keycode[:0] = keycode
39         keycode[:0] = keycode
40
41         keycode[:0] = ['\\']
42
43         for k in range(97, 123):
44             keycode[:0] = chr(k)
45
46         for k in range(97, 123):
47             keycode[:0] = ["\A" + chr(k)]
48
49         for k in range(97, 123):
50             keycode[:0] = ["\A" + chr(k)]
51
52         for k in range(97, 123):
53             keycode[:0] = ["\C" + chr(k)]
54
55         self.keycode = keycode
56         self.count = 0
57         self.count_max = 1999
58
59     def getCommand(self):
60         self.count = self.count + 1
61         if self.count % 200 == 0:
62             return 'RaiseLyx'
63         elif self.count > self.count_max:
64             os._exit(0)
65         else:
66             keystr = ''
67             for k in range(1, 2):
68                 keystr = keystr + self.keycode[random.randint(1,
69                         len(self.keycode)) - 1]
70             return 'KK: ' + keystr
71
72
73 class CommandSourceFromFile(CommandSource):
74
75     def __init__(self, filename, p):
76
77         self.infile = open(filename, 'r')
78         self.lines = self.infile.readlines()
79         self.infile.close()
80         linesbak = self.lines
81         self.p = p
82         print(p, self.p, 'self.p')
83         self.i = 0
84         self.count = 0
85         self.loops = 0
86
87         # Now we start randomly dropping lines, which we hope are redundant
88         # p is the probability that any given line will be removed
89
90         if p > 0.001:
91             if random.uniform(0, 1) < 0.5:
92                 print('randomdrop_independant\n')
93                 self.randomdrop_independant()
94             else:
95                 print('randomdrop_slice\n')
96                 self.randomdrop_slice()
97         if screenshot_out is None:
98             count_atleast = 100
99         else:
100             count_atleast = 1
101         self.max_count = max(len(self.lines) + 20, count_atleast)
102         if len(self.lines) < 1:
103             self.lines = linesbak
104
105     def randomdrop_independant(self):
106         p = self.p
107
108         # The next couple of lines are to ensure that at least one line is dropped
109
110         drop = random.randint(0, len(self.lines) - 1)
111         del self.lines[drop]
112         #p = p - 1 / len(self.lines)
113         origlines = self.lines
114         self.lines = []
115         for l in origlines:
116             if random.uniform(0, 1) < self.p:
117                 print('Randomly dropping line ' + l + '\n')
118             else:
119                 self.lines.append(l)
120         print('LINES\n')
121         print(self.lines)
122         sys.stdout.flush()
123
124     def randomdrop_slice(self):
125         lines = self.lines
126         if random.uniform(0, 1) < 0.4:
127             lines.append(lines[0])
128             del lines[0]
129         num_lines = len(lines)
130         max_drop = max(5, num_lines / 5)
131         num_drop = random.randint(1, 5)
132         drop_mid = random.randint(0, num_lines)
133         drop_start = max(drop_mid - num_drop / 2, 0)
134         drop_end = min(drop_start + num_drop, num_lines)
135         print(drop_start, drop_mid, drop_end)
136         print(lines)
137         del lines[drop_start:drop_end]
138         print(lines)
139         self.lines = lines
140
141     def getCommand(self):
142         if self.count >= self.max_count:
143             os._exit(0)
144         if self.i >= len(self.lines):
145             self.loops = self.loops + 1
146             if self.loops >= int(max_loops):
147                 return None
148             self.i = 0
149             return 'Loop'
150         line = self.lines[self.i].rstrip('\n')
151         self.count = self.count + 1
152         self.i = self.i + 1
153         return line
154
155
156 def lyx_exists():
157     if lyx_pid is None:
158         return False
159     fname = '/proc/' + lyx_pid + '/status'
160     return os.path.exists(fname)
161
162
163 # Interruptible os.system()
164 def intr_system(cmd, ignore_err = False):
165     print("Executing " + cmd + "\n")
166     ret = os.system(cmd)
167     if os.WIFSIGNALED(ret):
168         raise KeyboardInterrupt
169     if ret != 0 and not ignore_err:
170         raise BaseException("command failed:" + cmd)
171     return ret
172
173 statreg = re.compile(r'^State:.*\(([a-z]+)\)')
174
175 def lyx_status(pid):
176   if lyx_pid is None:
177     return "dead"
178   fname = '/proc/' + pid + '/status'
179   try:
180     f = open(fname)
181     for line in f:
182       m = statreg.match(line)
183       if m:
184         status = m.group(1)
185         f.close()
186         return status
187     f.close()
188   except IOError as e:
189      print("I/O error({0}): {1}".format(e.errno, e.strerror))
190      return "dead"
191   except:
192     print("Unexpected error:", sys.exc_info()[0])
193   return "dead"
194
195 # Return true if LyX (identified via lyx_pid) is sleeping
196 def lyx_sleeping():
197     return lyx_status(lyx_pid) == "sleeping"
198
199 # Return true if LyX (identified via lyx_pid) is zombie
200 def lyx_zombie():
201     return lyx_status(lyx_pid) == "zombie"
202
203 def lyx_dead():
204     status = lyx_status(lyx_pid)
205     return (status == "dead") or (status == "zombie")
206
207 def sendKeystringLocal(keystr, LYX_PID):
208
209     #if not re.match(".*\w.*", keystr):
210     #    print('print .' + keystr)
211     #    keystr = 'a'
212     before_secs = time.time()
213     while lyx_exists() and not lyx_sleeping():
214         time.sleep(0.02)
215         sys.stdout.flush()
216         if time.time() - before_secs > 180:
217             print('Killing due to freeze (KILL_FREEZE)')
218
219             # Do profiling, but sysprof has no command line interface?
220             # intr_system("killall -KILL lyx")
221
222             os._exit(1)
223     if not screenshot_out is None:
224         while lyx_exists() and not lyx_sleeping():
225             time.sleep(0.02)
226             sys.stdout.flush()
227         print('Making Screenshot: ' + screenshot_out + ' OF ' + infilename)
228         time.sleep(0.2)
229         intr_system('import -window root '+screenshot_out+str(x.count)+".png")
230         time.sleep(0.1)
231     sys.stdout.flush()
232     actual_delay = key_delay
233     if actual_delay == '':
234         actual_delay = def_delay
235     xvpar = [xvkbd_exe]
236     if qt_frontend == 'QT5':
237         xvpar.extend(["-no-jump-pointer"])
238     else:
239         xvpar.extend(["-xsendevent"])
240     xvpar.extend(["-window", lyx_window_name, "-delay", actual_delay, "-text", keystr])
241
242     print("Sending \"" + keystr + "\"")
243     subprocess.call(xvpar, stdout = FNULL, stderr = FNULL)
244
245 Axreg = re.compile(r'^(.*)\\Ax([^\\]*)(.*)$')
246 returnreg = re.compile(r'\\\[Return\](.*)$')
247
248 # recursive wrapper around sendKeystringLocal()
249 # handling \Ax-entries
250 def sendKeystringAx(line, LYX_PID):
251     global key_delay
252     saved_delay = key_delay
253     m = Axreg.match(line)
254     if m:
255         prefix = m.group(1)
256         content = m.group(2)
257         rest = m.group(3);
258         if prefix != "":
259             # since (.*) is greedy, check prefix for '\Ax' again
260             sendKeystringAx(prefix, LYX_PID)
261         sendKeystringLocal('\Ax', LYX_PID)
262         time.sleep(0.1)
263         m2 = returnreg.match(rest)
264         if m2:
265             line = m2.group(1)
266             key_delay = "1"
267             sendKeystringLocal(content + '\[Return]', LYX_PID)
268             key_delay = saved_delay
269             time.sleep(0.1)
270             if line != "":
271                 sendKeystringLocal(line, LYX_PID)
272         else:
273             if content != "":
274                 sendKeystringLocal(content, LYX_PID)
275             if rest != "":
276                 sendKeystringLocal(rest, LYX_PID)
277     else:
278         if line != "":
279             sendKeystringLocal(line, LYX_PID)
280
281 controlkeyreg = re.compile(r'^(.*\\\[[A-Z][a-z]+\])(.*\\\[[A-Z][a-z]+\])(.*)$')
282 # Make sure, only one of \[Return], \[Tab], \[Down], \[Home] etc are in one sent line
283 # e.g. split the input line on each keysym
284 def sendKeystringRT(line, LYX_PID):
285     m = controlkeyreg.match(line)
286     if m:
287         first = m.group(1)
288         second = m.group(2)
289         third = m.group(3)
290         sendKeystringRT(first, LYX_PID)
291         sendKeystringRT(second, LYX_PID)
292         if third != "":
293             sendKeystringRT(third, LYX_PID)
294     else:
295         sendKeystringAx(line, LYX_PID)
296
297 def system_retry(num_retry, cmd):
298     i = 0
299     rtn = intr_system(cmd)
300     while ( ( i < num_retry ) and ( rtn != 0) ):
301         i = i + 1
302         rtn = intr_system(cmd)
303         time.sleep(1)
304     if ( rtn != 0 ):
305         print("Command Failed: "+cmd)
306         print(" EXITING!\n")
307         os._exit(1)
308
309 def RaiseWindow():
310     #intr_system("echo x-session-manager PID: $X_PID.")
311     #intr_system("echo x-session-manager open files: `lsof -p $X_PID | grep ICE-unix | wc -l`")
312     ####intr_system("wmctrl -l | ( grep '"+lyx_window_name+"' || ( killall lyx ; sleep 1 ; killall -9 lyx ))")
313     print("lyx_window_name = " + lyx_window_name + "\n")
314     intr_system("wmctrl -R '"+lyx_window_name+"' ;sleep 0.1")
315     system_retry(30, "wmctrl -i -a '"+lyx_window_name+"'")
316
317
318 lyx_pid = os.environ.get('LYX_PID')
319 print('lyx_pid: ' + str(lyx_pid) + '\n')
320 infilename = os.environ.get('KEYTEST_INFILE')
321 outfilename = os.environ.get('KEYTEST_OUTFILE')
322 max_drop = os.environ.get('MAX_DROP')
323 lyx_window_name = os.environ.get('LYX_WINDOW_NAME')
324 screenshot_out = os.environ.get('SCREENSHOT_OUT')
325 lyx_userdir = os.environ.get('LYX_USERDIR')
326
327 max_loops = os.environ.get('MAX_LOOPS')
328 if max_loops is None:
329     max_loops = 3
330
331 PACKAGE = os.environ.get('PACKAGE')
332 if not PACKAGE is None:
333   print("PACKAGE = " + PACKAGE + "\n")
334
335 PO_BUILD_DIR = os.environ.get('PO_BUILD_DIR')
336 if not PO_BUILD_DIR is None:
337   print("PO_BUILD_DIR = " + PO_BUILD_DIR + "\n")
338
339 lyx = os.environ.get('LYX')
340 if lyx is None:
341     lyx = "lyx"
342
343 lyx_exe = os.environ.get('LYX_EXE')
344 if lyx_exe is None:
345     lyx_exe = lyx
346
347 xvkbd_exe = os.environ.get('XVKBD_EXE')
348 if xvkbd_exe is None:
349     xvkbd_exe = "xvkbd"
350
351 qt_frontend = os.environ.get('QT_FRONTEND')
352 if qt_frontend is None:
353     qt_frontend = 'QT4'
354
355 locale_dir = os.environ.get('LOCALE_DIR')
356 if locale_dir is None:
357     locale_dir = '.'
358
359 def_delay = os.environ.get('XVKBD_DELAY')
360 if def_delay is None:
361     def_delay = '100'
362
363 file_new_command = os.environ.get('FILE_NEW_COMMAND')
364 if file_new_command is None:
365     file_new_command = "\Afn"
366
367 ResetCommand = os.environ.get('RESET_COMMAND')
368 if ResetCommand is None:
369     ResetCommand = "\[Escape]\[Escape]\[Escape]\[Escape]" + file_new_command
370     #ResetCommand="\[Escape]\[Escape]\[Escape]\[Escape]\Cw\Cw\Cw\Cw\Cw\Afn"
371
372 if lyx_window_name is None:
373     lyx_window_name = 'LyX'
374
375 print('outfilename: ' + outfilename + '\n')
376 print('max_drop: ' + max_drop + '\n')
377
378 if infilename is None:
379     print('infilename is None\n')
380     x = CommandSource()
381     print('Using x=CommandSource\n')
382 else:
383     print('infilename: ' + infilename + '\n')
384     probability_we_drop_a_command = random.uniform(0, float(max_drop))
385     print('probability_we_drop_a_command: ')
386     print('%s' % probability_we_drop_a_command)
387     print('\n')
388     x = CommandSourceFromFile(infilename, probability_we_drop_a_command)
389     print('Using x=CommandSourceFromFile\n')
390
391 outfile = open(outfilename, 'w')
392
393 if not lyx_pid is None:
394     RaiseWindow()
395     # Next command is language dependent
396     #sendKeystringRT("\Afn", lyx_pid)
397
398 write_commands = True
399 failed = False
400
401 while not failed:
402     #intr_system('echo -n LOADAVG:; cat /proc/loadavg')
403     c = x.getCommand()
404     if c is None:
405         break
406     if c.strip() == "":
407         continue
408     outfile.writelines(c + '\n')
409     outfile.flush()
410     if c[0] == '#':
411         print("Ignoring comment line: " + c)
412     elif c[0:9] == 'TestBegin':
413         print("\n")
414         lyx_pid=os.popen("pidof " + lyx).read()
415         if lyx_pid != "":
416             print("Found running instance(s) of LyX: " + lyx_pid + ": killing them all\n")
417             intr_system("killall " + lyx, True)
418             time.sleep(0.5)
419             intr_system("killall -KILL " + lyx, True)
420         time.sleep(0.2)
421         print("Starting LyX . . .")
422         if lyx_userdir is None:
423             intr_system(lyx_exe + c[9:] + "&")
424         else:
425             intr_system(lyx_exe + " -userdir " + lyx_userdir + " " + c[9:] + "&")
426         count = 5
427         old_lyx_pid = "-7"
428         old_lyx_window_name = "not set"
429         print("Waiting for LyX to show up . . .")
430         while count > 0:
431             lyx_pid=os.popen("pidof " + lyx).read().rstrip()
432             if lyx_pid != old_lyx_pid:
433                 print('lyx_pid=' + lyx_pid)
434                 old_lyx_pid = lyx_pid
435             if lyx_pid != "":
436                 lyx_window_name=os.popen("wmctrl -l -p | grep ' " + str(lyx_pid) +  " ' | cut -d ' ' -f 1").read().rstrip()
437                 if old_lyx_window_name != lyx_window_name:
438                     print('lyx_win=' + lyx_window_name, '\n')
439                     old_lyx_window_name = lyx_window_name
440                 if lyx_window_name != "":
441                     break
442             else:
443                 count = count - 1
444             time.sleep(1)
445         if count <= 0:
446             print('Timeout: could not start ' + lyx_exe, '\n')
447             sys.stdout.flush()
448             failed = True
449         print('lyx_pid: ' + lyx_pid)
450         print('lyx_win: ' + lyx_window_name + '\n')
451         sendKeystringLocal("\C\[Home]", lyx_pid)
452     elif c[0:5] == 'Sleep':
453         print("Sleeping for " + c[6:] + " seconds\n")
454         time.sleep(float(c[6:]))
455     elif c[0:4] == 'Exec':
456         cmd = c[5:].rstrip()
457         intr_system(cmd)
458     elif c == 'Loop':
459         outfile.close()
460         outfile = open(outfilename + '+', 'w')
461         print('Now Looping')
462     elif c == 'RaiseLyx':
463         print('Raising Lyx')
464         RaiseWindow()
465     elif c[0:4] == 'KK: ':
466         if lyx_exists():
467             sendKeystringRT(c[4:], lyx_pid)
468         else:
469             ##intr_system('killall lyx; sleep 2 ; killall -9 lyx')
470             if lyx_pid is None:
471               print('No path /proc/xxxx/status, exiting')
472             else:
473               print('No path /proc/' + lyx_pid + '/status, exiting')
474             os._exit(1)
475     elif c[0:4] == 'KD: ':
476         key_delay = c[4:].rstrip('\n')
477         print('Setting DELAY to ' + key_delay + '.\n')
478     elif c == 'Loop':
479         RaiseWindow()
480         sendKeystringRT(ResetCommand, lyx_pid)
481     elif c[0:6] == 'Assert':
482         cmd = c[7:].rstrip()
483         result = intr_system(cmd)
484         failed = failed or (result != 0)
485         print("result=" + str(result) + ", failed=" + str(failed))
486     elif c[0:7] == 'TestEnd':
487 #        time.sleep(0.5)
488         if lyx_dead():
489             print("LyX instance not found because of crash or assert !\n")
490             failed = True
491         else:
492             print("    ------------    Forcing quit of lyx instance: " + str(lyx_pid) + "    ------------")
493             # \Ax Enter command line is sometimes blocked
494             # \[Escape] works after this
495             sendKeystringAx("\Ax\[Escape]", lyx_pid)
496             # now we should be outside any dialog
497             # and so the function lyx-quit should work
498             sendKeystringLocal("\Cq", lyx_pid)
499             time.sleep(0.5)
500             if lyx_sleeping():
501                 # probably waiting for Save/Discard/Abort, we select 'Discard'
502                 sendKeystringRT("\[Tab]\[Return]", lyx_pid)
503                 lcount = 0
504             else:
505                 lcount = 1
506             while not lyx_dead():
507                 lcount = lcount + 1
508                 if lcount > 20:
509                     print("LyX still up, killing process and waiting for it to die...\n")
510                     intr_system("kill -9 " + str(lyx_pid), True);
511                 time.sleep(0.5)
512         cmd = c[8:].rstrip()
513         print("Executing " + cmd)
514         result = intr_system(cmd)
515         failed = failed or (result != 0)
516         print("result=" + str(result) + ", failed=" + str(failed))
517     elif c[0:4] == 'Lang':
518         lang = c[5:].rstrip()
519         print("Setting LANG=" + lang + "\n")
520         os.environ['LANG'] = lang
521         os.environ['LC_ALL'] = lang
522 # If it doesn't exist, create a link <locale_dir>/<country-code>/LC_MESSAGES/lyx<version-suffix>.mo
523 # pointing to the corresponding .gmo file. Needed to let lyx find the right translation files.
524 # See http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg165613.html
525         idx = lang.rfind(".")
526         if idx != -1:
527             ccode = lang[0:idx]
528         else:
529             ccode = lang
530
531         print("Setting LANGUAGE=" + ccode + "\n")
532         os.environ['LANGUAGE'] = ccode
533
534         idx = lang.find("_")
535         if idx != -1:
536             short_code = lang[0:idx]
537         else:
538             short_code = ccode
539         lyx_dir = os.popen("dirname \"" + lyx_exe + "\"").read().rstrip()
540         if PACKAGE is None:
541           # on cmake-build there is no Makefile in this directory
542           # so PACKAGE has to be provided
543           if os.path.exists(lyx_dir + "/Makefile"):
544             print("Executing: grep 'PACKAGE =' " + lyx_dir + "/Makefile | sed -e 's/PACKAGE = \(.*\)/\\1/'")
545             lyx_name = os.popen("grep 'PACKAGE =' " + lyx_dir + "/Makefile | sed -e 's/PACKAGE = \(.*\)/\\1/'").read().rstrip()
546           else:
547             print('Could not determine PACKAGE name needed for translations\n')
548             failed = True
549         else:
550           lyx_name = PACKAGE
551         intr_system("mkdir -p " + locale_dir + "/" + ccode + "/LC_MESSAGES")
552         intr_system("rm -f " + locale_dir + "/" + ccode + "/LC_MESSAGES/" + lyx_name + ".mo")
553         if PO_BUILD_DIR is None:
554             if lyx_dir[0:3] == "../":
555                 rel_dir = "../../" + lyx_dir
556             else:
557                 rel_dir = lyx_dir
558             intr_system("ln -s " + rel_dir + "/../po/" + short_code + ".gmo " + locale_dir + "/" + ccode + "/LC_MESSAGES/" + lyx_name + ".mo")
559         else:
560             intr_system("ln -s " + PO_BUILD_DIR + "/" + short_code + ".gmo " + locale_dir + "/" + ccode + "/LC_MESSAGES/" + lyx_name + ".mo")
561     else:
562         print("Unrecognised Command '" + c + "'\n")
563         failed = True
564
565 print("Test case terminated: ")
566 if failed:
567     print("FAIL\n")
568     os._exit(1)
569 else:
570     print("Ok\n")
571     os._exit(0)