summaryrefslogtreecommitdiff
path: root/tests/meson.build
blob: dedbe6774d5d921b05dce00e825e061d2e59f5f7 (plain)
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
libmocklibc = subproject('mocklibc').get_variable('libmocklibc')

envs = environment()
# Enable debug messages and abort on critical warnings
envs.set('G_DEBUG', 'fatal-criticals')
envs.set('G_MESSAGES_DEBUG', 'all')
envs.set('top_srcdir', meson.source_root())
envs.set('top_builddir', meson.build_root())
envs.set('MOCKLIBC_LD_PRELOAD', libmocklibc.full_path())

# Setup paths
accountsservice_build_dir = meson.build_root() / 'src' / 'libaccountsservice'
envs.prepend('LD_LIBRARY_PATH', accountsservice_build_dir)

python3_test_modules_found = false
if get_option('introspection')
    python3 = find_program('python3') # No meson without it!
    python3_test_modules_found = true
    python3_test_modules = [
        'gi',
        'dbusmock',
    ]

    foreach module : python3_test_modules
        if run_command(python3, '-c', 'import @0@'.format(module), check: false).returncode() != 0
            python3_test_modules_found = false
            warning('Python3 module \'' + module + '\' needed by test suite not found')
            break
        endif
    endforeach
endif

tests = [
    'libaccountsservice',
    'daemon'
]

if python3_test_modules_found
    envs.prepend('GI_TYPELIB_PATH', accountsservice_build_dir)
    unittest_inspector = find_program('unittest_inspector.py')

    foreach test_name: tests
        test_file = files('test-' + test_name + '.py')
        base_args = test_file
        suite = ['accounts-service']

        r = run_command(unittest_inspector, test_file, check: true)
        unit_tests = r.stdout().strip().split('\n')

        if r.returncode() == 0 and unit_tests.length() > 0
            suite += test_name
        else
            unit_tests = [test_name]
        endif

        foreach ut: unit_tests
            ut_suite = suite
            ut_args = base_args
            if unit_tests.length() > 1
                ut_args += ut
                ut_suite += ut.split('.')[0]
            endif
            test(ut,
                python3,
                args: ut_args,
                suite: ut_suite,
                depends: as_gir_gen_sources,
                env: envs,
            )
        endforeach
    endforeach
else
    warning('Skipping AccuntsService tests as introspection bindings are missing')

    foreach test_name: tests
        test(test_name, find_program('sh'), args: ['-c', 'exit 77'])
    endforeach
endif

tests = [ 'util' ]

deps = [
  gio_unix_dep,
  glib_dep,
  polkit_gobject_dep,
]

foreach test_name : tests
  exe = executable(test_name, '@0@.c'.format(test_name),
                   include_directories: top_inc,
                   c_args: cflags,
                   dependencies: deps)
  test(test_name, exe,
    depends: daemon,
    env: envs,
  )
endforeach