aboutsummaryrefslogtreecommitdiff
path: root/src/service/namestore/meson.build
blob: 090ed152053657b26ff3051c5b6496a5b5278476 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
libgnunetnamestore_src = ['namestore_api.c', 'namestore_api_monitor.c']

gnunetservicenamestore_src = ['gnunet-service-namestore.c']

configure_file(input : 'namestore.conf.in',
               output : 'namestore.conf',
               configuration : cdata,
               install: true,
               install_dir: pkgcfgdir)


if get_option('monolith')
  foreach p : libgnunetnamestore_src + gnunetservicenamestore_src
    gnunet_src += 'namestore/' + p
  endforeach
endif

libgnunetnamestore = library('gnunetnamestore',
        libgnunetnamestore_src,
        soversion: '0',
        version: '0.0.1',
        dependencies: [libgnunetutil_dep,
                       libgnunetgnsrecord_dep,
                       libgnunetidentity_dep],
        include_directories: [incdir, configuration_inc],
        install: true,
        install_dir: get_option('libdir'))
libgnunetnamestore_dep = declare_dependency(link_with : libgnunetnamestore)
pkg.generate(libgnunetnamestore, url: 'https://www.gnunet.org',
             description : 'Provides API for storing GNS records to a database')

executable ('gnunet-service-namestore',
            gnunetservicenamestore_src,
            dependencies: [libgnunetnamestore_dep,
                           libgnunetutil_dep,
                           libgnunetnamecache_dep,
                           libgnunetgnsrecord_dep,
                           libgnunetidentity_dep,
                           libgnunetstatistics_dep],
            include_directories: [incdir, configuration_inc],
            install: true,
            install_dir: get_option('libdir')/'gnunet'/'libexec')
executable ('gnunet-namestore-fcfsd',
            ['gnunet-namestore-fcfsd.c'],
            dependencies: [libgnunetnamestore_dep,
                           libgnunetutil_dep,
                           libgnunetnamecache_dep,
                           libgnunetgnsrecord_dep,
                           libgnunetidentity_dep,
                           mhd_dep,
                           json_dep,
                           libgnunetjson_dep,
                           libgnunetstatistics_dep],
            include_directories: [incdir, configuration_inc],
            install: true,
            install_dir: get_option('libdir')/'gnunet'/'libexec')


configure_file(copy: true,
               input: 'test_namestore_api.conf',
               output: 'test_namestore_api.conf')

configure_file(copy: true,
               input: 'test_namestore_api_sqlite.conf',
               output: 'test_namestore_api_sqlite.conf')

namestoreapitestnames = [
  'test_namestore_api_lookup_nick',
  'test_namestore_api_monitoring',
  'test_namestore_api_monitoring_existing',
  'test_namestore_api_remove',
  'test_namestore_api_remove_not_existing_record',
  'test_namestore_api_store',
  'test_namestore_api_store_update',
  'test_namestore_api_zone_iteration',
  'test_namestore_api_zone_iteration_nick',
  'test_namestore_api_zone_iteration_specific_zone',
  'test_namestore_api_zone_iteration_stop',
  'test_namestore_api_zone_to_name',
  'test_namestore_api_edit_records'
  ]

if get_option('experimental')
  namestoreapitestnames +='test_namestore_api_edit_records'
endif

foreach tn : namestoreapitestnames
  t = executable (tn + '_sqlite',
            [tn + '.c'],
            dependencies: [
              libgnunettesting_dep,
              libgnunetutil_dep,
              libgnunetgnsrecord_dep,
              libgnunetidentity_dep,
              libgnunetnamestore_dep],
            include_directories: [incdir, configuration_inc],
            install: false)
  test(tn + '_sqlite', t, workdir: meson.current_build_dir(),
    is_parallel: false,
     suite: 'namestore')
  if pq_dep.found()
    t_pq = executable (tn + '_postgres',
              [tn + '.c'],
              dependencies: [
                libgnunettesting_dep,
                libgnunetutil_dep,
                libgnunetgnsrecord_dep,
                libgnunetidentity_dep,
                libgnunetnamestore_dep],
              include_directories: [incdir, configuration_inc],
              install: false)
    test(tn + '_postgres', t, workdir: meson.current_build_dir(),
    is_parallel: false,
       suite: 'namestore')
  endif
endforeach

# FIXME perf tests missing