blob: 9913f6c92ecf8a6bdb59efdeb326b9d0c8030062 [file] [log] [blame]
Pascal Bachd5f87e12014-12-12 15:59:17 +01001#
2# Licensed to the Apache Software Foundation (ASF) under one
3# or more contributor license agreements. See the NOTICE file
4# distributed with this work for additional information
5# regarding copyright ownership. The ASF licenses this file
6# to you under the Apache License, Version 2.0 (the
7# "License"); you may not use this file except in compliance
8# with the License. You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing,
13# software distributed under the License is distributed on an
14# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15# KIND, either express or implied. See the License for the
16# specific language governing permissions and limitations
17# under the License.
18#
19
Pascal Bachd5f87e12014-12-12 15:59:17 +010020# Find required packages
21set(Boost_USE_STATIC_LIBS ON) # Force the use of static boost test framework
Jim Kingb0b710a2015-07-28 13:31:27 -040022find_package(Boost 1.53.0 REQUIRED COMPONENTS chrono filesystem system thread unit_test_framework)
Nobuaki Sukegawac444fb52015-01-02 23:16:55 +090023include_directories(SYSTEM "${Boost_INCLUDE_DIRS}")
Pascal Bachd5f87e12014-12-12 15:59:17 +010024
25#Make sure gen-cpp files can be included
26include_directories("${CMAKE_CURRENT_BINARY_DIR}")
27
28# Create the thrift C++ test library
29set(testgencpp_SOURCES
30 gen-cpp/DebugProtoTest_types.cpp
31 gen-cpp/DebugProtoTest_types.h
32 gen-cpp/EnumTest_types.cpp
33 gen-cpp/EnumTest_types.h
34 gen-cpp/OptionalRequiredTest_types.cpp
35 gen-cpp/OptionalRequiredTest_types.h
36 gen-cpp/Recursive_types.cpp
37 gen-cpp/Recursive_types.h
38 gen-cpp/ThriftTest_types.cpp
39 gen-cpp/ThriftTest_types.h
40 gen-cpp/TypedefTest_types.cpp
41 gen-cpp/TypedefTest_types.h
42 ThriftTest_extras.cpp
43 DebugProtoTest_extras.cpp
44)
45
46add_library(testgencpp STATIC ${testgencpp_SOURCES})
Pascal Bachd5f87e12014-12-12 15:59:17 +010047
Nobuaki Sukegawa6304a532014-12-18 01:30:58 +090048set(testgencpp_cob_SOURCES
Pascal Bachd5f87e12014-12-12 15:59:17 +010049 gen-cpp/ChildService.cpp
50 gen-cpp/ChildService.h
Ben Craig1684c422015-04-24 08:52:44 -050051 gen-cpp/EmptyService.cpp
52 gen-cpp/EmptyService.h
Pascal Bachd5f87e12014-12-12 15:59:17 +010053 gen-cpp/ParentService.cpp
54 gen-cpp/ParentService.h
55 gen-cpp/proc_types.cpp
56 gen-cpp/proc_types.h
57)
Nobuaki Sukegawa6304a532014-12-18 01:30:58 +090058add_library(testgencpp_cob STATIC ${testgencpp_cob_SOURCES})
Pascal Bachd5f87e12014-12-12 15:59:17 +010059
60
61add_executable(Benchmark Benchmark.cpp)
62target_link_libraries(Benchmark testgencpp)
Jim King9de9b1f2015-04-30 16:03:34 -040063LINK_AGAINST_THRIFT_LIBRARY(Benchmark thrift)
Pascal Bachd5f87e12014-12-12 15:59:17 +010064add_test(NAME Benchmark COMMAND Benchmark)
65
66set(UnitTest_SOURCES
67 UnitTestMain.cpp
68 TMemoryBufferTest.cpp
69 TBufferBaseTest.cpp
70 Base64Test.cpp
71 ToStringTest.cpp
72 TypedefTest.cpp
Roger Meier3815e0b2015-04-04 16:26:30 +020073 TServerSocketTest.cpp
Ben Craig1684c422015-04-24 08:52:44 -050074 TServerTransportTest.cpp
Pascal Bachd5f87e12014-12-12 15:59:17 +010075)
76
Roger Meiera6b66332015-05-15 15:21:50 +020077if(NOT WITH_BOOSTTHREADS AND NOT WITH_STDTHREADS AND NOT MSVC)
Pascal Bachd5f87e12014-12-12 15:59:17 +010078 list(APPEND UnitTest_SOURCES RWMutexStarveTest.cpp)
79endif()
80
81add_executable(UnitTests ${UnitTest_SOURCES})
Jim King9de9b1f2015-04-30 16:03:34 -040082target_link_libraries(UnitTests testgencpp ${Boost_LIBRARIES})
83LINK_AGAINST_THRIFT_LIBRARY(UnitTests thrift)
Pascal Bachd5f87e12014-12-12 15:59:17 +010084add_test(NAME UnitTests COMMAND UnitTests)
ben-craigfae08e72015-07-15 11:34:47 -050085if ( MSVC )
86 # Disable C4503: decorated name length exceeded, name was truncated
87 # 'insanity' results in very long decorated names
88 set_property( TARGET UnitTests APPEND_STRING PROPERTY COMPILE_FLAGS /wd4503 )
89endif ( MSVC )
Pascal Bachd5f87e12014-12-12 15:59:17 +010090
ben-craigaf2d9c82015-07-16 08:11:21 -050091
92set( TInterruptTest_SOURCES TSocketInterruptTest.cpp )
93if (WIN32)
94 list(APPEND TInterruptTest_SOURCES
95 TPipeInterruptTest.cpp
96 )
97endif()
98add_executable(TInterruptTest ${TInterruptTest_SOURCES})
99target_link_libraries(TInterruptTest
Ben Craig1684c422015-04-24 08:52:44 -0500100 testgencpp
101 ${Boost_LIBRARIES}
Ben Craig1684c422015-04-24 08:52:44 -0500102)
ben-craigaf2d9c82015-07-16 08:11:21 -0500103LINK_AGAINST_THRIFT_LIBRARY(TInterruptTest thrift)
Thomas Bartelmess9e78ed82015-05-01 13:57:44 -0400104if (NOT MSVC AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
ben-craigaf2d9c82015-07-16 08:11:21 -0500105target_link_libraries(TInterruptTest -lrt)
Ben Craig1684c422015-04-24 08:52:44 -0500106endif ()
ben-craigaf2d9c82015-07-16 08:11:21 -0500107add_test(NAME TInterruptTest COMMAND TInterruptTest)
Ben Craig1684c422015-04-24 08:52:44 -0500108
109add_executable(TServerIntegrationTest TServerIntegrationTest.cpp)
110target_link_libraries(TServerIntegrationTest
111 testgencpp_cob
112 ${Boost_LIBRARIES}
113)
Jim King9de9b1f2015-04-30 16:03:34 -0400114LINK_AGAINST_THRIFT_LIBRARY(TServerIntegrationTest thrift)
Thomas Bartelmess9e78ed82015-05-01 13:57:44 -0400115if (NOT MSVC AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
Ben Craig1684c422015-04-24 08:52:44 -0500116target_link_libraries(TServerIntegrationTest -lrt)
117endif ()
118add_test(NAME TServerIntegrationTest COMMAND TServerIntegrationTest)
Pascal Bachd5f87e12014-12-12 15:59:17 +0100119
Jim Kingb0b710a2015-07-28 13:31:27 -0400120add_executable(SecurityTest SecurityTest.cpp)
121target_link_libraries(SecurityTest
122 testgencpp
123 ${Boost_LIBRARIES}
124)
125LINK_AGAINST_THRIFT_LIBRARY(SecurityTest thrift)
126if (NOT MSVC AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
127target_link_libraries(SecurityTest -lrt)
128endif ()
129add_test(NAME SecurityTest COMMAND SecurityTest "${CMAKE_CURRENT_SOURCE_DIR}/../../../test/keys")
130
Pascal Bachd5f87e12014-12-12 15:59:17 +0100131if(WITH_ZLIB)
132add_executable(TransportTest TransportTest.cpp)
133target_link_libraries(TransportTest
134 testgencpp
Pascal Bachd5f87e12014-12-12 15:59:17 +0100135 ${Boost_LIBRARIES}
136 ${ZLIB_LIBRARIES}
137)
Jim King9de9b1f2015-04-30 16:03:34 -0400138LINK_AGAINST_THRIFT_LIBRARY(TransportTest thrift)
139LINK_AGAINST_THRIFT_LIBRARY(TransportTest thriftz)
Pascal Bachd5f87e12014-12-12 15:59:17 +0100140add_test(NAME TransportTest COMMAND TransportTest)
141
142add_executable(ZlibTest ZlibTest.cpp)
143target_link_libraries(ZlibTest
144 testgencpp
Pascal Bachd5f87e12014-12-12 15:59:17 +0100145 ${Boost_LIBRARIES}
146 ${ZLIB_LIBRARIES}
147)
Jim King9de9b1f2015-04-30 16:03:34 -0400148LINK_AGAINST_THRIFT_LIBRARY(ZlibTest thrift)
149LINK_AGAINST_THRIFT_LIBRARY(ZlibTest thriftz)
Pascal Bachd5f87e12014-12-12 15:59:17 +0100150add_test(NAME ZlibTest COMMAND ZlibTest)
151endif(WITH_ZLIB)
152
153
154add_executable(EnumTest EnumTest.cpp)
155target_link_libraries(EnumTest
156 testgencpp
157 ${Boost_LIBRARIES}
158)
Jim King9de9b1f2015-04-30 16:03:34 -0400159LINK_AGAINST_THRIFT_LIBRARY(EnumTest thrift)
Pascal Bachd5f87e12014-12-12 15:59:17 +0100160add_test(NAME EnumTest COMMAND EnumTest)
161
Jim King9de9b1f2015-04-30 16:03:34 -0400162if(HAVE_GETOPT_H)
Pascal Bachd5f87e12014-12-12 15:59:17 +0100163add_executable(TFileTransportTest TFileTransportTest.cpp)
164target_link_libraries(TFileTransportTest
165 testgencpp
166 ${Boost_LIBRARIES}
167)
Jim King9de9b1f2015-04-30 16:03:34 -0400168LINK_AGAINST_THRIFT_LIBRARY(TFileTransportTest thrift)
Pascal Bachd5f87e12014-12-12 15:59:17 +0100169add_test(NAME TFileTransportTest COMMAND TFileTransportTest)
Jim King9de9b1f2015-04-30 16:03:34 -0400170endif()
Pascal Bachd5f87e12014-12-12 15:59:17 +0100171
172add_executable(TFDTransportTest TFDTransportTest.cpp)
Claudius Heine5ef662b2015-06-24 10:03:50 +0200173target_link_libraries(TFDTransportTest
174 ${Boost_LIBRARIES}
175)
Jim King9de9b1f2015-04-30 16:03:34 -0400176LINK_AGAINST_THRIFT_LIBRARY(TFDTransportTest thrift)
Pascal Bachd5f87e12014-12-12 15:59:17 +0100177add_test(NAME TFDTransportTest COMMAND TFDTransportTest)
178
179add_executable(TPipedTransportTest TPipedTransportTest.cpp)
Claudius Heine5ef662b2015-06-24 10:03:50 +0200180target_link_libraries(TPipedTransportTest
181 ${Boost_LIBRARIES}
182)
Jim King9de9b1f2015-04-30 16:03:34 -0400183LINK_AGAINST_THRIFT_LIBRARY(TPipedTransportTest thrift)
Pascal Bachd5f87e12014-12-12 15:59:17 +0100184add_test(NAME TPipedTransportTest COMMAND TPipedTransportTest)
185
186set(AllProtocolsTest_SOURCES
187 AllProtocolTests.cpp
188 AllProtocolTests.tcc
189 GenericHelpers
190 )
191
192add_executable(AllProtocolsTest ${AllProtocolsTest_SOURCES})
Claudius Heine5ef662b2015-06-24 10:03:50 +0200193target_link_libraries(AllProtocolsTest
194 testgencpp
195 ${Boost_LIBRARIES}
196)
Jim King9de9b1f2015-04-30 16:03:34 -0400197LINK_AGAINST_THRIFT_LIBRARY(AllProtocolsTest thrift)
Pascal Bachd5f87e12014-12-12 15:59:17 +0100198add_test(NAME AllProtocolsTest COMMAND AllProtocolsTest)
199
Jim King9de9b1f2015-04-30 16:03:34 -0400200# The debug run-time in Windows asserts on isprint() with negative inputs
201if (NOT MSVC OR (MSVC AND CMAKE_BUILD_TYPE EQUAL "DEBUG"))
Pascal Bachd5f87e12014-12-12 15:59:17 +0100202add_executable(DebugProtoTest DebugProtoTest.cpp)
Claudius Heine5ef662b2015-06-24 10:03:50 +0200203target_link_libraries(DebugProtoTest
204 testgencpp
205 ${Boost_LIBRARIES}
206)
Jim King9de9b1f2015-04-30 16:03:34 -0400207LINK_AGAINST_THRIFT_LIBRARY(DebugProtoTest thrift)
Pascal Bachd5f87e12014-12-12 15:59:17 +0100208add_test(NAME DebugProtoTest COMMAND DebugProtoTest)
Jim King9de9b1f2015-04-30 16:03:34 -0400209endif()
Pascal Bachd5f87e12014-12-12 15:59:17 +0100210
211add_executable(JSONProtoTest JSONProtoTest.cpp)
Claudius Heine5ef662b2015-06-24 10:03:50 +0200212target_link_libraries(JSONProtoTest
213 testgencpp
214 ${Boost_LIBRARIES}
215)
Jim King9de9b1f2015-04-30 16:03:34 -0400216LINK_AGAINST_THRIFT_LIBRARY(JSONProtoTest thrift)
Pascal Bachd5f87e12014-12-12 15:59:17 +0100217add_test(NAME JSONProtoTest COMMAND JSONProtoTest)
218
219add_executable(OptionalRequiredTest OptionalRequiredTest.cpp)
Claudius Heine5ef662b2015-06-24 10:03:50 +0200220target_link_libraries(OptionalRequiredTest
221 testgencpp
222 ${Boost_LIBRARIES}
223)
Jim King9de9b1f2015-04-30 16:03:34 -0400224LINK_AGAINST_THRIFT_LIBRARY(OptionalRequiredTest thrift)
Pascal Bachd5f87e12014-12-12 15:59:17 +0100225add_test(NAME OptionalRequiredTest COMMAND OptionalRequiredTest)
226
227add_executable(RecursiveTest RecursiveTest.cpp)
Claudius Heine5ef662b2015-06-24 10:03:50 +0200228target_link_libraries(RecursiveTest
229 testgencpp
230 ${Boost_LIBRARIES}
231)
Jim King9de9b1f2015-04-30 16:03:34 -0400232LINK_AGAINST_THRIFT_LIBRARY(RecursiveTest thrift)
Pascal Bachd5f87e12014-12-12 15:59:17 +0100233add_test(NAME RecursiveTest COMMAND RecursiveTest)
234
235add_executable(SpecializationTest SpecializationTest.cpp)
Claudius Heine5ef662b2015-06-24 10:03:50 +0200236target_link_libraries(SpecializationTest
237 testgencpp
238 ${Boost_LIBRARIES}
239)
Jim King9de9b1f2015-04-30 16:03:34 -0400240LINK_AGAINST_THRIFT_LIBRARY(SpecializationTest thrift)
Pascal Bachd5f87e12014-12-12 15:59:17 +0100241add_test(NAME SpecializationTest COMMAND SpecializationTest)
242
243set(concurrency_test_SOURCES
244 concurrency/Tests.cpp
245 concurrency/ThreadFactoryTests.h
246 concurrency/ThreadManagerTests.h
247 concurrency/TimerManagerTests.h
248)
249add_executable(concurrency_test ${concurrency_test_SOURCES})
Jim King9de9b1f2015-04-30 16:03:34 -0400250LINK_AGAINST_THRIFT_LIBRARY(concurrency_test thrift)
Pascal Bachd5f87e12014-12-12 15:59:17 +0100251add_test(NAME concurrency_test COMMAND concurrency_test)
252
253set(link_test_SOURCES
254 link/LinkTest.cpp
Nobuaki Sukegawa6304a532014-12-18 01:30:58 +0900255 gen-cpp/ParentService.h
Pascal Bachd5f87e12014-12-12 15:59:17 +0100256 link/TemplatedService1.cpp
257 link/TemplatedService2.cpp
Pascal Bachd5f87e12014-12-12 15:59:17 +0100258)
Nobuaki Sukegawa6304a532014-12-18 01:30:58 +0900259
Pascal Bachd5f87e12014-12-12 15:59:17 +0100260add_executable(link_test ${link_test_SOURCES})
Jim King9de9b1f2015-04-30 16:03:34 -0400261target_link_libraries(link_test testgencpp_cob)
262LINK_AGAINST_THRIFT_LIBRARY(link_test thrift)
Pascal Bachd5f87e12014-12-12 15:59:17 +0100263add_test(NAME link_test COMMAND link_test)
264
265if(WITH_LIBEVENT)
266set(processor_test_SOURCES
267 processor/ProcessorTest.cpp
268 processor/EventLog.cpp
269 processor/ServerThread.cpp
270 processor/EventLog.h
271 processor/Handlers.h
272 processor/ServerThread.h
273)
274add_executable(processor_test ${processor_test_SOURCES})
275target_link_libraries(processor_test
Nobuaki Sukegawa6304a532014-12-18 01:30:58 +0900276 testgencpp_cob
Pascal Bachd5f87e12014-12-12 15:59:17 +0100277 ${Boost_LIBRARIES}
278)
Jim King9de9b1f2015-04-30 16:03:34 -0400279LINK_AGAINST_THRIFT_LIBRARY(processor_test thrift)
280LINK_AGAINST_THRIFT_LIBRARY(processor_test thriftnb)
Pascal Bachd5f87e12014-12-12 15:59:17 +0100281add_test(NAME processor_test COMMAND processor_test)
Nobuaki Sukegawa8016af82015-01-02 23:14:22 +0900282
283set(TNonblockingServerTest_SOURCES TNonblockingServerTest.cpp)
284add_executable(TNonblockingServerTest ${TNonblockingServerTest_SOURCES})
285include_directories(${LIBEVENT_INCLUDE_DIRS})
286target_link_libraries(TNonblockingServerTest
287 testgencpp_cob
Nobuaki Sukegawa8016af82015-01-02 23:14:22 +0900288 ${LIBEVENT_LIBRARIES}
289 ${Boost_LIBRARIES}
290)
Jim King9de9b1f2015-04-30 16:03:34 -0400291LINK_AGAINST_THRIFT_LIBRARY(TNonblockingServerTest thrift)
292LINK_AGAINST_THRIFT_LIBRARY(TNonblockingServerTest thriftnb)
Nobuaki Sukegawa8016af82015-01-02 23:14:22 +0900293add_test(NAME TNonblockingServerTest COMMAND TNonblockingServerTest)
Pascal Bachd5f87e12014-12-12 15:59:17 +0100294endif()
295
296if(OPENSSL_FOUND AND WITH_OPENSSL)
297add_executable(OpenSSLManualInitTest OpenSSLManualInitTest.cpp)
298target_link_libraries(OpenSSLManualInitTest
Pascal Bachd5f87e12014-12-12 15:59:17 +0100299 ${OPENSSL_LIBRARIES}
300 ${Boost_LIBRARIES}
301)
Jim King9de9b1f2015-04-30 16:03:34 -0400302LINK_AGAINST_THRIFT_LIBRARY(OpenSSLManualInitTest thrift)
Pascal Bachd5f87e12014-12-12 15:59:17 +0100303add_test(NAME OpenSSLManualInitTest COMMAND OpenSSLManualInitTest)
304endif()
305
Nobuaki Sukegawa6304a532014-12-18 01:30:58 +0900306if(WITH_QT4)
Nobuaki Sukegawa6304a532014-12-18 01:30:58 +0900307set(CMAKE_AUTOMOC ON)
308find_package(Qt4 REQUIRED COMPONENTS QtTest)
309set(TQTcpServerTest_SOURCES
310 qt/TQTcpServerTest.cpp
311)
312add_executable(TQTcpServerTest ${TQTcpServerTest_SOURCES})
Jim King9de9b1f2015-04-30 16:03:34 -0400313target_link_libraries(TQTcpServerTest testgencpp_cob thriftqt Qt4::QtTest)
314LINK_AGAINST_THRIFT_LIBRARY(TQTcpServerTest thrift)
Nobuaki Sukegawa6304a532014-12-18 01:30:58 +0900315add_test(NAME TQTcpServerTest COMMAND TQTcpServerTest)
316endif()
317
Nobuaki Sukegawa66228772014-12-07 21:45:33 +0900318if(WITH_QT5)
319add_subdirectory(qt)
320endif()
321
Pascal Bachd5f87e12014-12-12 15:59:17 +0100322#
323# Common thrift code generation rules
324#
325
326
Ben Craig1684c422015-04-24 08:52:44 -0500327add_custom_command(OUTPUT gen-cpp/DebugProtoTest_types.cpp gen-cpp/DebugProtoTest_types.h gen-cpp/EmptyService.cpp gen-cpp/EmptyService.h
Randy Abernethy8dbe5f62015-08-01 22:57:02 -0700328 COMMAND thrift-compiler --gen cpp ${PROJECT_SOURCE_DIR}/test/DebugProtoTest.thrift
Pascal Bachd5f87e12014-12-12 15:59:17 +0100329)
330
331add_custom_command(OUTPUT gen-cpp/EnumTest_types.cpp gen-cpp/EnumTest_types.h
332 COMMAND thrift-compiler --gen cpp ${PROJECT_SOURCE_DIR}/test/EnumTest.thrift
333)
334
335add_custom_command(OUTPUT gen-cpp/TypedefTest_types.cpp gen-cpp/TypedefTest_types.h
336 COMMAND thrift-compiler --gen cpp ${PROJECT_SOURCE_DIR}/test/TypedefTest.thrift
337)
338
339add_custom_command(OUTPUT gen-cpp/OptionalRequiredTest_types.cpp gen-cpp/OptionalRequiredTest_types.h
Randy Abernethy8dbe5f62015-08-01 22:57:02 -0700340 COMMAND thrift-compiler --gen cpp ${PROJECT_SOURCE_DIR}/test/OptionalRequiredTest.thrift
Pascal Bachd5f87e12014-12-12 15:59:17 +0100341)
342
343add_custom_command(OUTPUT gen-cpp/Recursive_types.cpp gen-cpp/Recursive_types.h
344 COMMAND thrift-compiler --gen cpp ${PROJECT_SOURCE_DIR}/test/Recursive.thrift
345)
346
347add_custom_command(OUTPUT gen-cpp/Service.cpp gen-cpp/StressTest_types.cpp
Randy Abernethy8dbe5f62015-08-01 22:57:02 -0700348 COMMAND thrift-compiler --gen cpp ${PROJECT_SOURCE_DIR}/test/StressTest.thrift
Pascal Bachd5f87e12014-12-12 15:59:17 +0100349)
350
351add_custom_command(OUTPUT gen-cpp/SecondService.cpp gen-cpp/ThriftTest_constants.cpp gen-cpp/ThriftTest.cpp gen-cpp/ThriftTest_types.cpp gen-cpp/ThriftTest_types.h
Randy Abernethy8dbe5f62015-08-01 22:57:02 -0700352 COMMAND thrift-compiler --gen cpp ${PROJECT_SOURCE_DIR}/test/ThriftTest.thrift
Pascal Bachd5f87e12014-12-12 15:59:17 +0100353)
354
355add_custom_command(OUTPUT gen-cpp/ChildService.cpp gen-cpp/ChildService.h gen-cpp/ParentService.cpp gen-cpp/ParentService.h gen-cpp/proc_types.cpp gen-cpp/proc_types.h
356 COMMAND thrift-compiler --gen cpp:templates,cob_style ${CMAKE_CURRENT_SOURCE_DIR}/processor/proc.thrift
357)