123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- #
- # Licensed to the Apache Software Foundation (ASF) under one
- # or more contributor license agreements. See the NOTICE file
- # distributed with this work for additional information
- # regarding copyright ownership. The ASF licenses this file
- # to you under the Apache License, Version 2.0 (the
- # "License"); you may not use this file except in compliance
- # with the License. You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- #
- find_package(Boost REQUIRED COMPONENTS date_time)
- # Delegate some functionality to libhdfs, until libhdfspp is complete.
- set (LIBHDFS_SRC_DIR ../../libhdfs)
- set (LIBHDFS_TESTS_DIR ../../libhdfs-tests)
- set (LIBHDFSPP_SRC_DIR ..)
- set (LIBHDFSPP_LIB_DIR ${LIBHDFSPP_SRC_DIR}/lib)
- set (LIBHDFSPP_BINDING_C ${LIBHDFSPP_LIB_DIR}/bindings/c)
- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-missing-field-initializers")
- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-missing-field-initializers")
- include_directories(
- ${GENERATED_JAVAH}
- ${CMAKE_CURRENT_LIST_DIR}
- ${CMAKE_BINARY_DIR}
- ${JNI_INCLUDE_DIRS}
- ${LIBHDFS_SRC_DIR}/include
- ${LIBHDFS_SRC_DIR}/..
- ${LIBHDFS_SRC_DIR}
- ${OS_DIR}
- )
- add_library(test_common_obj OBJECT mock_connection.cc)
- add_library(test_common $<TARGET_OBJECTS:test_common_obj>)
- set(PROTOBUF_IMPORT_DIRS ${PROTO_HADOOP_TEST_DIR})
- protobuf_generate_cpp(PROTO_TEST_SRCS PROTO_TEST_HDRS
- ${PROTO_HADOOP_TEST_DIR}/test.proto
- ${PROTO_HADOOP_TEST_DIR}/test_rpc_service.proto
- )
- # Shamelessly stolen from
- # http://stackoverflow.com/questions/9303711/how-do-i-make-ctest-run-a-program-with-valgrind-without-dart
- function(add_memcheck_test name binary)
- add_test(${name} ${binary} ${ARGN})
- if(NOT MEMORYCHECK_COMMAND MATCHES "MEMORYCHECK_COMMAND-NOTFOUND" AND NOT SKIP_VALGRIND)
- set(memcheck_command "${MEMORYCHECK_COMMAND} ${MEMORYCHECK_COMMAND_OPTIONS}")
- separate_arguments(memcheck_command)
- add_test(memcheck_${name} ${memcheck_command} ./${binary} ${ARGN})
- endif()
- endfunction(add_memcheck_test)
- #
- #
- # UNIT TESTS - TEST SELECTED PARTS OF THE LIBRARY
- #
- #
- add_subdirectory(x-platform)
- add_subdirectory(utils)
- add_subdirectory(tools)
- add_executable(uri_test uri_test.cc)
- target_link_libraries(uri_test common gmock_main ${CMAKE_THREAD_LIBS_INIT})
- add_memcheck_test(uri uri_test)
- add_executable(remote_block_reader_test remote_block_reader_test.cc)
- target_link_libraries(remote_block_reader_test test_common reader proto common connection ${PROTOBUF_LIBRARIES} ${OPENSSL_LIBRARIES} gmock_main ${CMAKE_THREAD_LIBS_INIT})
- add_memcheck_test(remote_block_reader remote_block_reader_test)
- add_executable(sasl_digest_md5_test sasl_digest_md5_test.cc)
- target_link_libraries(sasl_digest_md5_test common ${PROTOBUF_LIBRARIES} ${OPENSSL_LIBRARIES} gmock_main ${CMAKE_THREAD_LIBS_INIT})
- add_memcheck_test(sasl_digest_md5 sasl_digest_md5_test)
- add_executable(retry_policy_test retry_policy_test.cc)
- target_link_libraries(retry_policy_test common gmock_main ${CMAKE_THREAD_LIBS_INIT})
- add_memcheck_test(retry_policy retry_policy_test)
- include_directories(${CMAKE_CURRENT_BINARY_DIR})
- add_executable(rpc_engine_test rpc_engine_test.cc ${PROTO_TEST_SRCS} ${PROTO_TEST_HDRS})
- target_link_libraries(rpc_engine_test test_common rpc proto common ${PROTOBUF_LIBRARIES} ${OPENSSL_LIBRARIES} ${SASL_LIBRARIES} gmock_main ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})
- add_memcheck_test(rpc_engine rpc_engine_test)
- add_executable(bad_datanode_test bad_datanode_test.cc)
- target_link_libraries(bad_datanode_test rpc reader proto fs bindings_c rpc proto common reader connection ${PROTOBUF_LIBRARIES} ${OPENSSL_LIBRARIES} ${SASL_LIBRARIES} gmock_main ${CMAKE_THREAD_LIBS_INIT})
- add_memcheck_test(bad_datanode bad_datanode_test)
- add_executable(node_exclusion_test node_exclusion_test.cc)
- target_link_libraries(node_exclusion_test fs gmock_main common ${PROTOBUF_LIBRARIES} ${OPENSSL_LIBRARIES} ${SASL_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
- add_memcheck_test(node_exclusion node_exclusion_test)
- add_executable(configuration_test $<TARGET_OBJECTS:test_utils> configuration_test.cc)
- target_include_directories(configuration_test PRIVATE ../lib)
- target_link_libraries(configuration_test common gmock_main ${CMAKE_THREAD_LIBS_INIT})
- add_memcheck_test(configuration configuration_test)
- add_executable(hdfs_configuration_test $<TARGET_OBJECTS:test_utils> hdfs_configuration_test.cc)
- target_include_directories(hdfs_configuration_test PRIVATE ../lib)
- target_link_libraries(hdfs_configuration_test common gmock_main ${CMAKE_THREAD_LIBS_INIT})
- add_memcheck_test(hdfs_configuration hdfs_configuration_test)
- add_executable(hdfspp_errors_test hdfspp_errors.cc)
- target_link_libraries(hdfspp_errors_test common gmock_main bindings_c fs rpc proto common reader connection ${PROTOBUF_LIBRARIES} ${OPENSSL_LIBRARIES} ${SASL_LIBRARIES} gmock_main ${CMAKE_THREAD_LIBS_INIT})
- add_memcheck_test(hdfspp_errors hdfspp_errors_test)
- add_executable(hdfs_builder_test $<TARGET_OBJECTS:test_utils> hdfs_builder_test.cc)
- target_include_directories(hdfs_builder_test PRIVATE ../lib)
- target_link_libraries(hdfs_builder_test test_common gmock_main bindings_c fs rpc proto common reader connection ${PROTOBUF_LIBRARIES} ${OPENSSL_LIBRARIES} ${SASL_LIBRARIES} gmock_main ${CMAKE_THREAD_LIBS_INIT})
- add_memcheck_test(hdfs_builder_test hdfs_builder_test)
- add_executable(logging_test logging_test.cc $<TARGET_OBJECTS:x_platform_obj>)
- target_include_directories(logging_test PRIVATE ../lib)
- target_link_libraries(logging_test common gmock_main bindings_c fs rpc proto common reader connection ${PROTOBUF_LIBRARIES} ${OPENSSL_LIBRARIES} ${SASL_LIBRARIES} gmock_main ${CMAKE_THREAD_LIBS_INIT})
- add_memcheck_test(logging_test logging_test)
- add_executable(hdfs_ioservice_test hdfs_ioservice_test.cc)
- target_link_libraries(hdfs_ioservice_test fs gmock_main common ${PROTOBUF_LIBRARIES} ${OPENSSL_LIBRARIES} ${SASL_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
- add_memcheck_test(hdfs_ioservice hdfs_ioservice_test)
- add_executable(user_lock_test user_lock_test.cc)
- target_link_libraries(user_lock_test fs gmock_main common ${PROTOBUF_LIBRARIES} ${OPENSSL_LIBRARIES} ${SASL_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
- add_memcheck_test(user_lock user_lock_test)
- add_executable(hdfs_config_connect_bugs_test $<TARGET_OBJECTS:test_utils> hdfs_config_connect_bugs.cc)
- target_include_directories(hdfs_config_connect_bugs_test PRIVATE ../lib)
- target_link_libraries(hdfs_config_connect_bugs_test common gmock_main bindings_c fs rpc proto common reader connection ${PROTOBUF_LIBRARIES} ${OPENSSL_LIBRARIES} ${SASL_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
- add_memcheck_test(hdfs_config_connect_bugs hdfs_config_connect_bugs_test)
- #
- #
- # INTEGRATION TESTS - TESTS THE FULL LIBRARY AGAINST ACTUAL SERVERS
- #
- #
- # This test requires a great deal of Hadoop Java infrastructure to run.
- #
- if(HADOOP_BUILD)
- include_directories (
- #TODO: Put this in a variable up top and pull it out here
- ${CMAKE_CURRENT_SOURCE_DIR}/../../libhdfs-tests/
- )
- add_library(hdfspp_test_shim_static STATIC $<TARGET_OBJECTS:x_platform_obj> hdfs_shim.c libhdfs_wrapper.c libhdfspp_wrapper.cc)
- add_dependencies(hdfspp_test_shim_static proto)
- add_library(hdfspp_test_static STATIC $<TARGET_OBJECTS:x_platform_obj> ${LIBHDFSPP_BINDING_C}/hdfs.cc)
- add_dependencies(hdfspp_test_static proto)
- # TODO: get all of the mini dfs library bits here in one place
- # add_library(hdfspp_mini_cluster native_mini_dfs ${JAVA_JVM_LIBRARY} )
- #TODO: Link against full library rather than just parts
- build_libhdfs_test(libhdfs_threaded hdfspp_test_shim_static expect.c test_libhdfs_threaded.c ${OS_DIR}/thread.c)
- link_libhdfs_test(libhdfs_threaded hdfspp_test_shim_static fs reader rpc proto common connection ${PROTOBUF_LIBRARIES} ${OPENSSL_LIBRARIES} native_mini_dfs ${JAVA_JVM_LIBRARY} ${SASL_LIBRARIES} )
- add_libhdfs_test (libhdfs_threaded hdfspp_test_shim_static)
- build_libhdfs_test(hdfspp_mini_dfs_smoke hdfspp_test_shim_static ${CMAKE_CURRENT_LIST_DIR}/hdfspp_mini_dfs_smoke.cc)
- link_libhdfs_test (hdfspp_mini_dfs_smoke hdfspp_test_shim_static fs reader rpc proto common connection gmock_main ${PROTOBUF_LIBRARIES} ${OPENSSL_LIBRARIES} native_mini_dfs ${JAVA_JVM_LIBRARY} ${SASL_LIBRARIES})
- add_libhdfs_test (hdfspp_mini_dfs_smoke hdfspp_test_shim_static)
- if (NOT MSVC)
- build_libhdfs_test(libhdfs_mini_stress_valgrind hdfspp_test_static expect.c test_libhdfs_mini_stress.c ${OS_DIR}/thread.c)
- link_libhdfs_test(libhdfs_mini_stress_valgrind hdfspp_test_static fs reader rpc proto common connection ${PROTOBUF_LIBRARIES} ${OPENSSL_LIBRARIES} native_mini_dfs ${JAVA_JVM_LIBRARY} ${SASL_LIBRARIES})
- add_memcheck_test(libhdfs_mini_stress_valgrind_hdfspp_test_static libhdfs_mini_stress_valgrind_hdfspp_test_static)
- set_target_properties(libhdfs_mini_stress_valgrind_hdfspp_test_static PROPERTIES COMPILE_DEFINITIONS "VALGRIND")
- endif (NOT MSVC)
- build_libhdfs_test(libhdfs_mini_stress hdfspp_test_shim_static expect.c test_libhdfs_mini_stress.c ${OS_DIR}/thread.c)
- link_libhdfs_test(libhdfs_mini_stress hdfspp_test_shim_static fs reader rpc proto common connection ${PROTOBUF_LIBRARIES} ${OPENSSL_LIBRARIES} native_mini_dfs ${JAVA_JVM_LIBRARY} ${SASL_LIBRARIES})
- add_libhdfs_test(libhdfs_mini_stress hdfspp_test_shim_static)
- build_libhdfs_test(hdfs_ext hdfspp_test_shim_static ${CMAKE_CURRENT_LIST_DIR}/hdfs_ext_test.cc)
- link_libhdfs_test (hdfs_ext hdfspp_test_shim_static hdfspp_static gmock_main native_mini_dfs ${JAVA_JVM_LIBRARY} ${SASL_LIBRARIES})
- add_libhdfs_test (hdfs_ext hdfspp_test_shim_static)
- #build_libhdfs_test(hdfs_config_connect_bugs hdfspp_test_shim_static ${CMAKE_CURRENT_LIST_DIR}/hdfs_config_connect_bugs.cc)
- #link_libhdfs_test (hdfs_config_connect_bugs hdfspp_test_shim_static hdfspp_static gmock_main native_mini_dfs ${JAVA_JVM_LIBRARY} ${SASL_LIBRARIES})
- #add_libhdfs_test (hdfs_config_connect_bugs hdfspp_test_shim_static)
- endif(HADOOP_BUILD)
|