2016-03-19 09:59:06 +01:00
|
|
|
# This module is designed to allow the Awesome documentation examples to be
|
|
|
|
# tested.
|
|
|
|
#
|
|
|
|
# It shims enough of the Awesome C API to allow code to be executed without an
|
|
|
|
# actual X server or running Awesome process. These tests are not genuine
|
|
|
|
# integration tests, but they are the next best thing.
|
|
|
|
#
|
2016-10-01 17:22:30 +02:00
|
|
|
# As secondary goals, this module also generates images of the test result
|
|
|
|
# where relevant. Those images are used by the documentation and help the
|
|
|
|
# developers track user interface regressions and glitches. Finally, it also
|
|
|
|
# helps to find broken code.
|
2016-03-19 09:59:06 +01:00
|
|
|
cmake_minimum_required(VERSION 3.0.0)
|
|
|
|
|
|
|
|
# Get and update the LUA_PATH so the scripts can be executed without Awesome.
|
|
|
|
execute_process(COMMAND lua -e print\(package.path\) OUTPUT_VARIABLE "LUA_PATH_")
|
|
|
|
|
2017-01-03 14:29:10 +01:00
|
|
|
# Make sure the system can be called from the test directory
|
|
|
|
if(NOT SOURCE_DIR AND ${CMAKE_CURRENT_SOURCE_DIR} MATCHES "/tests/examples")
|
|
|
|
get_filename_component(TOP_SOURCE_DIR
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/../.." ABSOLUTE)
|
|
|
|
# Used by .luacov.
|
|
|
|
set(ENV{SOURCE_DIRECTORY} ${TOP_SOURCE_DIR})
|
|
|
|
else()
|
|
|
|
set(TOP_SOURCE_DIR ${CMAKE_SOURCE_DIR})
|
|
|
|
endif()
|
|
|
|
|
2017-01-04 20:26:46 +01:00
|
|
|
if (DEFINED ENV{DO_COVERAGE} AND NOT $ENV{DO_COVERAGE} STREQUAL "0")
|
2017-01-03 14:29:10 +01:00
|
|
|
execute_process(
|
|
|
|
COMMAND lua -e "require('luacov.runner')('${TOP_SOURCE_DIR}/.luacov')"
|
|
|
|
RESULT_VARIABLE TEST_RESULT
|
|
|
|
ERROR_VARIABLE TEST_ERROR
|
|
|
|
ERROR_STRIP_TRAILING_WHITESPACE)
|
|
|
|
if (TEST_RESULT OR NOT TEST_ERROR STREQUAL "")
|
|
|
|
message(${TEST_ERROR})
|
|
|
|
message(FATAL_ERROR "Failed to run luacov.runner.")
|
|
|
|
endif()
|
2017-01-04 20:26:46 +01:00
|
|
|
set(LUA_COV_RUNNER lua "-erequire('luacov.runner')('${TOP_SOURCE_DIR}/.luacov')")
|
|
|
|
else()
|
|
|
|
set(LUA_COV_RUNNER lua)
|
2017-01-03 14:29:10 +01:00
|
|
|
endif()
|
|
|
|
|
2016-03-19 09:59:06 +01:00
|
|
|
# Add the main awesome lua libraries.
|
|
|
|
set(LUA_PATH2_ "\
|
2017-01-03 14:29:10 +01:00
|
|
|
${TOP_SOURCE_DIR}/lib/?.lua;\
|
|
|
|
${TOP_SOURCE_DIR}/lib/?/init.lua;\
|
|
|
|
${TOP_SOURCE_DIR}/lib/?;\
|
|
|
|
${TOP_SOURCE_DIR}/themes/?.lua;\
|
|
|
|
${TOP_SOURCE_DIR}/themes/?;"
|
2016-03-19 09:59:06 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
# Add the C API shims.
|
|
|
|
set(LUA_PATH3_ "\
|
2017-01-03 14:29:10 +01:00
|
|
|
${TOP_SOURCE_DIR}/tests/examples/shims/?.lua;\
|
|
|
|
${TOP_SOURCE_DIR}/tests/examples/shims/?/init.lua;\
|
|
|
|
${TOP_SOURCE_DIR}/tests/examples/shims/?;"
|
2016-03-19 09:59:06 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
# Done in 3 variables to avoid CMake from implicitly converting into a list.
|
|
|
|
set(ENV{LUA_PATH} "${LUA_PATH3_}${LUA_PATH2_}${LUA_PATH_}")
|
|
|
|
|
2016-10-01 17:22:30 +02:00
|
|
|
# Unset environment variables that would get in the way of evaluating LUA_PATH.
|
2016-09-20 19:36:23 +02:00
|
|
|
unset(ENV{LUA_PATH_5_1})
|
|
|
|
unset(ENV{LUA_PATH_5_2})
|
|
|
|
unset(ENV{LUA_PATH_5_3})
|
|
|
|
|
2016-10-01 17:22:30 +02:00
|
|
|
# The documentation images directory.
|
2016-03-19 09:59:06 +01:00
|
|
|
set(IMAGE_DIR "${CMAKE_BINARY_DIR}/doc/images")
|
|
|
|
file(MAKE_DIRECTORY "${IMAGE_DIR}")
|
|
|
|
|
|
|
|
# Escape potentially multiline strings to be part of the API doc.
|
|
|
|
# * add "--" in front of each lines
|
|
|
|
# * add a custom prefix in front of each lines
|
|
|
|
# * drop empty lines
|
|
|
|
# * convert " " lines into empty lines
|
|
|
|
# * drop lines ending with "--DOC_SOMETHING", they are handled elsewhere
|
|
|
|
function(escape_string variable content escaped_content line_prefix)
|
2016-10-01 17:22:30 +02:00
|
|
|
# If DOC_HIDE_ALL is present, do nothing.
|
2016-03-19 09:59:06 +01:00
|
|
|
if(variable MATCHES "--DOC_HIDE_ALL")
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
string(REGEX REPLACE "\n" ";" var_lines "${variable}")
|
|
|
|
|
|
|
|
set(tmp_output ${content})
|
|
|
|
foreach (LINE ${var_lines})
|
2016-12-31 13:58:35 +01:00
|
|
|
if(NOT LINE MATCHES "^.*--DOC_[A-Z]+")
|
2016-03-19 09:59:06 +01:00
|
|
|
set(tmp_output ${tmp_output}\n--${line_prefix}${LINE})
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
set(${escaped_content} ${tmp_output} PARENT_SCOPE)
|
|
|
|
endfunction()
|
|
|
|
|
2016-10-01 17:22:30 +02:00
|
|
|
# Extract lines with the --DOC_HEADER marker.
|
2016-03-19 09:59:06 +01:00
|
|
|
function(extract_header variable pre_output post_output)
|
|
|
|
string(REGEX REPLACE "\n" ";" var_lines "${variable}")
|
|
|
|
|
|
|
|
set(IS_POST 0)
|
|
|
|
|
|
|
|
foreach (LINE ${var_lines})
|
|
|
|
# This function doesn't escape the lines, so make sure they are
|
|
|
|
# already comments.
|
|
|
|
if(LINE MATCHES "^--.*--DOC_HEADER")
|
|
|
|
# Remove the header tag
|
|
|
|
string(REGEX REPLACE "[ ]*--DOC_HEADER" "" LINE "${LINE}")
|
|
|
|
|
2016-10-01 17:22:30 +02:00
|
|
|
# ldoc is picky about what happens after the first --@, so split
|
|
|
|
# the output on that.
|
2016-03-19 09:59:06 +01:00
|
|
|
if (NOT IS_POST AND LINE MATCHES "^--[ ]*@")
|
|
|
|
set(IS_POST 1)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (IS_POST)
|
|
|
|
set(tmp_post_output ${tmp_post_output}\n${line_prefix}${LINE})
|
|
|
|
else()
|
|
|
|
set(tmp_pre_output ${tmp_pre_output}\n${line_prefix}${LINE})
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
set(${post_output} "${tmp_post_output}\n--" PARENT_SCOPE)
|
|
|
|
set(${pre_output} "${tmp_pre_output}\n--" PARENT_SCOPE)
|
|
|
|
endfunction()
|
|
|
|
|
|
|
|
# Read a code file and convert it to ldoc usage example.
|
|
|
|
# * add "--" in front of each lines
|
|
|
|
# * drop empty lines
|
|
|
|
# * convert " " lines into empty lines
|
|
|
|
# * drop lines ending with "--DOC_HIDE"
|
|
|
|
function(escape_code path escaped_content pre_header post_header)
|
|
|
|
file(READ ${path} path)
|
|
|
|
|
2017-01-01 21:16:07 +01:00
|
|
|
escape_string("${path}\n" "" escaped_code " ")
|
2016-03-19 09:59:06 +01:00
|
|
|
|
|
|
|
extract_header("${path}" example_pre_header example_post_header)
|
|
|
|
|
|
|
|
set(${escaped_content} ${escaped_code} PARENT_SCOPE)
|
|
|
|
set(${pre_header} ${example_pre_header} PARENT_SCOPE)
|
|
|
|
set(${post_header} ${example_post_header} PARENT_SCOPE)
|
|
|
|
endfunction()
|
|
|
|
|
2016-06-04 14:35:46 +02:00
|
|
|
# Find the template.lua that is closest to the given file. For example, if a
|
|
|
|
# template.lua is present in the same directory, its path will be returned. If
|
|
|
|
# one is present in the parent directory, that path is returned etc.
|
|
|
|
function(find_template result_variable file)
|
|
|
|
get_filename_component(path "${file}" DIRECTORY)
|
|
|
|
|
|
|
|
while(NOT EXISTS "${path}/template.lua")
|
|
|
|
set(last_path "${path}")
|
|
|
|
get_filename_component(path "${path}" DIRECTORY)
|
|
|
|
if(last_path STREQUAL path)
|
|
|
|
message(FATAL_ERROR "Failed to find template.lua for ${file}")
|
|
|
|
endif()
|
|
|
|
endwhile()
|
2016-03-19 09:59:06 +01:00
|
|
|
|
2016-06-04 14:35:46 +02:00
|
|
|
set(${result_variable} "${path}/template.lua" PARENT_SCOPE)
|
|
|
|
endfunction()
|
|
|
|
|
2016-10-01 17:22:30 +02:00
|
|
|
# Get the namespace of a file.
|
2016-06-04 14:50:41 +02:00
|
|
|
function(get_namespace result_variable file)
|
|
|
|
get_filename_component(path "${file}" DIRECTORY)
|
2017-01-03 14:29:10 +01:00
|
|
|
string(LENGTH "${TOP_SOURCE_DIR}/tests/examples" prefix_length)
|
2016-06-04 14:50:41 +02:00
|
|
|
string(REPLACE "/" "_" namespace "${path}")
|
|
|
|
string(SUBSTRING "${namespace}" "${prefix_length}" -1 namespace)
|
|
|
|
|
|
|
|
set(${result_variable} "${namespace}" PARENT_SCOPE)
|
|
|
|
endfunction()
|
|
|
|
|
2016-10-01 17:22:30 +02:00
|
|
|
# Execute a Lua file.
|
2016-06-04 14:35:46 +02:00
|
|
|
function(run_test test_path namespace escaped_content)
|
|
|
|
find_template(template "${test_path}")
|
2016-03-19 09:59:06 +01:00
|
|
|
|
2016-10-01 17:22:30 +02:00
|
|
|
# Get the file name without the extension.
|
2016-03-19 09:59:06 +01:00
|
|
|
get_filename_component(${test_path} TEST_FILE_NAME NAME)
|
2016-04-01 05:42:05 +02:00
|
|
|
set(IMAGE_PATH "${IMAGE_DIR}/AUTOGEN${namespace}_${TEST_FILE_NAME}")
|
2016-03-19 09:59:06 +01:00
|
|
|
|
2016-10-01 17:22:30 +02:00
|
|
|
# Execute the script, leave the image extension decision to the test.
|
2016-03-19 09:59:06 +01:00
|
|
|
# SVG is preferred, but PNG is better suited for some tests, like bitmap
|
|
|
|
# patterns.
|
|
|
|
execute_process(
|
2017-01-04 20:26:46 +01:00
|
|
|
COMMAND ${LUA_COV_RUNNER} ${template} ${test_path} ${IMAGE_PATH}
|
|
|
|
RESULT_VARIABLE TEST_RESULT
|
2016-03-19 09:59:06 +01:00
|
|
|
OUTPUT_VARIABLE TEST_OUTPUT
|
|
|
|
ERROR_VARIABLE TEST_ERROR
|
|
|
|
)
|
2017-01-04 20:26:46 +01:00
|
|
|
if (TEST_RESULT OR NOT TEST_ERROR STREQUAL "")
|
|
|
|
message("Result: ${TEST_RESULT}")
|
|
|
|
if (NOT TEST_OUTPUT STREQUAL "")
|
|
|
|
message("Output: ${TEST_OUTPUT}")
|
|
|
|
endif()
|
|
|
|
if (NOT TEST_ERROR STREQUAL "")
|
|
|
|
message("Error: ${TEST_ERROR}")
|
|
|
|
endif()
|
2016-08-20 18:59:28 +02:00
|
|
|
if (STRICT_TESTS)
|
2016-10-01 17:24:44 +02:00
|
|
|
message(FATAL_ERROR ${test_path} " An example test failed, aborting.")
|
2016-08-20 18:59:28 +02:00
|
|
|
endif()
|
2016-03-19 09:59:06 +01:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# Read the code and turn it into an usage example.
|
|
|
|
escape_code(${test_path} TEST_CODE TEST_PRE_HEADER TEST_POST_HEADER)
|
|
|
|
|
|
|
|
# Build the documentation.
|
|
|
|
set(TEST_DOC_CONTENT "${TEST_PRE_HEADER}")
|
|
|
|
|
|
|
|
# If the image has been created, then add it.
|
|
|
|
if(EXISTS "${IMAGE_PATH}.svg")
|
|
|
|
escape_string(
|
2016-04-01 05:42:05 +02:00
|
|
|
"![Usage example](../images/AUTOGEN${namespace}_${TEST_FILE_NAME}.svg)\n"
|
2016-03-19 09:59:06 +01:00
|
|
|
"${TEST_DOC_CONTENT}" TEST_DOC_CONTENT ""
|
|
|
|
)
|
|
|
|
elseif(EXISTS "${IMAGE_PATH}.png")
|
|
|
|
escape_string(
|
2016-04-01 05:42:05 +02:00
|
|
|
"![Usage example](../images/AUTOGEN${namespace}_${TEST_FILE_NAME}.png)\n"
|
2016-03-19 09:59:06 +01:00
|
|
|
"${TEST_DOC_CONTENT}" TEST_DOC_CONTENT ""
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# If there is an output, assume it is relevant and add it to the
|
|
|
|
# documentation under the image.
|
|
|
|
if(NOT ${TEST_OUTPUT} STREQUAL "")
|
|
|
|
set(TEST_DOC_CONTENT
|
|
|
|
"${TEST_DOC_CONTENT}\n--\n--**Usage example output**:\n--"
|
|
|
|
)
|
|
|
|
|
2016-10-01 17:22:30 +02:00
|
|
|
# Markdown requires an empty line before and after, and 4 spaces.
|
2016-03-19 09:59:06 +01:00
|
|
|
escape_string(
|
|
|
|
"\n${TEST_OUTPUT}"
|
|
|
|
"${TEST_DOC_CONTENT}" TEST_DOC_CONTENT " "
|
|
|
|
)
|
|
|
|
set(TEST_DOC_CONTENT "${TEST_DOC_CONTENT}\n--")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# If there is some @* content, append it.
|
|
|
|
set(TEST_DOC_CONTENT "${TEST_DOC_CONTENT}${TEST_POST_HEADER}")
|
|
|
|
|
|
|
|
# Only add it if there is something to display.
|
|
|
|
if(NOT ${TEST_CODE} STREQUAL "\n--")
|
2016-10-01 17:22:30 +02:00
|
|
|
# Do not use the @usage tag, but 4 spaces.
|
2016-04-11 11:15:57 +02:00
|
|
|
file(READ ${test_path} tmp_content)
|
|
|
|
if(NOT tmp_content MATCHES "--DOC_NO_USAGE")
|
|
|
|
set(DOC_PREFIX "@usage")
|
|
|
|
endif()
|
|
|
|
|
2016-03-19 09:59:06 +01:00
|
|
|
escape_string(
|
2016-04-11 11:15:57 +02:00
|
|
|
" ${DOC_PREFIX}"
|
2016-03-19 09:59:06 +01:00
|
|
|
"${TEST_DOC_CONTENT}" TEST_DOC_CONTENT ""
|
|
|
|
)
|
2016-04-11 11:15:57 +02:00
|
|
|
|
2016-03-19 09:59:06 +01:00
|
|
|
set(TEST_DOC_CONTENT "${TEST_DOC_CONTENT}${TEST_CODE}")
|
|
|
|
endif()
|
|
|
|
|
2016-10-01 17:22:30 +02:00
|
|
|
# Export the outout to the parent scope.
|
2016-03-19 09:59:06 +01:00
|
|
|
set(${escaped_content} "${TEST_DOC_CONTENT}" PARENT_SCOPE)
|
|
|
|
|
|
|
|
endfunction()
|
|
|
|
|
2016-10-01 17:22:30 +02:00
|
|
|
# Find and run all test files.
|
2016-06-04 15:01:30 +02:00
|
|
|
file(GLOB_RECURSE test_files LIST_DIRECTORIES false
|
2017-01-03 14:29:10 +01:00
|
|
|
"${TOP_SOURCE_DIR}/tests/examples/*.lua")
|
2016-06-04 15:01:30 +02:00
|
|
|
foreach(file ${test_files})
|
|
|
|
if ((NOT "${file}" MATCHES ".*/shims/.*")
|
|
|
|
AND (NOT "${file}" MATCHES ".*/template.lua"))
|
2016-03-19 09:59:06 +01:00
|
|
|
|
2017-01-03 14:29:10 +01:00
|
|
|
file(RELATIVE_PATH relative_file "${TOP_SOURCE_DIR}" "${file}")
|
2016-06-04 15:14:56 +02:00
|
|
|
message(STATUS "Running ${relative_file}...")
|
|
|
|
|
2016-10-01 17:22:30 +02:00
|
|
|
# Get the file name without the extension.
|
2016-06-04 15:01:30 +02:00
|
|
|
get_filename_component(TEST_FILE_NAME ${file} NAME_WE)
|
2016-03-19 09:59:06 +01:00
|
|
|
|
2016-06-04 15:01:30 +02:00
|
|
|
get_namespace(namespace "${file}")
|
2016-03-19 09:59:06 +01:00
|
|
|
|
2016-06-04 15:01:30 +02:00
|
|
|
run_test("${file}" "${namespace}" ESCAPED_CODE_EXAMPLE)
|
2016-03-19 09:59:06 +01:00
|
|
|
|
2016-10-01 17:22:30 +02:00
|
|
|
# Set the test name.
|
2016-06-04 15:01:30 +02:00
|
|
|
set(TEST_NAME DOC${namespace}_${TEST_FILE_NAME}_EXAMPLE)
|
2016-03-19 09:59:06 +01:00
|
|
|
|
2016-06-04 15:01:30 +02:00
|
|
|
# Anything called @DOC_`namespace`_EXAMPLE@
|
2016-10-01 17:22:30 +02:00
|
|
|
# in the Lua or C sources will be replaced by the content of that
|
|
|
|
# variable during the pre-processing.
|
|
|
|
# While at it, replace \" created by CMake by ',
|
|
|
|
# " wont work in <code>.
|
2016-06-04 15:10:34 +02:00
|
|
|
string(REPLACE "\"" "'" ${TEST_NAME} ${ESCAPED_CODE_EXAMPLE})
|
2016-06-04 15:01:30 +02:00
|
|
|
endif()
|
|
|
|
endforeach()
|
2016-03-19 09:59:06 +01:00
|
|
|
|
2016-10-01 17:24:44 +02:00
|
|
|
message(STATUS "Example tests passed.")
|
2016-12-31 14:02:14 +01:00
|
|
|
|
|
|
|
# vim: filetype=cmake:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80:foldmethod=marker
|