mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
8286411c81
These tests check for broken URLs in the URL insets of the manuals, examples, and templates. The tests are disabled by default because the Perl interpreter is needed. Later on they can be activated with a flag, as follows: cmake ... -DLYX_ENABLE_URLTESTS=ON but for now the connection from the TOP-CMakeLists.txt is left out. Missing part: 1.) Declaring an setting the option LYX_OPTION(ENABLE_URLTESTS "Enable for URL tests" OFF ALL) 2.) make the connection if(LYX_ENABLE_URLTESTS) add_subdirectory(development/checkurls "${TOP_BINARY_DIR}/checkurls") endif()
50 lines
1.7 KiB
CMake
50 lines
1.7 KiB
CMake
# This file is part of LyX, the document processor.
|
|
# Licence details can be found in the file COPYING.
|
|
#
|
|
# Copyright (c) 2013 Kornel Benko <kornel@lyx.org>
|
|
# (c) 2013 Scott Kostyshak <skotysh@lyx.org>
|
|
#
|
|
# Needed, because of perl scripts here
|
|
find_package(Perl REQUIRED)
|
|
|
|
# create file the lyx-files-list
|
|
set(TOP_SEARCH_PATH "${TOP_SRC_DIR}")
|
|
set(LYXFILES_FILE "${CMAKE_CURRENT_BINARY_DIR}/filesToScan")
|
|
file(WRITE "${LYXFILES_FILE}")
|
|
file(GLOB_RECURSE lyx_files RELATIVE "${TOP_SEARCH_PATH}" "${TOP_SEARCH_PATH}/*.lyx")
|
|
|
|
foreach(_f ${lyx_files})
|
|
file(APPEND "${LYXFILES_FILE}" "${_f}\n")
|
|
endforeach()
|
|
|
|
# Define the perl-script running the actual test
|
|
set(SEARCH_URL_SCRIPT "${CMAKE_CURRENT_SOURCE_DIR}/search_url.pl")
|
|
|
|
# Test all but inaccessible
|
|
add_test(NAME "check_accessible_urls"
|
|
WORKING_DIRECTORY "${TOP_SEARCH_PATH}"
|
|
COMMAND ${PERL_EXECUTABLE} "${SEARCH_URL_SCRIPT}"
|
|
"filesToScan=${LYXFILES_FILE}"
|
|
"ignoredURLS=${CMAKE_CURRENT_SOURCE_DIR}/inaccessibleURLS")
|
|
|
|
# Test inaccessible, but revert the error marker (failed <=> passed)
|
|
# if this fails, then some url is accessible and does not belong
|
|
# to file inaccessibleURLS
|
|
add_test(NAME "check_inaccessible_urls"
|
|
WORKING_DIRECTORY "${TOP_SEARCH_PATH}"
|
|
COMMAND ${PERL_EXECUTABLE} "${SEARCH_URL_SCRIPT}"
|
|
"filesToScan=${LYXFILES_FILE}"
|
|
"selectedURLS=${CMAKE_CURRENT_SOURCE_DIR}/inaccessibleURLS"
|
|
"revertedURLS=${CMAKE_CURRENT_SOURCE_DIR}/inaccessibleURLS")
|
|
|
|
#
|
|
# Test our own bad URLs
|
|
# if this test fails, then our testtool contains errors
|
|
add_test(NAME "check_invalid_urls"
|
|
WORKING_DIRECTORY "${TOP_SEARCH_PATH}"
|
|
COMMAND ${PERL_EXECUTABLE} "${SEARCH_URL_SCRIPT}"
|
|
"extraURLS=${CMAKE_CURRENT_SOURCE_DIR}/knownInvalidURLS"
|
|
"revertedURLS=${CMAKE_CURRENT_SOURCE_DIR}/knownInvalidURLS")
|
|
|
|
|