]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/test/test-tables.c
88e7d10c60b7e5041cfaa85817a161806c7eafd2
[thirdparty/systemd.git] / src / test / test-tables.c
1 /***
2 This file is part of systemd
3
4 Copyright 2013 Zbigniew Jędrzejewski-Szmek
5
6 systemd is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
10
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18 ***/
19
20 #include "automount.h"
21 #include "cgroup.h"
22 #include "compress.h"
23 #include "condition.h"
24 #include "device.h"
25 #include "execute.h"
26 #include "exit-status.h"
27 #include "install.h"
28 #include "job.h"
29 #include "kill.h"
30 #include "log.h"
31 #include "logs-show.h"
32 #include "mount.h"
33 #include "path-lookup.h"
34 #include "path.h"
35 #include "scope.h"
36 #include "service.h"
37 #include "slice.h"
38 #include "snapshot.h"
39 #include "socket-util.h"
40 #include "socket.h"
41 #include "swap.h"
42 #include "target.h"
43 #include "timer.h"
44 #include "unit-name.h"
45 #include "unit.h"
46 #include "util.h"
47 #include "architecture.h"
48 #include "link-config.h"
49 #include "bus-policy.h"
50 #include "journald-server.h"
51
52 #include "test-tables.h"
53
54 int main(int argc, char **argv) {
55 test_table(architecture, ARCHITECTURE);
56 test_table(automount_result, AUTOMOUNT_RESULT);
57 test_table(automount_state, AUTOMOUNT_STATE);
58 test_table(busname_policy_access, BUSNAME_POLICY_ACCESS);
59 test_table(busname_result, BUSNAME_RESULT);
60 test_table(busname_state, BUSNAME_STATE);
61 test_table(cgroup_device_policy, CGROUP_DEVICE_POLICY);
62 test_table(condition_type, CONDITION_TYPE);
63 test_table(device_state, DEVICE_STATE);
64 test_table(exec_input, EXEC_INPUT);
65 test_table(exec_output, EXEC_OUTPUT);
66 test_table(failure_action, SERVICE_FAILURE_ACTION);
67 test_table(job_mode, JOB_MODE);
68 test_table(job_result, JOB_RESULT);
69 test_table(job_state, JOB_STATE);
70 test_table(job_type, JOB_TYPE);
71 test_table(kill_mode, KILL_MODE);
72 test_table(kill_who, KILL_WHO);
73 test_table(log_target, LOG_TARGET);
74 test_table(mac_policy, MACPOLICY);
75 test_table(manager_state, MANAGER_STATE);
76 test_table(mount_exec_command, MOUNT_EXEC_COMMAND);
77 test_table(mount_result, MOUNT_RESULT);
78 test_table(mount_state, MOUNT_STATE);
79 test_table(name_policy, NAMEPOLICY);
80 test_table(notify_access, NOTIFY_ACCESS);
81 test_table(output_mode, OUTPUT_MODE);
82 test_table(path_result, PATH_RESULT);
83 test_table(path_state, PATH_STATE);
84 test_table(path_type, PATH_TYPE);
85 test_table(policy_item_class, POLICY_ITEM_CLASS);
86 test_table(policy_item_type, POLICY_ITEM_TYPE);
87 test_table(protect_home, PROTECT_HOME);
88 test_table(protect_system, PROTECT_SYSTEM);
89 test_table(rlimit, RLIMIT);
90 test_table(scope_result, SCOPE_RESULT);
91 test_table(scope_state, SCOPE_STATE);
92 test_table(service_exec_command, SERVICE_EXEC_COMMAND);
93 test_table(service_restart, SERVICE_RESTART);
94 test_table(service_result, SERVICE_RESULT);
95 test_table(service_state, SERVICE_STATE);
96 test_table(service_type, SERVICE_TYPE);
97 test_table(slice_state, SLICE_STATE);
98 test_table(snapshot_state, SNAPSHOT_STATE);
99 test_table(socket_address_bind_ipv6_only, SOCKET_ADDRESS_BIND_IPV6_ONLY);
100 test_table(socket_exec_command, SOCKET_EXEC_COMMAND);
101 test_table(socket_result, SOCKET_RESULT);
102 test_table(socket_state, SOCKET_STATE);
103 test_table(split_mode, SPLIT);
104 test_table(storage, STORAGE);
105 test_table(swap_exec_command, SWAP_EXEC_COMMAND);
106 test_table(swap_result, SWAP_RESULT);
107 test_table(swap_state, SWAP_STATE);
108 test_table(target_state, TARGET_STATE);
109 test_table(timer_base, TIMER_BASE);
110 test_table(timer_result, TIMER_RESULT);
111 test_table(timer_state, TIMER_STATE);
112 test_table(unit_active_state, UNIT_ACTIVE_STATE);
113 test_table(unit_dependency, UNIT_DEPENDENCY);
114 test_table(unit_file_change_type, UNIT_FILE_CHANGE_TYPE);
115 test_table(unit_file_preset_mode, UNIT_FILE_PRESET);
116 test_table(unit_file_state, UNIT_FILE_STATE);
117 test_table(unit_load_state, UNIT_LOAD_STATE);
118 test_table(unit_type, UNIT_TYPE);
119
120 test_table_sparse(object_compressed, OBJECT_COMPRESSED);
121
122 return EXIT_SUCCESS;
123 }