FindCxxTest.cmake 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. #.rst:
  2. # FindCxxTest
  3. # -----------
  4. #
  5. # Find CxxTest
  6. #
  7. # Find the CxxTest suite and declare a helper macro for creating unit
  8. # tests and integrating them with CTest. For more details on CxxTest
  9. # see http://cxxtest.tigris.org
  10. #
  11. # INPUT Variables
  12. #
  13. # ::
  14. #
  15. # CXXTEST_USE_PYTHON [deprecated since 1.3]
  16. # Only used in the case both Python & Perl
  17. # are detected on the system to control
  18. # which CxxTest code generator is used.
  19. # Valid only for CxxTest version 3.
  20. #
  21. #
  22. #
  23. # ::
  24. #
  25. # NOTE: In older versions of this Find Module,
  26. # this variable controlled if the Python test
  27. # generator was used instead of the Perl one,
  28. # regardless of which scripting language the
  29. # user had installed.
  30. #
  31. #
  32. #
  33. # ::
  34. #
  35. # CXXTEST_TESTGEN_ARGS (since CMake 2.8.3)
  36. # Specify a list of options to pass to the CxxTest code
  37. # generator. If not defined, --error-printer is
  38. # passed.
  39. #
  40. #
  41. #
  42. # OUTPUT Variables
  43. #
  44. # ::
  45. #
  46. # CXXTEST_FOUND
  47. # True if the CxxTest framework was found
  48. # CXXTEST_INCLUDE_DIRS
  49. # Where to find the CxxTest include directory
  50. # CXXTEST_PERL_TESTGEN_EXECUTABLE
  51. # The perl-based test generator
  52. # CXXTEST_PYTHON_TESTGEN_EXECUTABLE
  53. # The python-based test generator
  54. # CXXTEST_TESTGEN_EXECUTABLE (since CMake 2.8.3)
  55. # The test generator that is actually used (chosen using user preferences
  56. # and interpreters found in the system)
  57. # CXXTEST_TESTGEN_INTERPRETER (since CMake 2.8.3)
  58. # The full path to the Perl or Python executable on the system
  59. #
  60. #
  61. #
  62. # MACROS for optional use by CMake users:
  63. #
  64. # ::
  65. #
  66. # CXXTEST_ADD_TEST(<test_name> <gen_source_file> <input_files_to_testgen...>)
  67. # Creates a CxxTest runner and adds it to the CTest testing suite
  68. # Parameters:
  69. # test_name The name of the test
  70. # gen_source_file The generated source filename to be
  71. # generated by CxxTest
  72. # input_files_to_testgen The list of header files containing the
  73. # CxxTest::TestSuite's to be included in
  74. # this runner
  75. #
  76. #
  77. #
  78. # ::
  79. #
  80. # #==============
  81. # Example Usage:
  82. #
  83. #
  84. #
  85. # ::
  86. #
  87. # find_package(CxxTest)
  88. # if(CXXTEST_FOUND)
  89. # include_directories(${CXXTEST_INCLUDE_DIR})
  90. # enable_testing()
  91. #
  92. #
  93. #
  94. # ::
  95. #
  96. # CXXTEST_ADD_TEST(unittest_foo foo_test.cc
  97. # ${CMAKE_CURRENT_SOURCE_DIR}/foo_test.h)
  98. # target_link_libraries(unittest_foo foo) # as needed
  99. # endif()
  100. #
  101. #
  102. #
  103. # ::
  104. #
  105. # This will (if CxxTest is found):
  106. # 1. Invoke the testgen executable to autogenerate foo_test.cc in the
  107. # binary tree from "foo_test.h" in the current source directory.
  108. # 2. Create an executable and test called unittest_foo.
  109. #
  110. #
  111. #
  112. # ::
  113. #
  114. # #=============
  115. # Example foo_test.h:
  116. #
  117. #
  118. #
  119. # ::
  120. #
  121. # #include <cxxtest/TestSuite.h>
  122. #
  123. #
  124. #
  125. # ::
  126. #
  127. # class MyTestSuite : public CxxTest::TestSuite
  128. # {
  129. # public:
  130. # void testAddition( void )
  131. # {
  132. # TS_ASSERT( 1 + 1 > 1 );
  133. # TS_ASSERT_EQUALS( 1 + 1, 2 );
  134. # }
  135. # };
  136. #=============================================================================
  137. # Copyright 2008-2010 Kitware, Inc.
  138. # Copyright 2008-2010 Philip Lowman <philip@yhbt.com>
  139. #
  140. # Distributed under the OSI-approved BSD License (the "License");
  141. # see accompanying file Copyright.txt for details.
  142. #
  143. # This software is distributed WITHOUT ANY WARRANTY; without even the
  144. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  145. # See the License for more information.
  146. #=============================================================================
  147. # (To distribute this file outside of CMake, substitute the full
  148. # License text for the above reference.)
  149. # Version 1.4 (11/18/10) (CMake 2.8.4)
  150. # Issue 11384: Added support to the CXX_ADD_TEST macro so header
  151. # files (containing the tests themselves) show up in
  152. # Visual Studio and other IDEs.
  153. #
  154. # Version 1.3 (8/19/10) (CMake 2.8.3)
  155. # Included patch by Simone Rossetto to check if either Python or Perl
  156. # are present in the system. Whichever intepreter that is detected
  157. # is now used to run the test generator program. If both interpreters
  158. # are detected, the CXXTEST_USE_PYTHON variable is obeyed.
  159. #
  160. # Also added support for CXXTEST_TESTGEN_ARGS, for manually specifying
  161. # options to the CxxTest code generator.
  162. # Version 1.2 (3/2/08)
  163. # Included patch from Tyler Roscoe to have the perl & python binaries
  164. # detected based on CXXTEST_INCLUDE_DIR
  165. # Version 1.1 (2/9/08)
  166. # Clarified example to illustrate need to call target_link_libraries()
  167. # Changed commands to lowercase
  168. # Added licensing info
  169. # Version 1.0 (1/8/08)
  170. # Fixed CXXTEST_INCLUDE_DIRS so it will work properly
  171. # Eliminated superfluous CXXTEST_FOUND assignment
  172. # Cleaned up and added more documentation
  173. #=============================================================
  174. # CXXTEST_ADD_TEST (public macro)
  175. #=============================================================
  176. macro(CXXTEST_ADD_TEST _cxxtest_testname _cxxtest_outfname)
  177. set(_cxxtest_real_outfname ${CMAKE_CURRENT_BINARY_DIR}/${_cxxtest_outfname})
  178. add_custom_command(
  179. OUTPUT ${_cxxtest_real_outfname}
  180. DEPENDS ${ARGN}
  181. COMMAND ${CXXTEST_TESTGEN_INTERPRETER}
  182. ${CXXTEST_TESTGEN_EXECUTABLE} ${CXXTEST_TESTGEN_ARGS} -o ${_cxxtest_real_outfname} ${ARGN}
  183. )
  184. set_source_files_properties(${_cxxtest_real_outfname} PROPERTIES GENERATED true)
  185. add_executable(${_cxxtest_testname} ${_cxxtest_real_outfname} ${ARGN})
  186. if(CMAKE_RUNTIME_OUTPUT_DIRECTORY)
  187. add_test(${_cxxtest_testname} ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${_cxxtest_testname})
  188. elseif(EXECUTABLE_OUTPUT_PATH)
  189. add_test(${_cxxtest_testname} ${EXECUTABLE_OUTPUT_PATH}/${_cxxtest_testname})
  190. else()
  191. add_test(${_cxxtest_testname} ${CMAKE_CURRENT_BINARY_DIR}/${_cxxtest_testname})
  192. endif()
  193. endmacro()
  194. #=============================================================
  195. # main()
  196. #=============================================================
  197. if(NOT DEFINED CXXTEST_TESTGEN_ARGS)
  198. set(CXXTEST_TESTGEN_ARGS --error-printer)
  199. endif()
  200. find_package(PythonInterp QUIET)
  201. find_package(Perl QUIET)
  202. find_path(CXXTEST_INCLUDE_DIR cxxtest/TestSuite.h)
  203. find_program(CXXTEST_PYTHON_TESTGEN_EXECUTABLE
  204. NAMES cxxtestgen cxxtestgen.py
  205. PATHS ${CXXTEST_INCLUDE_DIR})
  206. find_program(CXXTEST_PERL_TESTGEN_EXECUTABLE cxxtestgen.pl
  207. PATHS ${CXXTEST_INCLUDE_DIR})
  208. if(PYTHONINTERP_FOUND OR PERL_FOUND)
  209. include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
  210. if(PYTHONINTERP_FOUND AND (CXXTEST_USE_PYTHON OR NOT PERL_FOUND OR NOT DEFINED CXXTEST_USE_PYTHON))
  211. set(CXXTEST_TESTGEN_EXECUTABLE ${CXXTEST_PYTHON_TESTGEN_EXECUTABLE})
  212. set(CXXTEST_TESTGEN_INTERPRETER ${PYTHON_EXECUTABLE})
  213. FIND_PACKAGE_HANDLE_STANDARD_ARGS(CxxTest DEFAULT_MSG
  214. CXXTEST_INCLUDE_DIR CXXTEST_PYTHON_TESTGEN_EXECUTABLE)
  215. elseif(PERL_FOUND)
  216. set(CXXTEST_TESTGEN_EXECUTABLE ${CXXTEST_PERL_TESTGEN_EXECUTABLE})
  217. set(CXXTEST_TESTGEN_INTERPRETER ${PERL_EXECUTABLE})
  218. FIND_PACKAGE_HANDLE_STANDARD_ARGS(CxxTest DEFAULT_MSG
  219. CXXTEST_INCLUDE_DIR CXXTEST_PERL_TESTGEN_EXECUTABLE)
  220. endif()
  221. if(CXXTEST_FOUND)
  222. set(CXXTEST_INCLUDE_DIRS ${CXXTEST_INCLUDE_DIR})
  223. endif()
  224. else()
  225. set(CXXTEST_FOUND false)
  226. if(NOT CxxTest_FIND_QUIETLY)
  227. if(CxxTest_FIND_REQUIRED)
  228. message(FATAL_ERROR "Neither Python nor Perl found, cannot use CxxTest, aborting!")
  229. else()
  230. message(STATUS "Neither Python nor Perl found, CxxTest will not be used.")
  231. endif()
  232. endif()
  233. endif()