mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
fc33092fd8
a) test export/templates/ectaart_pdf5 removed, because of incompatibility between ectart.cls and luatex.sty b) renamed some tests to reflect their purpose tex2lyx2lyx/roundtrip/ => tex2lyx/cmplyx/ # the tests are comparing files written by lyx (not by tex2lyx) autotests/ => keytest/ # we are testing reactions of lyx to some key strokes c) add tests for lyx2lyx. This is rather rudimental, in that it only checks for created output, error codes and error output. d) use correct environment variable to set up the userdir for testing
110 lines
3.5 KiB
CMake
Executable File
110 lines
3.5 KiB
CMake
Executable File
# This script invokes the keytest.py script with the simple set-up needed
|
|
# to re-run deterministic regression tests that one would like to have.
|
|
#
|
|
# AUTOTEST_ROOT = ${LYX_ROOT}/development/autotests
|
|
# KEYTEST_INFILE = xxx-in.txt
|
|
# KEYTEST_OUTFILE = xxx-out.txt
|
|
# BINDIR = ${BUILD_DIR}/bin
|
|
# WORKDIR = ${BUILD_DIR}/autotests/out-home
|
|
# LYX_USERDIR_VER = ${LYX_USERDIR_VER}
|
|
# LOCALE_DIR = ${BUILD_DIR}/autotests/locale
|
|
# PO_BUILD_DIR = ${BUILD_DIR}/po
|
|
# PACKAGE = lyx2.1
|
|
#
|
|
# Script should be called like:
|
|
# cmake -DAUTOTEST_ROOT=xxxx \
|
|
# -DKEYTEST_INFILE=xxxx \
|
|
# -DKEYTEST_OUTFILE=xxx \
|
|
# -DBINDIR=xxx \
|
|
# -DLYX=xxx \
|
|
# -DWORKDIR=xxx \
|
|
# -DLYX_USERDIR_VER=${LYX_USERDIR_VER} \
|
|
# -DLOCALE_DIR=xxx \
|
|
# -DPO_BUILD_DIR=xxx \
|
|
# -DPACKAGE=xxx \
|
|
# -P ${AUTOTEST_ROOT}/single-test.cmake
|
|
|
|
set(KEYTEST "${AUTOTEST_ROOT}/keytest.py")
|
|
|
|
execute_process(COMMAND pidof ${LYX} OUTPUT_VARIABLE LYX_PID RESULT_VARIABLE pidstat OUTPUT_VARIABLE pidres)
|
|
message(STATUS "pidres = ${pidres}")
|
|
if (NOT pidstat)
|
|
# lyx already running, remove trailing '\n' from pid
|
|
string(REGEX REPLACE "\n" "" pidres ${pidres})
|
|
execute_process(COMMAND wmctrl -l -p OUTPUT_VARIABLE _wmco)
|
|
string(REGEX REPLACE "[\n]+" ";" _wmc ${_wmco})
|
|
foreach(_w ${_wmc})
|
|
string(REGEX MATCH "${pidres}" _wr ${_w})
|
|
if (${_wr} MATCHES ${pidres})
|
|
# this entry contains the pid, go search for X11-window-id
|
|
string(REGEX REPLACE " .*" "" _wr ${_w})
|
|
set(LYX_WINDOW_NAME ${_wr})
|
|
message(STATUS "Set LYX_WINDOW_NAME to ${_wr}")
|
|
endif()
|
|
endforeach()
|
|
else()
|
|
set(pidres "")
|
|
set(LYX_WINDOW_NAME "")
|
|
endif()
|
|
|
|
set(LYX_EXE "${BINDIR}/${LYX}")
|
|
set(use_hacked $ENV{XVKBD_HACKED})
|
|
if(NOT use_hacked)
|
|
if(use_hacked STREQUAL "")
|
|
# ENV{XVKBD_HACKED} probably not set, so the default should be
|
|
# to use the hacked
|
|
set(use_hacked "1")
|
|
else()
|
|
set(use_hacked "0")
|
|
endif()
|
|
else()
|
|
set(use_hacked "1")
|
|
endif()
|
|
|
|
set(ENV{XVKBD_HACKED} ${use_hacked})
|
|
if(use_hacked)
|
|
set(XVKBD_EXE "${BINDIR}/xvkbd")
|
|
else()
|
|
set(XVKBD_EXE "/usr/bin/xvkbd")
|
|
endif()
|
|
|
|
if(EXISTS "${WORKDIR}/.lyx/session")
|
|
execute_process(COMMAND ${CMAKE_COMMAND} -E remove -f "${WORKDIR}/.lyx/session")
|
|
endif()
|
|
# Environments needed by keytest.py
|
|
set(ENV{PACKAGE} ${PACKAGE})
|
|
set(ENV{LOCALE_DIR} ${LOCALE_DIR})
|
|
set(ENV{LYX_LOCALEDIR} "${WORKDIR}/../locale")
|
|
set(ENV{${LYX_USERDIR_VER}} "${WORKDIR}/.lyx")
|
|
set(ENV{LYX_PID} ${pidres})
|
|
set(ENV{LYX_WINDOW_NAME} ${LYX_WINDOW_NAME})
|
|
set(ENV{LYX_EXE} ${LYX_EXE})
|
|
set(ENV{LYX} ${LYX})
|
|
set(ENV{XVKBD_EXE} ${XVKBD_EXE})
|
|
set(ENV{KEYTEST_INFILE} "${AUTOTEST_ROOT}/${KEYTEST_INFILE}")
|
|
set(ENV{KEYTEST_OUTFILE} "${WORKDIR}/${KEYTEST_OUTFILE}")
|
|
set(ENV{PO_BUILD_DIR} "${PO_BUILD_DIR}")
|
|
set(ENV{MAX_DROP} 0)
|
|
set(ENV{MAX_LOOPS} 1)
|
|
string(REGEX REPLACE "-in\\.(txt|sh)$" "" _jj ${KEYTEST_INFILE})
|
|
if(EXISTS "${WORKDIR}/../${_jj}.lyx.emergency")
|
|
execute_process(
|
|
COMMAND ${CMAKE_COMMAND} -E remove -f "${WORKDIR}/../${_jj}.lyx.emergency" )
|
|
endif()
|
|
file(GLOB _testfiles RELATIVE "${WORKDIR}" "test*.*" "#test*.*")
|
|
if(_testfiles)
|
|
# remove some leftover files from previous test
|
|
execute_process(
|
|
COMMAND ${CMAKE_COMMAND} -E remove -f ${_testfiles} )
|
|
endif()
|
|
if(EXISTS "${AUTOTEST_ROOT}/${_jj}.lyx")
|
|
configure_file("${AUTOTEST_ROOT}/${_jj}.lyx" "${WORKDIR}/../${_jj}.lyx" COPYONLY)
|
|
endif()
|
|
execute_process(
|
|
COMMAND python ${KEYTEST}
|
|
RESULT_VARIABLE KEYTEST_RES)
|
|
if(KEYTEST_RES)
|
|
message(FATAL_ERROR "KEYTEST failed: KEYTEST_RES=${KEYTEST_RES}")
|
|
endif()
|
|
|