# Autogenerated file, run tools/build/setup_cmake.py to regenerate

include_directories(${ANN_INCLUDE_PATH}
        ${BOOST.FILESYSTEM_INCLUDE_PATH}
        ${BOOST.PROGRAMOPTIONS_INCLUDE_PATH}
        ${BOOST.RANDOM_INCLUDE_PATH}
        ${BOOST.SYSTEM_INCLUDE_PATH}
        ${CGAL_INCLUDE_PATH}
        ${GPERFTOOLS_INCLUDE_PATH}
        ${LOG4CXX_INCLUDE_PATH}
        ${TCMALLOC_HEAPCHECKER_INCLUDE_PATH}
        ${TCMALLOC_HEAPPROFILER_INCLUDE_PATH})
link_directories(${ANN_LINK_PATH}
        ${BOOST.FILESYSTEM_LINK_PATH}
        ${BOOST.PROGRAMOPTIONS_LINK_PATH}
        ${BOOST.RANDOM_LINK_PATH}
        ${BOOST.SYSTEM_LINK_PATH}
        ${CGAL_LINK_PATH}
        ${GPERFTOOLS_LINK_PATH}
        ${LOG4CXX_LINK_PATH}
        ${TCMALLOC_HEAPCHECKER_LINK_PATH}
        ${TCMALLOC_HEAPPROFILER_LINK_PATH})

set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${CONTAINER_CXX_FLAGS}")


File(GLOB runtimepytests "${PROJECT_BINARY_DIR}/test/container/test_*.py")

math(EXPR short_timeout "${IMP_TIMEOUT_FACTOR} * 5")
math(EXPR medium_timeout "${IMP_TIMEOUT_FACTOR} * 15")
math(EXPR expensive_timeout "${IMP_TIMEOUT_FACTOR} * 120")

# should make into function
foreach (test ${runtimepytests} ${PROJECT_SOURCE_DIR}/modules/container/test/test_all_pairs.py
${PROJECT_SOURCE_DIR}/modules/container/test/test_close_bipartite_pairs_score_state.py
${PROJECT_SOURCE_DIR}/modules/container/test/test_close_pairs_container_over_time.py
${PROJECT_SOURCE_DIR}/modules/container/test/test_close_pairs_container_rigid.py
${PROJECT_SOURCE_DIR}/modules/container/test/test_close_pairs_score_state.py
${PROJECT_SOURCE_DIR}/modules/container/test/test_connectivity_container.py
${PROJECT_SOURCE_DIR}/modules/container/test/test_consecutive_pair_container.py
${PROJECT_SOURCE_DIR}/modules/container/test/test_decomp.py
${PROJECT_SOURCE_DIR}/modules/container/test/test_distribute.py
${PROJECT_SOURCE_DIR}/modules/container/test/test_events.py
${PROJECT_SOURCE_DIR}/modules/container/test/test_exclusive_consecutive_pair_filter.py
${PROJECT_SOURCE_DIR}/modules/container/test/test_pair_restraint_2.py
${PROJECT_SOURCE_DIR}/modules/container/test/test_pred_restraint.py
${PROJECT_SOURCE_DIR}/modules/container/test/test_removes.py)
  GET_FILENAME_COMPONENT(name ${test} NAME)
  if(EXISTS "${PROJECT_BINARY_DIR}/test/container/${name}tests")
    FILE(READ "${PROJECT_BINARY_DIR}/test/container/${name}tests" contents)
    STRING(REGEX REPLACE ";" "\\\\;" contents "${contents}")
    STRING(REGEX REPLACE "\n" ";" contents "${contents}")
    foreach(testline ${contents})
      string(REGEX REPLACE "([A-Za-z0-9_]+\\.[A-Za-z0-9_]+) (.*)"
                           "\\1;\\2" split "${testline}")
      list(GET split 0 methname)
      list(GET split 1 docstring)
      add_test("container.${name}.${methname}" ${IMP_TEST_SETUP} python ${test} "${methname}")
      set_tests_properties("container.${name}.${methname}" PROPERTIES LABELS "IMP.container;test;length_short")
      set_tests_properties("container.${name}.${methname}" PROPERTIES MEASUREMENT "docstring=${docstring}")
      set_tests_properties("container.${name}.${methname}" PROPERTIES TIMEOUT ${short_timeout})
    endforeach()
  else()
    add_test("container.${name}" ${IMP_TEST_SETUP} python ${test})
    set_tests_properties("container.${name}" PROPERTIES LABELS "IMP.container;test;length_short")
    set_tests_properties("container.${name}" PROPERTIES TIMEOUT ${short_timeout})
    set_tests_properties("container.${name}" PROPERTIES COST 1)
  endif()
