2024-06-29 17:31:08 +03:00
|
|
|
project('nix-store-tests', 'cpp',
|
2024-06-25 16:35:47 +03:00
|
|
|
version : files('.version'),
|
|
|
|
default_options : [
|
|
|
|
'cpp_std=c++2a',
|
|
|
|
# TODO(Qyriad): increase the warning level
|
|
|
|
'warning_level=1',
|
|
|
|
'debug=true',
|
|
|
|
'optimization=2',
|
|
|
|
'errorlogs=true', # Please print logs for tests that fail
|
|
|
|
],
|
|
|
|
meson_version : '>= 1.1',
|
|
|
|
license : 'LGPL-2.1-or-later',
|
|
|
|
)
|
|
|
|
|
|
|
|
cxx = meson.get_compiler('cpp')
|
|
|
|
|
2024-06-28 01:28:13 +03:00
|
|
|
subdir('build-utils-meson/deps-lists')
|
2024-06-25 16:35:47 +03:00
|
|
|
|
2024-06-27 19:34:03 +03:00
|
|
|
deps_private_maybe_subproject = [
|
2024-06-27 18:28:08 +03:00
|
|
|
dependency('nix-store'),
|
|
|
|
dependency('nix-store-c'),
|
|
|
|
dependency('nix-store-test-support'),
|
2024-06-27 05:15:33 +03:00
|
|
|
]
|
2024-06-28 02:19:32 +03:00
|
|
|
deps_public_maybe_subproject = [
|
|
|
|
]
|
2024-06-28 01:28:13 +03:00
|
|
|
subdir('build-utils-meson/subprojects')
|
2024-06-27 05:15:33 +03:00
|
|
|
|
2024-07-22 18:33:37 +03:00
|
|
|
subdir('build-utils-meson/threads')
|
|
|
|
|
2024-06-28 01:28:13 +03:00
|
|
|
subdir('build-utils-meson/export-all-symbols')
|
2024-06-27 05:15:33 +03:00
|
|
|
|
2024-06-28 21:57:10 +03:00
|
|
|
sqlite = dependency('sqlite3', 'sqlite', version : '>=3.6.19')
|
|
|
|
deps_private += sqlite
|
|
|
|
|
2024-06-27 05:15:33 +03:00
|
|
|
rapidcheck = dependency('rapidcheck')
|
|
|
|
deps_private += rapidcheck
|
|
|
|
|
|
|
|
gtest = dependency('gtest', main : true)
|
|
|
|
deps_private += gtest
|
|
|
|
|
2024-06-28 01:09:32 +03:00
|
|
|
gtest = dependency('gmock')
|
|
|
|
deps_private += gtest
|
|
|
|
|
2024-06-25 16:35:47 +03:00
|
|
|
add_project_arguments(
|
|
|
|
# TODO(Qyriad): Yes this is how the autoconf+Make system did it.
|
|
|
|
# It would be nice for our headers to be idempotent instead.
|
2024-06-27 18:28:08 +03:00
|
|
|
'-include', 'config-util.hh',
|
|
|
|
'-include', 'config-store.hh',
|
|
|
|
'-include', 'config-util.h',
|
|
|
|
'-include', 'config-store.h',
|
2024-06-25 16:35:47 +03:00
|
|
|
language : 'cpp',
|
|
|
|
)
|
|
|
|
|
2024-06-28 01:28:13 +03:00
|
|
|
subdir('build-utils-meson/diagnostics')
|
2024-06-27 23:11:52 +03:00
|
|
|
|
2024-06-25 16:35:47 +03:00
|
|
|
sources = files(
|
2024-06-27 18:28:08 +03:00
|
|
|
'common-protocol.cc',
|
|
|
|
'content-address.cc',
|
|
|
|
'derivation-advanced-attrs.cc',
|
|
|
|
'derivation.cc',
|
|
|
|
'derived-path.cc',
|
|
|
|
'downstream-placeholder.cc',
|
2024-07-18 06:32:27 +03:00
|
|
|
'http-binary-cache-store.cc',
|
2024-07-15 20:13:11 +03:00
|
|
|
'legacy-ssh-store.cc',
|
2024-07-18 06:32:27 +03:00
|
|
|
'local-binary-cache-store.cc',
|
|
|
|
'local-overlay-store.cc',
|
|
|
|
'local-store.cc',
|
2024-06-27 18:28:08 +03:00
|
|
|
'machines.cc',
|
|
|
|
'nar-info-disk-cache.cc',
|
|
|
|
'nar-info.cc',
|
|
|
|
'nix_api_store.cc',
|
|
|
|
'outputs-spec.cc',
|
|
|
|
'path-info.cc',
|
|
|
|
'path.cc',
|
2024-06-25 16:35:47 +03:00
|
|
|
'references.cc',
|
2024-07-18 06:32:27 +03:00
|
|
|
's3-binary-cache-store.cc',
|
2024-06-27 18:28:08 +03:00
|
|
|
'serve-protocol.cc',
|
2024-07-15 20:13:11 +03:00
|
|
|
'ssh-store.cc',
|
2024-06-27 18:28:08 +03:00
|
|
|
'store-reference.cc',
|
2024-07-18 06:32:27 +03:00
|
|
|
'uds-remote-store.cc',
|
2024-06-27 18:28:08 +03:00
|
|
|
'worker-protocol.cc',
|
2024-06-25 16:35:47 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
include_dirs = [include_directories('.')]
|
|
|
|
|
|
|
|
|
|
|
|
this_exe = executable(
|
2024-06-27 18:28:08 +03:00
|
|
|
meson.project_name(),
|
2024-06-25 16:35:47 +03:00
|
|
|
sources,
|
2024-06-27 05:15:33 +03:00
|
|
|
dependencies : deps_private_subproject + deps_private + deps_other,
|
2024-06-25 16:35:47 +03:00
|
|
|
include_directories : include_dirs,
|
|
|
|
# TODO: -lrapidcheck, see ../libutil-support/build.meson
|
|
|
|
link_args: linker_export_flags + ['-lrapidcheck'],
|
|
|
|
# get main from gtest
|
|
|
|
install : true,
|
|
|
|
)
|
|
|
|
|
2024-06-29 17:59:05 +03:00
|
|
|
test(
|
|
|
|
meson.project_name(),
|
|
|
|
this_exe,
|
|
|
|
env : {
|
|
|
|
'_NIX_TEST_UNIT_DATA': meson.current_source_dir() / 'data',
|
|
|
|
},
|
|
|
|
protocol : 'gtest',
|
|
|
|
)
|