blob: eb62df24a75cd647ece39e2238239bc2e5a60c6b [file] [log] [blame]
commit-queue@webkit.orgd6fb2c52012-12-06 03:10:13 +00001set(TESTWEBKITAPI_DIR "${TOOLS_DIR}/TestWebKitAPI")
mrobinson@webkit.orgcf0e3e92013-08-14 21:00:39 +00002
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +00003get_property(gtest_DEFINITIONS GLOBAL PROPERTY gtest_DEFINITIONS)
4add_definitions(${gtest_DEFINITIONS})
mrobinson@webkit.orgcf0e3e92013-08-14 21:00:39 +00005
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +00006macro(WEBKIT_TEST _target)
7 WEBKIT_EXECUTABLE(${_target})
8 add_test(${_target} ${TESTWEBKITAPI_RUNTIME_OUTPUT_DIRECTORY}/${_target})
9 set_tests_properties(${_target} PROPERTIES TIMEOUT 60)
10 set_target_properties(${_target} PROPERTIES
11 RUNTIME_OUTPUT_DIRECTORY ${TESTWEBKITAPI_RUNTIME_OUTPUT_DIRECTORY}
achristensen@apple.comb2b99b62015-08-11 00:09:07 +000012 )
carlosgc@webkit.orgf7e0d8a2017-11-20 09:51:07 +000013
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +000014 if (COMPILER_IS_GCC_OR_CLANG)
15 WEBKIT_ADD_TARGET_CXX_FLAGS(${_target} -Wno-dangling-else
16 -Wno-sign-compare
17 -Wno-undef
18 -Wno-unused-parameter)
19 endif ()
20endmacro()
carlosgc@webkit.orgf7e0d8a2017-11-20 09:51:07 +000021
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +000022# TestWTF definitions
zandobersek@gmail.com3cd1f6e2014-08-14 16:08:24 +000023set(TestWTF_SOURCES
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +000024 Counters.cpp
25 TestsController.cpp
weinig@apple.comca357642019-07-17 21:18:30 +000026 WTFStringUtilities.cpp
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +000027
darin@apple.com0ce67df2019-06-17 01:48:13 +000028 Tests/WTF/AtomString.cpp
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +000029 Tests/WTF/BloomFilter.cpp
30 Tests/WTF/CString.cpp
31 Tests/WTF/CheckedArithmeticOperations.cpp
32 Tests/WTF/ConcurrentPtrHashSet.cpp
33 Tests/WTF/Condition.cpp
Hironori.Fujii@sony.comf7d2ef92019-06-20 00:51:30 +000034 Tests/WTF/CrossThreadCopier.cpp
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +000035 Tests/WTF/CrossThreadTask.cpp
aboya@igalia.com079458f2019-07-23 14:51:29 +000036 Tests/WTF/DataMutex.cpp
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +000037 Tests/WTF/DateMath.cpp
38 Tests/WTF/Deque.cpp
39 Tests/WTF/EnumTraits.cpp
40 Tests/WTF/Expected.cpp
41 Tests/WTF/FileSystem.cpp
42 Tests/WTF/Function.cpp
43 Tests/WTF/HashCountedSet.cpp
44 Tests/WTF/HashMap.cpp
45 Tests/WTF/HashSet.cpp
46 Tests/WTF/Hasher.cpp
47 Tests/WTF/IntegerToStringConversion.cpp
48 Tests/WTF/IteratorRange.cpp
49 Tests/WTF/JSONValue.cpp
50 Tests/WTF/LEBDecoder.cpp
51 Tests/WTF/LifecycleLogger.cpp
52 Tests/WTF/LineEnding.cpp
53 Tests/WTF/ListHashSet.cpp
54 Tests/WTF/Lock.cpp
55 Tests/WTF/Logger.cpp
56 Tests/WTF/MD5.cpp
57 Tests/WTF/Markable.cpp
58 Tests/WTF/MathExtras.cpp
59 Tests/WTF/MediaTime.cpp
60 Tests/WTF/MetaAllocator.cpp
61 Tests/WTF/MoveOnlyLifecycleLogger.cpp
62 Tests/WTF/NakedPtr.cpp
63 Tests/WTF/NeverDestroyed.cpp
64 Tests/WTF/OptionSet.cpp
65 Tests/WTF/Optional.cpp
ysuzuki@apple.comdafef972019-05-12 22:50:21 +000066 Tests/WTF/Packed.cpp
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +000067 Tests/WTF/ParkingLot.cpp
68 Tests/WTF/PriorityQueue.cpp
69 Tests/WTF/RedBlackTree.cpp
70 Tests/WTF/Ref.cpp
71 Tests/WTF/RefCounter.cpp
72 Tests/WTF/RefLogger.cpp
73 Tests/WTF/RefPtr.cpp
74 Tests/WTF/RunLoop.cpp
75 Tests/WTF/SHA1.cpp
76 Tests/WTF/SaturatedArithmeticOperations.cpp
77 Tests/WTF/Scope.cpp
78 Tests/WTF/ScopedLambda.cpp
79 Tests/WTF/SetForScope.cpp
80 Tests/WTF/StringBuilder.cpp
81 Tests/WTF/StringConcatenate.cpp
82 Tests/WTF/StringHasher.cpp
83 Tests/WTF/StringImpl.cpp
84 Tests/WTF/StringOperators.cpp
85 Tests/WTF/StringView.cpp
86 Tests/WTF/SynchronizedFixedQueue.cpp
87 Tests/WTF/TextBreakIterator.cpp
88 Tests/WTF/ThreadGroup.cpp
89 Tests/WTF/ThreadMessages.cpp
90 Tests/WTF/Threading.cpp
91 Tests/WTF/Time.cpp
92 Tests/WTF/URL.cpp
93 Tests/WTF/URLParser.cpp
94 Tests/WTF/UniqueArray.cpp
95 Tests/WTF/UniqueRef.cpp
96 Tests/WTF/Variant.cpp
97 Tests/WTF/Vector.cpp
98 Tests/WTF/WTFString.cpp
99 Tests/WTF/WeakPtr.cpp
100 Tests/WTF/WorkQueue.cpp
101 Tests/WTF/WorkerPool.cpp
zandobersek@gmail.com3cd1f6e2014-08-14 16:08:24 +0000102)
103
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +0000104set(TestWTF_PRIVATE_INCLUDE_DIRECTORIES
105 ${CMAKE_BINARY_DIR}
106 ${TESTWEBKITAPI_DIR}
107 ${THIRDPARTY_DIR}/gtest/include
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +0000108)
109
110set(TestWTF_LIBRARIES
don.olmstead@sony.com13a35d32019-05-31 16:56:03 +0000111 WebKit::WTF
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +0000112 gtest
113)
114
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +0000115WEBKIT_EXECUTABLE_DECLARE(TestWTF)
116
117# TestWebCore definitions
118if (ENABLE_WEBCORE)
119 set(TestWebCore_SOURCES
120 TestsController.cpp
weinig@apple.comca357642019-07-17 21:18:30 +0000121 WTFStringUtilities.cpp
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +0000122
123 Tests/WebCore/AffineTransform.cpp
124 Tests/WebCore/CSSParser.cpp
125 Tests/WebCore/CalculationValue.cpp
126 Tests/WebCore/ComplexTextController.cpp
127 Tests/WebCore/FileMonitor.cpp
128 Tests/WebCore/FloatPoint.cpp
129 Tests/WebCore/FloatRect.cpp
130 Tests/WebCore/FloatSize.cpp
131 Tests/WebCore/GridPosition.cpp
132 Tests/WebCore/HTMLParserIdioms.cpp
aperez@igalia.com302a03d2019-09-12 15:33:31 +0000133 Tests/WebCore/HTTPParsers.cpp
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +0000134 Tests/WebCore/IntPoint.cpp
135 Tests/WebCore/IntRect.cpp
136 Tests/WebCore/IntSize.cpp
137 Tests/WebCore/LayoutUnit.cpp
138 Tests/WebCore/MIMETypeRegistry.cpp
139 Tests/WebCore/ParsedContentRange.cpp
140 Tests/WebCore/PublicSuffix.cpp
141 Tests/WebCore/SecurityOrigin.cpp
142 Tests/WebCore/SharedBuffer.cpp
143 Tests/WebCore/SharedBufferTest.cpp
144 Tests/WebCore/TimeRanges.cpp
145 Tests/WebCore/TransformationMatrix.cpp
146 Tests/WebCore/URLParserTextEncoding.cpp
ross.kirsling@sony.com50355432019-01-24 17:25:57 +0000147 )
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +0000148
149 set(TestWebCore_LIBRARIES
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +0000150 WebCoreTestSupport
151 gtest
152 )
achristensen@apple.com7dbad2c2019-10-02 03:12:49 +0000153 if (NOT APPLE)
154 list(APPEND TestWebCore_LIBRARIES WebCore)
155 endif ()
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +0000156
157 set(TestWebCore_PRIVATE_INCLUDE_DIRECTORIES
158 ${CMAKE_BINARY_DIR}
159 ${TESTWEBKITAPI_DIR}
160 ${THIRDPARTY_DIR}/gtest/include
161 ${PAL_FRAMEWORK_HEADERS_DIR}
162 ${WebCore_PRIVATE_FRAMEWORK_HEADERS_DIR}
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +0000163 )
164
165 set(TestWebCore_DEPENDENCIES WebCorePrivateFrameworkHeaders)
166
167 WEBKIT_EXECUTABLE_DECLARE(TestWebCore)
ross.kirsling@sony.com50355432019-01-24 17:25:57 +0000168endif ()
169
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +0000170# TestWebKitLegacy definitions
171if (ENABLE_WEBKIT_LEGACY)
172 set(TestWebKitLegacy_SOURCES
173 TestsController.cpp
weinig@apple.comca357642019-07-17 21:18:30 +0000174 WTFStringUtilities.cpp
achristensen@apple.comb2b99b62015-08-11 00:09:07 +0000175 )
commit-queue@webkit.orga90a9de2012-07-18 15:07:34 +0000176
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +0000177 set(TestWebKitLegacy_LIBRARIES
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +0000178 gtest
179 )
achristensen@apple.com7dbad2c2019-10-02 03:12:49 +0000180 if (NOT APPLE)
181 list(APPEND TestWebKitLegacy_LIBRARIES
182 WebKitLegacy
183 )
184 endif ()
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +0000185
186 set(TestWebKitLegacy_PRIVATE_INCLUDE_DIRECTORIES
187 ${CMAKE_BINARY_DIR}
188 ${TESTWEBKITAPI_DIR}
189 ${THIRDPARTY_DIR}/gtest/include
190 ${PAL_FRAMEWORK_HEADERS_DIR}
191 ${WebCore_PRIVATE_FRAMEWORK_HEADERS_DIR}
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +0000192 ${WebKitLegacy_FRAMEWORK_HEADERS_DIR}
193 )
194
195 set(TestWebKitLegacy_DEPENDENCIES WebKitLegacyFrameworkHeaders)
196
197 WEBKIT_EXECUTABLE_DECLARE(TestWebKitLegacy)
198endif ()
199
200# TestWebKit definitions
201if (ENABLE_WEBKIT)
202 set(TestWebKit_SOURCES
203 Tests/WebKit/AboutBlankLoad.cpp
204 Tests/WebKit/CanHandleRequest.cpp
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +0000205 Tests/WebKit/DOMWindowExtensionBasic.cpp
206 Tests/WebKit/DOMWindowExtensionNoCache.cpp
207 Tests/WebKit/DocumentStartUserScriptAlertCrash.cpp
208 Tests/WebKit/DownloadDecideDestinationCrash.cpp
209 Tests/WebKit/EnumerateMediaDevices.cpp
210 Tests/WebKit/EvaluateJavaScript.cpp
211 Tests/WebKit/FailedLoad.cpp
212 Tests/WebKit/Find.cpp
213 Tests/WebKit/FirstMeaningfulPaintMilestone.cpp
214 Tests/WebKit/ForceRepaint.cpp
215 Tests/WebKit/FrameMIMETypeHTML.cpp
216 Tests/WebKit/FrameMIMETypePNG.cpp
217 Tests/WebKit/Geolocation.cpp
218 Tests/WebKit/GetInjectedBundleInitializationUserDataCallback.cpp
219 Tests/WebKit/HitTestResultNodeHandle.cpp
220 Tests/WebKit/InjectedBundleBasic.cpp
221 Tests/WebKit/InjectedBundleFrameHitTest.cpp
222 Tests/WebKit/InjectedBundleInitializationUserDataCallbackWins.cpp
223 Tests/WebKit/LoadAlternateHTMLStringWithNonDirectoryURL.cpp
224 Tests/WebKit/LoadCanceledNoServerRedirectCallback.cpp
225 Tests/WebKit/LoadPageOnCrash.cpp
226 Tests/WebKit/MouseMoveAfterCrash.cpp
227 Tests/WebKit/NewFirstVisuallyNonEmptyLayout.cpp
228 Tests/WebKit/NewFirstVisuallyNonEmptyLayoutFails.cpp
229 Tests/WebKit/NewFirstVisuallyNonEmptyLayoutForImages.cpp
230 Tests/WebKit/NewFirstVisuallyNonEmptyLayoutFrames.cpp
231 Tests/WebKit/PageLoadBasic.cpp
232 Tests/WebKit/PageLoadDidChangeLocationWithinPageForFrame.cpp
Hironori.Fujii@sony.com997d2932019-07-31 05:13:18 +0000233 Tests/WebKit/PageLoadState.cpp
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +0000234 Tests/WebKit/ParentFrame.cpp
235 Tests/WebKit/PendingAPIRequestURL.cpp
236 Tests/WebKit/PreventEmptyUserAgent.cpp
237 Tests/WebKit/PrivateBrowsingPushStateNoHistoryCallback.cpp
238 Tests/WebKit/ProvisionalURLAfterWillSendRequestCallback.cpp
239 Tests/WebKit/ReloadPageAfterCrash.cpp
240 Tests/WebKit/ResizeWindowAfterCrash.cpp
241 Tests/WebKit/RestoreSessionStateContainingFormData.cpp
242 Tests/WebKit/TextFieldDidBeginAndEndEditing.cpp
243 Tests/WebKit/UserMedia.cpp
244 Tests/WebKit/UserMessage.cpp
245 Tests/WebKit/WKPageCopySessionStateWithFiltering.cpp
246 Tests/WebKit/WKPageGetScaleFactorNotZero.cpp
247 Tests/WebKit/WKPreferences.cpp
248 Tests/WebKit/WKRetainPtr.cpp
249 Tests/WebKit/WKString.cpp
250 Tests/WebKit/WKStringJSString.cpp
251 Tests/WebKit/WKURL.cpp
252 Tests/WebKit/WillSendSubmitEvent.cpp
253 )
254
255 set(TestWebKit_PRIVATE_INCLUDE_DIRECTORIES
256 ${CMAKE_BINARY_DIR}
257 ${TESTWEBKITAPI_DIR}
258 ${THIRDPARTY_DIR}/gtest/include
259 ${PAL_FRAMEWORK_HEADERS_DIR}
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +0000260 ${WebCore_PRIVATE_FRAMEWORK_HEADERS_DIR}
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +0000261 ${WebKit_FRAMEWORK_HEADERS_DIR}
262 )
263
264 set(TestWebKit_LIBRARIES
265 TestWebKitAPIBase
266 WebKit
267 gtest
268 )
269
270 set(TestWebKit_DEPENDENCIES
271 NetworkProcess
272 TestWebKitAPIInjectedBundle
273 WebProcess
274 )
275
276 add_library(TestWebKitAPIBase STATIC
277 JavaScriptTest.cpp
278 PlatformUtilities.cpp
279 TestsController.cpp
weinig@apple.comca357642019-07-17 21:18:30 +0000280 WTFStringUtilities.cpp
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +0000281 )
282 target_compile_definitions(TestWebKitAPIBase PRIVATE BUILDING_TestWebKit)
283 target_include_directories(TestWebKitAPIBase PRIVATE ${TestWebKit_PRIVATE_INCLUDE_DIRECTORIES})
284 target_link_libraries(TestWebKitAPIBase PRIVATE WebKit gtest)
285
286 if (COMPILER_IS_GCC_OR_CLANG)
287 WEBKIT_ADD_TARGET_CXX_FLAGS(TestWebKitAPIBase -Wno-dangling-else
288 -Wno-sign-compare
289 -Wno-undef
290 -Wno-unused-parameter)
291 endif ()
292
achristensen@apple.com7dbad2c2019-10-02 03:12:49 +0000293 set(TestWebKitAPIInjectedBundle_SOURCES
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +0000294 InjectedBundleController.cpp
295 InjectedBundleMain.cpp
296 PlatformUtilities.cpp
297 Tests/WebKit/CanHandleRequest_Bundle.cpp
298 Tests/WebKit/DidAssociateFormControls_Bundle.cpp
299 Tests/WebKit/DOMWindowExtensionBasic_Bundle.cpp
300 Tests/WebKit/DOMWindowExtensionNoCache_Bundle.cpp
301 Tests/WebKit/DocumentStartUserScriptAlertCrash_Bundle.cpp
302 Tests/WebKit/GetInjectedBundleInitializationUserDataCallback_Bundle.cpp
303 Tests/WebKit/HitTestResultNodeHandle_Bundle.cpp
304 Tests/WebKit/InjectedBundleBasic_Bundle.cpp
305 Tests/WebKit/InjectedBundleFrameHitTest_Bundle.cpp
306 Tests/WebKit/InjectedBundleInitializationUserDataCallbackWins_Bundle.cpp
307 Tests/WebKit/LoadCanceledNoServerRedirectCallback_Bundle.cpp
308 Tests/WebKit/MouseMoveAfterCrash_Bundle.cpp
309 Tests/WebKit/NewFirstVisuallyNonEmptyLayoutFails_Bundle.cpp
310 Tests/WebKit/NewFirstVisuallyNonEmptyLayoutForImages_Bundle.cpp
311 Tests/WebKit/NewFirstVisuallyNonEmptyLayoutFrames_Bundle.cpp
312 Tests/WebKit/NewFirstVisuallyNonEmptyLayout_Bundle.cpp
313 Tests/WebKit/FirstMeaningfulPaintMilestone_Bundle.cpp
314 Tests/WebKit/ParentFrame_Bundle.cpp
315 Tests/WebKit/ProvisionalURLAfterWillSendRequestCallback_Bundle.cpp
316 Tests/WebKit/ResponsivenessTimerDoesntFireEarly_Bundle.cpp
317 Tests/WebKit/TextFieldDidBeginAndEndEditing_Bundle.cpp
318 Tests/WebKit/UserMessage_Bundle.cpp
319 Tests/WebKit/WillLoad_Bundle.cpp
320 Tests/WebKit/WillSendSubmitEvent_Bundle.cpp
321 )
achristensen@apple.com7dbad2c2019-10-02 03:12:49 +0000322 if (APPLE)
323 list(APPEND TestWebKitAPIInjectedBundle_SOURCES
324 Tests/WebKit/DOMWindowExtensionBasic_Bundle.cpp
325
326 cocoa/UtilitiesCocoa.mm
327
328 mac/InjectedBundleControllerMac.mm
329 mac/PlatformUtilitiesMac.mm
330 )
331 endif ()
332 add_library(TestWebKitAPIInjectedBundle SHARED ${TestWebKitAPIInjectedBundle_SOURCES})
333
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +0000334 target_compile_definitions(TestWebKitAPIInjectedBundle PRIVATE BUILDING_TestWebKit)
335 target_include_directories(TestWebKitAPIInjectedBundle PRIVATE ${TestWebKit_PRIVATE_INCLUDE_DIRECTORIES})
achristensen@apple.com7dbad2c2019-10-02 03:12:49 +0000336 target_link_libraries(TestWebKitAPIInjectedBundle PRIVATE WebKit WTF)
mcatanzaro@igalia.com8b224d42017-08-08 15:03:48 +0000337
338 if (COMPILER_IS_GCC_OR_CLANG)
339 WEBKIT_ADD_TARGET_CXX_FLAGS(TestWebKitAPIInjectedBundle -Wno-dangling-else
340 -Wno-sign-compare
341 -Wno-undef
342 -Wno-unused-parameter)
343 endif ()
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +0000344
345 WEBKIT_EXECUTABLE_DECLARE(TestWebKit)
achristensen@apple.comb2b99b62015-08-11 00:09:07 +0000346endif ()
gyuyoung.kim@webkit.orge482a5a2015-06-06 01:19:36 +0000347
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +0000348# Include platform specific files
349WEBKIT_INCLUDE_CONFIG_FILES_IF_EXISTS()
achristensen@apple.com57b4c9d2015-08-20 19:08:06 +0000350
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +0000351# TestWTF target
352WEBKIT_TEST(TestWTF)
commit-queue@webkit.orga90a9de2012-07-18 15:07:34 +0000353
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +0000354# TestWebCore target
355if (ENABLE_WEBCORE)
356 WEBKIT_TEST(TestWebCore)
achristensen@apple.com52743ce2015-08-28 00:04:52 +0000357endif ()
358
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +0000359# TestWebKitLegacy target
360if (ENABLE_WEBKIT_LEGACY)
361 WEBKIT_TEST(TestWebKitLegacy)
mcatanzaro@igalia.com8b224d42017-08-08 15:03:48 +0000362endif ()
363
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +0000364# TestWebKit target
carlosgc@webkit.org3881ca22017-07-25 11:36:48 +0000365if (ENABLE_WEBKIT)
don.olmstead@sony.com8780ccb2019-05-01 23:47:28 +0000366 WEBKIT_TEST(TestWebKit)
achristensen@apple.comb2b99b62015-08-11 00:09:07 +0000367endif ()