endforeach(test)

foreach (test )
  GET_FILENAME_COMPONENT(name ${test} NAME)
  if(EXISTS "${PROJECT_BINARY_DIR}/test/container/${name}tests")
    FILE(READ "${PROJECT_BINARY_DIR}/test/container/${name}tests" contents)
    STRING(REGEX REPLACE ";" "\\\\;" contents "${contents}")
    STRING(REGEX REPLACE "\n" ";" contents "${contents}")
    foreach(testline ${contents})
      string(REGEX REPLACE "([A-Za-z0-9_]+\\.[A-Za-z0-9_]+) (.*)"
                           "\\1;\\2" split "${testline}")
      list(GET split 0 methname)
      list(GET split 1 docstring)
      add_test("container.${name}.${methname}" ${IMP_TEST_SETUP} python ${test} "${methname}")
      set_tests_properties("container.${name}.${methname}" PROPERTIES LABELS "IMP.container;test;length_medium")
      set_tests_properties("container.${name}.${methname}" PROPERTIES MEASUREMENT "docstring=${docstring}")
      set_tests_properties("container.${name}.${methname}" PROPERTIES TIMEOUT ${medium_timeout})
    endforeach()
  else()
    add_test("container.${name}" ${IMP_TEST_SETUP} python ${test})
    set_tests_properties("container.${name}" PROPERTIES LABELS "IMP.container;test;length_medium")
    set_tests_properties("container.${name}" PROPERTIES TIMEOUT ${medium_timeout})
    set_tests_properties("container.${name}" PROPERTIES COST 2)
  endif()
endforeach(test)

foreach (test )
  GET_FILENAME_COMPONENT(name ${test} NAME)
  if(EXISTS "${PROJECT_BINARY_DIR}/test/container/${name}tests")
    FILE(READ "${PROJECT_BINARY_DIR}/test/container/${name}tests" contents)
    STRING(REGEX REPLACE ";" "\\\\;" contents "${contents}")
    STRING(REGEX REPLACE "\n" ";" contents "${contents}")
    foreach(testline ${contents})
      string(REGEX REPLACE "([A-Za-z0-9_]+\\.[A-Za-z0-9_]+) (.*)"
                           "\\1;\\2" split "${testline}")
      list(GET split 0 methname)
      list(GET split 1 docstring)
      add_test("container.${name}.${methname}" ${IMP_TEST_SETUP} python ${test} "${methname}")
      set_tests_properties("container.${name}.${methname}" PROPERTIES LABELS "IMP.container;test;length_expensive")
      set_tests_properties("container.${name}.${methname}" PROPERTIES MEASUREMENT "docstring=${docstring}")
      set_tests_properties("container.${name}.${methname}" PROPERTIES TIMEOUT ${expensive_timeout})
    endforeach()
  else()
    add_test("container.${name}" ${IMP_TEST_SETUP} python ${test})
    set_tests_properties("container.${name}" PROPERTIES LABELS "IMP.container;test;length_expensive")
    set_tests_properties("container.${name}" PROPERTIES TIMEOUT ${expensive_timeout})
    set_tests_properties("container.${name}" PROPERTIES COST 3)
  endif()
endforeach(test)

set(cpp_tests ${PROJECT_SOURCE_DIR}/modules/container/test/test_consecutive_pair_container.cpp)

foreach (test ${cpp_tests})
   GET_FILENAME_COMPONENT(name ${test} NAME)
   GET_FILENAME_COMPONENT(name_we ${test} NAME_WE)
   add_executable("container.${name}" ${test})
   target_link_libraries("container.${name}"     imp_container
    ${IMP_BASE_LIBRARY}
${IMP_CGAL_LIBRARY}
${IMP_ALGEBRA_LIBRARY}
${IMP_KERNEL_LIBRARY}
${IMP_DISPLAY_LIBRARY}
${IMP_SCORE_FUNCTOR_LIBRARY}
${IMP_CORE_LIBRARY}
    ${BOOST.FILESYSTEM_LIBRARIES}
${BOOST.PROGRAMOPTIONS_LIBRARIES}
${BOOST.SYSTEM_LIBRARIES}
${GPERFTOOLS_LIBRARIES}
${TCMALLOC_HEAPPROFILER_LIBRARIES}
${TCMALLOC_HEAPCHECKER_LIBRARIES}
${LOG4CXX_LIBRARIES}
${BOOST.RANDOM_LIBRARIES}
${CGAL_LIBRARIES}
${ANN_LIBRARIES})
   set_target_properties("container.${name}" PROPERTIES
                         RUNTIME_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}/test/container/"
                         OUTPUT_NAME ${name_we})
   add_test("container.${name}" ${IMP_TEST_SETUP}
            "${PROJECT_BINARY_DIR}/test/container/${name_we}${CMAKE_EXECUTABLE_SUFFIX}")
   set_tests_properties("container.${name}" PROPERTIES LABELS "IMP.container;test;length_short")
   set_tests_properties("container.${name}" PROPERTIES TIMEOUT ${short_timeout})
   set_tests_properties("container.${name}" PROPERTIES COST 1)
   set(executables ${executables} "container.${name}")
