2017-09-01 07:31:51 +00:00
|
|
|
# Define fish_tests.
|
2017-10-05 04:34:48 +00:00
|
|
|
ADD_EXECUTABLE(fish_tests EXCLUDE_FROM_ALL
|
|
|
|
src/fish_tests.cpp)
|
2017-09-01 07:31:51 +00:00
|
|
|
FISH_LINK_DEPS(fish_tests)
|
|
|
|
|
2017-10-05 04:34:48 +00:00
|
|
|
# The "test" directory.
|
|
|
|
SET(TEST_DIR ${CMAKE_CURRENT_BINARY_DIR}/test)
|
|
|
|
|
|
|
|
# The directory into which fish is installed.
|
|
|
|
SET(TEST_INSTALL_DIR ${TEST_DIR}/buildroot)
|
|
|
|
|
|
|
|
# The directory where the tests expect to find the fish root (./bin, etc)
|
|
|
|
SET(TEST_ROOT_DIR ${TEST_DIR}/root)
|
|
|
|
|
|
|
|
# Copy tests files.
|
|
|
|
FILE(GLOB TESTS_FILES tests/*)
|
2017-09-01 07:31:51 +00:00
|
|
|
ADD_CUSTOM_TARGET(tests_dir DEPENDS tests)
|
2018-01-06 12:07:12 +00:00
|
|
|
|
|
|
|
ADD_CUSTOM_COMMAND(TARGET tests_dir
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E copy_directory
|
|
|
|
${CMAKE_SOURCE_DIR}/tests/ ${CMAKE_BINARY_DIR}/tests/
|
|
|
|
COMMENT "Copying test files to binary dir"
|
|
|
|
VERBATIM)
|
|
|
|
|
2017-09-01 07:31:51 +00:00
|
|
|
ADD_DEPENDENCIES(fish_tests tests_dir)
|
|
|
|
|
|
|
|
# Create the 'test' target.
|
|
|
|
# Set a policy so CMake stops complaining about the name 'test'.
|
|
|
|
CMAKE_POLICY(PUSH)
|
|
|
|
IF(POLICY CMP0037)
|
|
|
|
CMAKE_POLICY(SET CMP0037 OLD)
|
|
|
|
ENDIF()
|
2017-10-05 04:34:48 +00:00
|
|
|
ADD_CUSTOM_TARGET(test)
|
2017-09-01 07:31:51 +00:00
|
|
|
CMAKE_POLICY(POP)
|
|
|
|
|
2017-10-05 04:34:48 +00:00
|
|
|
ADD_CUSTOM_TARGET(test_low_level
|
|
|
|
COMMAND env XDG_DATA_HOME=test/data XDG_CONFIG_HOME=test/home ./fish_tests
|
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
|
2017-12-21 20:48:17 +00:00
|
|
|
DEPENDS fish_tests
|
|
|
|
USES_TERMINAL)
|
2018-01-06 12:07:12 +00:00
|
|
|
ADD_DEPENDENCIES(test test_low_level tests_dir)
|
2017-10-05 04:34:48 +00:00
|
|
|
|
2017-09-01 07:31:51 +00:00
|
|
|
# Make the directory in which to run tests.
|
2017-10-05 04:34:48 +00:00
|
|
|
# Also symlink fish to where the tests expect it to be.
|
|
|
|
ADD_CUSTOM_TARGET(tests_buildroot_target
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E make_directory ${TEST_INSTALL_DIR}
|
|
|
|
COMMAND DESTDIR=${TEST_INSTALL_DIR} ${CMAKE_COMMAND}
|
|
|
|
--build ${CMAKE_CURRENT_BINARY_DIR} --target install
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E create_symlink
|
|
|
|
${TEST_INSTALL_DIR}/${CMAKE_INSTALL_PREFIX}
|
|
|
|
${TEST_ROOT_DIR}
|
|
|
|
DEPENDS fish)
|
|
|
|
|
|
|
|
# We need to symlink share/functions for the tests.
|
|
|
|
# This should be simplified.
|
|
|
|
ADD_CUSTOM_TARGET(symlink_functions
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E create_symlink
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/share/functions
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/share/functions)
|
|
|
|
ADD_DEPENDENCIES(tests_buildroot_target symlink_functions)
|
|
|
|
|
|
|
|
#
|
|
|
|
# Prep the environment for running the unit tests.
|
|
|
|
# test-prep: show-DESTDIR show-LN_S show-FISH_VERSION
|
|
|
|
# $v rm -rf test
|
|
|
|
# $v $(MKDIR_P) test/data test/home test/temp
|
|
|
|
# ifdef DESTDIR
|
|
|
|
# $v $(LN_S) $(DESTDIR) test/root
|
|
|
|
# else
|
|
|
|
# $v $(MKDIR_P) test/root
|
|
|
|
# endif
|
|
|
|
ADD_CUSTOM_TARGET(test_prep
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E remove_directory ${TEST_DIR}/data
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E remove_directory ${TEST_DIR}/home
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E remove_directory ${TEST_DIR}/temp
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E make_directory
|
|
|
|
${TEST_DIR}/data ${TEST_DIR}/home ${TEST_DIR}/temp
|
2017-12-21 20:48:17 +00:00
|
|
|
DEPENDS tests_buildroot_target
|
|
|
|
USES_TERMINAL)
|
2017-10-05 04:34:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
# test_high_level_test_deps = test_fishscript test_interactive test_invocation
|
|
|
|
# test_high_level: DESTDIR = $(PWD)/test/root/
|
|
|
|
# test_high_level: prefix = .
|
|
|
|
# test_high_level: test-prep install-force test_fishscript test_interactive test_invocation
|
|
|
|
# .PHONY: test_high_level
|
|
|
|
#
|
|
|
|
# test_invocation: $(call filter_up_to,test_invocation,$(active_test_goals))
|
|
|
|
# cd tests; ./invocation.sh
|
|
|
|
# .PHONY: test_invocation
|
|
|
|
ADD_CUSTOM_TARGET(test_invocation
|
|
|
|
COMMAND ./invocation.sh
|
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/tests/
|
2017-12-21 20:48:17 +00:00
|
|
|
DEPENDS test_prep test_low_level
|
|
|
|
USES_TERMINAL)
|
2017-10-05 04:34:48 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# test_fishscript: $(call filter_up_to,test_fishscript,$(active_test_goals))
|
|
|
|
# cd tests; ../test/root/bin/fish test.fish
|
|
|
|
# .PHONY: test_fishscript
|
|
|
|
|
|
|
|
ADD_CUSTOM_TARGET(test_fishscript
|
|
|
|
COMMAND cd tests && ${TEST_ROOT_DIR}/bin/fish test.fish
|
2017-12-21 20:48:17 +00:00
|
|
|
DEPENDS test_prep test_invocation
|
|
|
|
USES_TERMINAL)
|
2017-10-05 04:34:48 +00:00
|
|
|
#
|
|
|
|
# test_interactive: $(call filter_up_to,test_interactive,$(active_test_goals))
|
|
|
|
# cd tests; ../test/root/bin/fish interactive.fish
|
|
|
|
# .PHONY: test_interactive
|
|
|
|
|
|
|
|
ADD_CUSTOM_TARGET(test_high_level
|
|
|
|
DEPENDS test_invocation test_fishscript)
|
|
|
|
ADD_DEPENDENCIES(test test_high_level)
|
2017-10-05 04:40:58 +00:00
|
|
|
|
|
|
|
# Group test targets into a TestTargets folder
|
|
|
|
SET_PROPERTY(TARGET test test_low_level test_high_level tests_dir
|
|
|
|
test_invocation test_fishscript test_prep
|
2018-01-14 13:14:04 +00:00
|
|
|
tests_buildroot_target
|
2017-10-05 04:40:58 +00:00
|
|
|
symlink_functions
|
|
|
|
PROPERTY FOLDER cmake/TestTargets)
|