blob: 68eac0967b3265b929fafd1e374c73912ebcce28 [file] [log] [blame]
William A. Kennington III0a01b2a2021-05-13 18:38:57 -07001gtest = dependency('gtest', main: true, disabler: true, required: false)
2gmock = dependency('gmock', disabler: true, required: false)
3if not gtest.found() or not gmock.found()
4 gtest_opts = import('cmake').subproject_options()
5 gtest_opts.add_cmake_defines({'CMAKE_CXX_FLAGS': '-Wno-pedantic'})
6 gtest_proj = import('cmake').subproject(
7 'googletest',
8 options: gtest_opts,
9 required: false)
10 if gtest_proj.found()
11 gtest = declare_dependency(
12 dependencies: [
13 dependency('threads'),
14 gtest_proj.dependency('gtest'),
15 gtest_proj.dependency('gtest_main'),
16 ])
17 gmock = gtest_proj.dependency('gmock')
18 else
William A. Kennington IIIfc3aff92021-05-29 15:09:58 -070019 assert(not get_option('tests').enabled(), 'Googletest is required')
William A. Kennington III0a01b2a2021-05-13 18:38:57 -070020 endif
21endif
22
23test_headers = include_directories('.')
24
25test_deps = [
26 meson.get_compiler('cpp').find_library('dl'),
27 networkd_dep,
28 gtest,
29 gmock,
William A. Kennington III84bfe672022-07-13 14:15:30 -070030 dependency('stdplus-gtest'),
William A. Kennington III0a01b2a2021-05-13 18:38:57 -070031]
32
33test_lib = static_library(
34 'networkd-test',
35 'mock_syscall.cpp',
William A. Kennington III0a01b2a2021-05-13 18:38:57 -070036 implicit_include_directories: false,
37 include_directories: test_headers,
38 dependencies: test_deps)
39
40test_dep = declare_dependency(
41 dependencies: test_deps,
42 include_directories: test_headers,
43 link_with: test_lib)
44
45tests = [
46 'config_parser',
47 'ethernet_interface',
William A. Kennington III0a01b2a2021-05-13 18:38:57 -070048 'netlink',
49 'network_manager',
William A. Kennington III6a923632022-11-06 18:17:33 -080050 'rtnetlink',
William A. Kennington IIIbb0eacc2022-10-21 15:22:06 -070051 'types',
William A. Kennington III0a01b2a2021-05-13 18:38:57 -070052 'util',
William A. Kennington III0a01b2a2021-05-13 18:38:57 -070053]
54
William A. Kennington III84bfe672022-07-13 14:15:30 -070055run_with_tmp = find_program('run_with_tmp', native: true)
56
William A. Kennington III7ba2d562022-08-02 13:20:23 -070057add_test_setup(
58 'networkd',
59 exe_wrapper: run_with_tmp,
60 env: {'TMPTMPL': 'phosphor-networkd-test.XXXXXXXXXX'},
61 is_default: true)
62
63add_test_setup(
64 'valgrind',
65 exe_wrapper: [run_with_tmp, 'valgrind'],
66 env: {'TMPTMPL': 'phosphor-networkd-test.XXXXXXXXXX'})
67
William A. Kennington III0a01b2a2021-05-13 18:38:57 -070068foreach t : tests
69 test(
70 t,
William A. Kennington III7ba2d562022-08-02 13:20:23 -070071 executable(
William A. Kennington III0a01b2a2021-05-13 18:38:57 -070072 t.underscorify(),
73 'test_' + t + '.cpp',
74 implicit_include_directories: false,
William A. Kennington III7ba2d562022-08-02 13:20:23 -070075 dependencies: test_dep))
William A. Kennington III0a01b2a2021-05-13 18:38:57 -070076endforeach
Asmitha Karunanithia6c07572022-05-05 03:19:45 -050077
78if (get_option('hyp-nw-config') == true)
79 subdir('ibm/hypervisor-network-mgr-test')
80endif