2 * libqos driver framework
4 * Copyright (c) 2018 Emanuele Giuseppe Esposito <e.emanuelegiuseppe@gmail.com>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License version 2 as published by the Free Software Foundation.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, see <http://www.gnu.org/licenses/>
19 #include "qemu/osdep.h"
21 #include "libqos/qgraph.h"
22 #include "libqos/qgraph_internal.h"
24 #define MACHINE_PC "x86_64/pc"
25 #define MACHINE_RASPI2 "arm/raspi2"
26 #define I440FX "i440FX-pcihost"
27 #define PCIBUS_PC "pcibus-pc"
29 #define PCIBUS "pci-bus"
30 #define SDHCI_PCI "sdhci-pci"
31 #define SDHCI_MM "generic-sdhci"
32 #define REGISTER_TEST "register-test"
36 static void *machinefunct(QTestState
*qts
)
41 static void *driverfunct(void *obj
, QGuestAllocator
*machine
, void *arg
)
46 static void testfunct(void *obj
, void *arg
, QGuestAllocator
*alloc
)
51 static void check_interface(const char *interface
)
53 g_assert_cmpint(qos_graph_has_machine(interface
), ==, FALSE
);
54 g_assert_nonnull(qos_graph_get_node(interface
));
55 g_assert_cmpint(qos_graph_has_node(interface
), ==, TRUE
);
56 g_assert_cmpint(qos_graph_get_node_type(interface
), ==, QNODE_INTERFACE
);
57 qos_graph_node_set_availability(interface
, TRUE
);
58 g_assert_cmpint(qos_graph_get_node_availability(interface
), ==, TRUE
);
61 static void check_machine(const char *machine
)
63 qos_node_create_machine(machine
, machinefunct
);
64 g_assert_nonnull(qos_graph_get_machine(machine
));
65 g_assert_cmpint(qos_graph_has_machine(machine
), ==, TRUE
);
66 g_assert_nonnull(qos_graph_get_node(machine
));
67 g_assert_cmpint(qos_graph_get_node_availability(machine
), ==, FALSE
);
68 qos_graph_node_set_availability(machine
, TRUE
);
69 g_assert_cmpint(qos_graph_get_node_availability(machine
), ==, TRUE
);
70 g_assert_cmpint(qos_graph_has_node(machine
), ==, TRUE
);
71 g_assert_cmpint(qos_graph_get_node_type(machine
), ==, QNODE_MACHINE
);
74 static void check_contains(const char *machine
, const char *driver
)
77 qos_node_contains(machine
, driver
, NULL
);
79 edge
= qos_graph_get_edge(machine
, driver
);
80 g_assert_nonnull(edge
);
81 g_assert_cmpint(qos_graph_edge_get_type(edge
), ==, QEDGE_CONTAINS
);
82 g_assert_cmpint(qos_graph_has_edge(machine
, driver
), ==, TRUE
);
85 static void check_produces(const char *machine
, const char *interface
)
89 qos_node_produces(machine
, interface
);
90 check_interface(interface
);
91 edge
= qos_graph_get_edge(machine
, interface
);
92 g_assert_nonnull(edge
);
93 g_assert_cmpint(qos_graph_edge_get_type(edge
), ==,
95 g_assert_cmpint(qos_graph_has_edge(machine
, interface
), ==, TRUE
);
98 static void check_consumes(const char *driver
, const char *interface
)
102 qos_node_consumes(driver
, interface
, NULL
);
103 check_interface(interface
);
104 edge
= qos_graph_get_edge(interface
, driver
);
105 g_assert_nonnull(edge
);
106 g_assert_cmpint(qos_graph_edge_get_type(edge
), ==, QEDGE_CONSUMED_BY
);
107 g_assert_cmpint(qos_graph_has_edge(interface
, driver
), ==, TRUE
);
110 static void check_driver(const char *driver
)
112 qos_node_create_driver(driver
, driverfunct
);
113 g_assert_cmpint(qos_graph_has_machine(driver
), ==, FALSE
);
114 g_assert_nonnull(qos_graph_get_node(driver
));
115 g_assert_cmpint(qos_graph_has_node(driver
), ==, TRUE
);
116 g_assert_cmpint(qos_graph_get_node_type(driver
), ==, QNODE_DRIVER
);
117 g_assert_cmpint(qos_graph_get_node_availability(driver
), ==, FALSE
);
118 qos_graph_node_set_availability(driver
, TRUE
);
119 g_assert_cmpint(qos_graph_get_node_availability(driver
), ==, TRUE
);
122 static void check_test(const char *test
, const char *interface
)
125 char *full_name
= g_strdup_printf("%s-tests/%s", interface
, test
);
127 qos_add_test(test
, interface
, testfunct
, NULL
);
128 g_assert_cmpint(qos_graph_has_machine(test
), ==, FALSE
);
129 g_assert_cmpint(qos_graph_has_machine(full_name
), ==, FALSE
);
130 g_assert_nonnull(qos_graph_get_node(full_name
));
131 g_assert_cmpint(qos_graph_has_node(full_name
), ==, TRUE
);
132 g_assert_cmpint(qos_graph_get_node_type(full_name
), ==, QNODE_TEST
);
133 edge
= qos_graph_get_edge(interface
, full_name
);
134 g_assert_nonnull(edge
);
135 g_assert_cmpint(qos_graph_edge_get_type(edge
), ==,
137 g_assert_cmpint(qos_graph_has_edge(interface
, full_name
), ==, TRUE
);
138 g_assert_cmpint(qos_graph_get_node_availability(full_name
), ==, TRUE
);
139 qos_graph_node_set_availability(full_name
, FALSE
);
140 g_assert_cmpint(qos_graph_get_node_availability(full_name
), ==, FALSE
);
144 static void count_each_test(QOSGraphNode
*path
, int len
)
149 static void check_leaf_discovered(int n
)
152 qos_graph_foreach_test_path(count_each_test
);
153 g_assert_cmpint(n
, ==, npath
);
156 /* G_Test functions */
158 static void init_nop(void)
164 static void test_machine(void)
167 check_machine(MACHINE_PC
);
171 static void test_contains(void)
174 check_contains(MACHINE_PC
, I440FX
);
175 g_assert_null(qos_graph_get_machine(MACHINE_PC
));
176 g_assert_null(qos_graph_get_machine(I440FX
));
177 g_assert_null(qos_graph_get_node(MACHINE_PC
));
178 g_assert_null(qos_graph_get_node(I440FX
));
182 static void test_multiple_contains(void)
185 check_contains(MACHINE_PC
, I440FX
);
186 check_contains(MACHINE_PC
, PCIBUS_PC
);
190 static void test_produces(void)
193 check_produces(MACHINE_PC
, I440FX
);
194 g_assert_null(qos_graph_get_machine(MACHINE_PC
));
195 g_assert_null(qos_graph_get_machine(I440FX
));
196 g_assert_null(qos_graph_get_node(MACHINE_PC
));
197 g_assert_nonnull(qos_graph_get_node(I440FX
));
201 static void test_multiple_produces(void)
204 check_produces(MACHINE_PC
, I440FX
);
205 check_produces(MACHINE_PC
, PCIBUS_PC
);
209 static void test_consumes(void)
212 check_consumes(I440FX
, SDHCI
);
213 g_assert_null(qos_graph_get_machine(I440FX
));
214 g_assert_null(qos_graph_get_machine(SDHCI
));
215 g_assert_null(qos_graph_get_node(I440FX
));
216 g_assert_nonnull(qos_graph_get_node(SDHCI
));
220 static void test_multiple_consumes(void)
223 check_consumes(I440FX
, SDHCI
);
224 check_consumes(PCIBUS_PC
, SDHCI
);
228 static void test_driver(void)
231 check_driver(I440FX
);
235 static void test_test(void)
238 check_test(REGISTER_TEST
, SDHCI
);
242 static void test_machine_contains_driver(void)
245 check_machine(MACHINE_PC
);
246 check_driver(I440FX
);
247 check_contains(MACHINE_PC
, I440FX
);
251 static void test_driver_contains_driver(void)
254 check_driver(PCIBUS_PC
);
255 check_driver(I440FX
);
256 check_contains(PCIBUS_PC
, I440FX
);
260 static void test_machine_produces_interface(void)
263 check_machine(MACHINE_PC
);
264 check_produces(MACHINE_PC
, SDHCI
);
268 static void test_driver_produces_interface(void)
271 check_driver(I440FX
);
272 check_produces(I440FX
, SDHCI
);
276 static void test_machine_consumes_interface(void)
279 check_machine(MACHINE_PC
);
280 check_consumes(MACHINE_PC
, SDHCI
);
284 static void test_driver_consumes_interface(void)
287 check_driver(I440FX
);
288 check_consumes(I440FX
, SDHCI
);
292 static void test_test_consumes_interface(void)
295 check_test(REGISTER_TEST
, SDHCI
);
299 static void test_full_sample(void)
302 check_machine(MACHINE_PC
);
303 check_contains(MACHINE_PC
, I440FX
);
304 check_driver(I440FX
);
305 check_driver(PCIBUS_PC
);
306 check_contains(I440FX
, PCIBUS_PC
);
307 check_produces(PCIBUS_PC
, PCIBUS
);
308 check_driver(SDHCI_PCI
);
309 qos_node_consumes(SDHCI_PCI
, PCIBUS
, NULL
);
310 check_produces(SDHCI_PCI
, SDHCI
);
311 check_driver(SDHCI_MM
);
312 check_produces(SDHCI_MM
, SDHCI
);
313 qos_add_test(REGISTER_TEST
, SDHCI
, testfunct
, NULL
);
314 check_leaf_discovered(1);
319 static void test_full_sample_raspi(void)
322 check_machine(MACHINE_PC
);
323 check_contains(MACHINE_PC
, I440FX
);
324 check_driver(I440FX
);
325 check_driver(PCIBUS_PC
);
326 check_contains(I440FX
, PCIBUS_PC
);
327 check_produces(PCIBUS_PC
, PCIBUS
);
328 check_driver(SDHCI_PCI
);
329 qos_node_consumes(SDHCI_PCI
, PCIBUS
, NULL
);
330 check_produces(SDHCI_PCI
, SDHCI
);
331 check_machine(MACHINE_RASPI2
);
332 check_contains(MACHINE_RASPI2
, SDHCI_MM
);
333 check_driver(SDHCI_MM
);
334 check_produces(SDHCI_MM
, SDHCI
);
335 qos_add_test(REGISTER_TEST
, SDHCI
, testfunct
, NULL
);
337 check_leaf_discovered(2);
341 static void test_cycle(void)
344 check_machine(MACHINE_RASPI2
);
348 check_contains(MACHINE_RASPI2
, "B");
349 check_contains("B", "C");
350 check_contains("C", "D");
351 check_contains("D", MACHINE_RASPI2
);
352 check_leaf_discovered(0);
357 static void test_two_test_same_interface(void)
360 check_machine(MACHINE_RASPI2
);
361 check_produces(MACHINE_RASPI2
, "B");
362 qos_add_test("C", "B", testfunct
, NULL
);
363 qos_add_test("D", "B", testfunct
, NULL
);
364 check_contains(MACHINE_RASPI2
, "B");
365 check_leaf_discovered(4);
370 static void test_test_in_path(void)
373 check_machine(MACHINE_RASPI2
);
374 check_produces(MACHINE_RASPI2
, "B");
375 qos_add_test("C", "B", testfunct
, NULL
);
377 check_consumes("D", "B");
378 check_produces("D", "E");
379 qos_add_test("F", "E", testfunct
, NULL
);
380 check_leaf_discovered(2);
385 static void test_double_edge(void)
388 check_machine(MACHINE_RASPI2
);
389 check_produces("B", "C");
390 qos_node_consumes("C", "B", NULL
);
391 qos_add_test("D", "C", testfunct
, NULL
);
392 check_contains(MACHINE_RASPI2
, "B");
397 int main(int argc
, char **argv
)
399 g_test_init(&argc
, &argv
, NULL
);
400 g_test_add_func("/qgraph/init_nop", init_nop
);
401 g_test_add_func("/qgraph/test_machine", test_machine
);
402 g_test_add_func("/qgraph/test_contains", test_contains
);
403 g_test_add_func("/qgraph/test_multiple_contains", test_multiple_contains
);
404 g_test_add_func("/qgraph/test_produces", test_produces
);
405 g_test_add_func("/qgraph/test_multiple_produces", test_multiple_produces
);
406 g_test_add_func("/qgraph/test_consumes", test_consumes
);
407 g_test_add_func("/qgraph/test_multiple_consumes",
408 test_multiple_consumes
);
409 g_test_add_func("/qgraph/test_driver", test_driver
);
410 g_test_add_func("/qgraph/test_test", test_test
);
411 g_test_add_func("/qgraph/test_machine_contains_driver",
412 test_machine_contains_driver
);
413 g_test_add_func("/qgraph/test_driver_contains_driver",
414 test_driver_contains_driver
);
415 g_test_add_func("/qgraph/test_machine_produces_interface",
416 test_machine_produces_interface
);
417 g_test_add_func("/qgraph/test_driver_produces_interface",
418 test_driver_produces_interface
);
419 g_test_add_func("/qgraph/test_machine_consumes_interface",
420 test_machine_consumes_interface
);
421 g_test_add_func("/qgraph/test_driver_consumes_interface",
422 test_driver_consumes_interface
);
423 g_test_add_func("/qgraph/test_test_consumes_interface",
424 test_test_consumes_interface
);
425 g_test_add_func("/qgraph/test_full_sample", test_full_sample
);
426 g_test_add_func("/qgraph/test_full_sample_raspi", test_full_sample_raspi
);
427 g_test_add_func("/qgraph/test_cycle", test_cycle
);
428 g_test_add_func("/qgraph/test_two_test_same_interface",
429 test_two_test_same_interface
);
430 g_test_add_func("/qgraph/test_test_in_path", test_test_in_path
);
431 g_test_add_func("/qgraph/test_double_edge", test_double_edge
);