endforeach(test)


set(mdcpp_tests )

foreach (test ${mdcpp_tests})
   GET_FILENAME_COMPONENT(name ${test} NAME)
   GET_FILENAME_COMPONENT(name_we ${test} NAME_WE)
   add_executable("container.${name}" ${test})
   target_link_libraries("container.${name}"     imp_container
    ${IMP_BASE_LIBRARY}
${IMP_CGAL_LIBRARY}
${IMP_ALGEBRA_LIBRARY}
${IMP_KERNEL_LIBRARY}
${IMP_DISPLAY_LIBRARY}
${IMP_SCORE_FUNCTOR_LIBRARY}
${IMP_CORE_LIBRARY}
    ${BOOST.FILESYSTEM_LIBRARIES}
${BOOST.PROGRAMOPTIONS_LIBRARIES}
${BOOST.SYSTEM_LIBRARIES}
${GPERFTOOLS_LIBRARIES}
${TCMALLOC_HEAPPROFILER_LIBRARIES}
${TCMALLOC_HEAPCHECKER_LIBRARIES}
${LOG4CXX_LIBRARIES}
${BOOST.RANDOM_LIBRARIES}
${CGAL_LIBRARIES}
${ANN_LIBRARIES})
   set_target_properties("container.${name}" PROPERTIES
                         RUNTIME_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}/test/container/"
                         OUTPUT_NAME ${name_we})
   add_test("container.${name}" ${IMP_TEST_SETUP}
            "${PROJECT_BINARY_DIR}/test/container/${name_we}${CMAKE_EXECUTABLE_SUFFIX}")
   set_tests_properties("container.${name}" PROPERTIES LABELS "IMP.container;test;length_medium")
   set_tests_properties("container.${name}" PROPERTIES TIMEOUT ${medium_timeout})
   set_tests_properties("container.${name}" PROPERTIES COST 1)
   set(executables ${executables} "container.${name}")
endforeach(test)

set(excpp_tests )

foreach (test ${excpp_tests})
   GET_FILENAME_COMPONENT(name ${test} NAME)
   GET_FILENAME_COMPONENT(name_we ${test} NAME_WE)
   add_executable("container.${name}" ${test})
   target_link_libraries("container.${name}"     imp_container
    ${IMP_BASE_LIBRARY}
${IMP_CGAL_LIBRARY}
${IMP_ALGEBRA_LIBRARY}
${IMP_KERNEL_LIBRARY}
${IMP_DISPLAY_LIBRARY}
${IMP_SCORE_FUNCTOR_LIBRARY}
${IMP_CORE_LIBRARY}
    ${BOOST.FILESYSTEM_LIBRARIES}
${BOOST.PROGRAMOPTIONS_LIBRARIES}
${BOOST.SYSTEM_LIBRARIES}
${GPERFTOOLS_LIBRARIES}
${TCMALLOC_HEAPPROFILER_LIBRARIES}
${TCMALLOC_HEAPCHECKER_LIBRARIES}
${LOG4CXX_LIBRARIES}
${BOOST.RANDOM_LIBRARIES}
${CGAL_LIBRARIES}
${ANN_LIBRARIES})
   set_target_properties("container.${name}" PROPERTIES
                         RUNTIME_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}/test/container/"
                         OUTPUT_NAME ${name_we})
   add_test("container.${name}" ${IMP_TEST_SETUP}
            "${PROJECT_BINARY_DIR}/test/container/${name_we}${CMAKE_EXECUTABLE_SUFFIX}")
   set_tests_properties("container.${name}" PROPERTIES LABELS "IMP.container;test;length_expensive")
   set_tests_properties("container.${name}" PROPERTIES TIMEOUT ${expensive_timeout})
   set_tests_properties("container.${name}" PROPERTIES COST 1)
   set(executables ${executables} "container.${name}")
endforeach(test)

add_custom_target("imp_container_tests" ALL DEPENDS ${executables})
