123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435 |
- /*
- * libqos driver framework
- *
- * Copyright (c) 2018 Emanuele Giuseppe Esposito <e.emanuelegiuseppe@gmail.com>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License version 2 as published by the Free Software Foundation.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, see <http://www.gnu.org/licenses/>
- */
- #include "qemu/osdep.h"
- #include "libqtest.h"
- #include "libqos/qgraph.h"
- #include "libqos/qgraph_internal.h"
- #define MACHINE_PC "x86_64/pc"
- #define MACHINE_RASPI2 "arm/raspi2"
- #define I440FX "i440FX-pcihost"
- #define PCIBUS_PC "pcibus-pc"
- #define SDHCI "sdhci"
- #define PCIBUS "pci-bus"
- #define SDHCI_PCI "sdhci-pci"
- #define SDHCI_MM "generic-sdhci"
- #define REGISTER_TEST "register-test"
- int npath;
- static void *machinefunct(QTestState *qts)
- {
- return NULL;
- }
- static void *driverfunct(void *obj, QGuestAllocator *machine, void *arg)
- {
- return NULL;
- }
- static void testfunct(void *obj, void *arg, QGuestAllocator *alloc)
- {
- return;
- }
- static void check_interface(const char *interface)
- {
- g_assert_cmpint(qos_graph_has_machine(interface), ==, FALSE);
- g_assert_nonnull(qos_graph_get_node(interface));
- g_assert_cmpint(qos_graph_has_node(interface), ==, TRUE);
- g_assert_cmpint(qos_graph_get_node_type(interface), ==, QNODE_INTERFACE);
- qos_graph_node_set_availability(interface, TRUE);
- g_assert_cmpint(qos_graph_get_node_availability(interface), ==, TRUE);
- }
- static void check_machine(const char *machine)
- {
- qos_node_create_machine(machine, machinefunct);
- g_assert_nonnull(qos_graph_get_machine(machine));
- g_assert_cmpint(qos_graph_has_machine(machine), ==, TRUE);
- g_assert_nonnull(qos_graph_get_node(machine));
- g_assert_cmpint(qos_graph_get_node_availability(machine), ==, FALSE);
- qos_graph_node_set_availability(machine, TRUE);
- g_assert_cmpint(qos_graph_get_node_availability(machine), ==, TRUE);
- g_assert_cmpint(qos_graph_has_node(machine), ==, TRUE);
- g_assert_cmpint(qos_graph_get_node_type(machine), ==, QNODE_MACHINE);
- }
- static void check_contains(const char *machine, const char *driver)
- {
- QOSGraphEdge *edge;
- qos_node_contains(machine, driver, NULL);
- edge = qos_graph_get_edge(machine, driver);
- g_assert_nonnull(edge);
- g_assert_cmpint(qos_graph_edge_get_type(edge), ==, QEDGE_CONTAINS);
- g_assert_cmpint(qos_graph_has_edge(machine, driver), ==, TRUE);
- }
- static void check_produces(const char *machine, const char *interface)
- {
- QOSGraphEdge *edge;
- qos_node_produces(machine, interface);
- check_interface(interface);
- edge = qos_graph_get_edge(machine, interface);
- g_assert_nonnull(edge);
- g_assert_cmpint(qos_graph_edge_get_type(edge), ==,
- QEDGE_PRODUCES);
- g_assert_cmpint(qos_graph_has_edge(machine, interface), ==, TRUE);
- }
- static void check_consumes(const char *driver, const char *interface)
- {
- QOSGraphEdge *edge;
- qos_node_consumes(driver, interface, NULL);
- check_interface(interface);
- edge = qos_graph_get_edge(interface, driver);
- g_assert_nonnull(edge);
- g_assert_cmpint(qos_graph_edge_get_type(edge), ==, QEDGE_CONSUMED_BY);
- g_assert_cmpint(qos_graph_has_edge(interface, driver), ==, TRUE);
- }
- static void check_driver(const char *driver)
- {
- qos_node_create_driver(driver, driverfunct);
- g_assert_cmpint(qos_graph_has_machine(driver), ==, FALSE);
- g_assert_nonnull(qos_graph_get_node(driver));
- g_assert_cmpint(qos_graph_has_node(driver), ==, TRUE);
- g_assert_cmpint(qos_graph_get_node_type(driver), ==, QNODE_DRIVER);
- g_assert_cmpint(qos_graph_get_node_availability(driver), ==, FALSE);
- qos_graph_node_set_availability(driver, TRUE);
- g_assert_cmpint(qos_graph_get_node_availability(driver), ==, TRUE);
- }
- static void check_test(const char *test, const char *interface)
- {
- QOSGraphEdge *edge;
- char *full_name = g_strdup_printf("%s-tests/%s", interface, test);
- qos_add_test(test, interface, testfunct, NULL);
- g_assert_cmpint(qos_graph_has_machine(test), ==, FALSE);
- g_assert_cmpint(qos_graph_has_machine(full_name), ==, FALSE);
- g_assert_nonnull(qos_graph_get_node(full_name));
- g_assert_cmpint(qos_graph_has_node(full_name), ==, TRUE);
- g_assert_cmpint(qos_graph_get_node_type(full_name), ==, QNODE_TEST);
- edge = qos_graph_get_edge(interface, full_name);
- g_assert_nonnull(edge);
- g_assert_cmpint(qos_graph_edge_get_type(edge), ==,
- QEDGE_CONSUMED_BY);
- g_assert_cmpint(qos_graph_has_edge(interface, full_name), ==, TRUE);
- g_assert_cmpint(qos_graph_get_node_availability(full_name), ==, TRUE);
- qos_graph_node_set_availability(full_name, FALSE);
- g_assert_cmpint(qos_graph_get_node_availability(full_name), ==, FALSE);
- g_free(full_name);
- }
- static void count_each_test(QOSGraphNode *path, int len)
- {
- npath++;
- }
- static void check_leaf_discovered(int n)
- {
- npath = 0;
- qos_graph_foreach_test_path(count_each_test);
- g_assert_cmpint(n, ==, npath);
- }
- /* G_Test functions */
- static void init_nop(void)
- {
- qos_graph_init();
- qos_graph_destroy();
- }
- static void test_machine(void)
- {
- qos_graph_init();
- check_machine(MACHINE_PC);
- qos_graph_destroy();
- }
- static void test_contains(void)
- {
- qos_graph_init();
- check_contains(MACHINE_PC, I440FX);
- g_assert_null(qos_graph_get_machine(MACHINE_PC));
- g_assert_null(qos_graph_get_machine(I440FX));
- g_assert_null(qos_graph_get_node(MACHINE_PC));
- g_assert_null(qos_graph_get_node(I440FX));
- qos_graph_destroy();
- }
- static void test_multiple_contains(void)
- {
- qos_graph_init();
- check_contains(MACHINE_PC, I440FX);
- check_contains(MACHINE_PC, PCIBUS_PC);
- qos_graph_destroy();
- }
- static void test_produces(void)
- {
- qos_graph_init();
- check_produces(MACHINE_PC, I440FX);
- g_assert_null(qos_graph_get_machine(MACHINE_PC));
- g_assert_null(qos_graph_get_machine(I440FX));
- g_assert_null(qos_graph_get_node(MACHINE_PC));
- g_assert_nonnull(qos_graph_get_node(I440FX));
- qos_graph_destroy();
- }
- static void test_multiple_produces(void)
- {
- qos_graph_init();
- check_produces(MACHINE_PC, I440FX);
- check_produces(MACHINE_PC, PCIBUS_PC);
- qos_graph_destroy();
- }
- static void test_consumes(void)
- {
- qos_graph_init();
- check_consumes(I440FX, SDHCI);
- g_assert_null(qos_graph_get_machine(I440FX));
- g_assert_null(qos_graph_get_machine(SDHCI));
- g_assert_null(qos_graph_get_node(I440FX));
- g_assert_nonnull(qos_graph_get_node(SDHCI));
- qos_graph_destroy();
- }
- static void test_multiple_consumes(void)
- {
- qos_graph_init();
- check_consumes(I440FX, SDHCI);
- check_consumes(PCIBUS_PC, SDHCI);
- qos_graph_destroy();
- }
- static void test_driver(void)
- {
- qos_graph_init();
- check_driver(I440FX);
- qos_graph_destroy();
- }
- static void test_test(void)
- {
- qos_graph_init();
- check_test(REGISTER_TEST, SDHCI);
- qos_graph_destroy();
- }
- static void test_machine_contains_driver(void)
- {
- qos_graph_init();
- check_machine(MACHINE_PC);
- check_driver(I440FX);
- check_contains(MACHINE_PC, I440FX);
- qos_graph_destroy();
- }
- static void test_driver_contains_driver(void)
- {
- qos_graph_init();
- check_driver(PCIBUS_PC);
- check_driver(I440FX);
- check_contains(PCIBUS_PC, I440FX);
- qos_graph_destroy();
- }
- static void test_machine_produces_interface(void)
- {
- qos_graph_init();
- check_machine(MACHINE_PC);
- check_produces(MACHINE_PC, SDHCI);
- qos_graph_destroy();
- }
- static void test_driver_produces_interface(void)
- {
- qos_graph_init();
- check_driver(I440FX);
- check_produces(I440FX, SDHCI);
- qos_graph_destroy();
- }
- static void test_machine_consumes_interface(void)
- {
- qos_graph_init();
- check_machine(MACHINE_PC);
- check_consumes(MACHINE_PC, SDHCI);
- qos_graph_destroy();
- }
- static void test_driver_consumes_interface(void)
- {
- qos_graph_init();
- check_driver(I440FX);
- check_consumes(I440FX, SDHCI);
- qos_graph_destroy();
- }
- static void test_test_consumes_interface(void)
- {
- qos_graph_init();
- check_test(REGISTER_TEST, SDHCI);
- qos_graph_destroy();
- }
- static void test_full_sample(void)
- {
- qos_graph_init();
- check_machine(MACHINE_PC);
- check_contains(MACHINE_PC, I440FX);
- check_driver(I440FX);
- check_driver(PCIBUS_PC);
- check_contains(I440FX, PCIBUS_PC);
- check_produces(PCIBUS_PC, PCIBUS);
- check_driver(SDHCI_PCI);
- qos_node_consumes(SDHCI_PCI, PCIBUS, NULL);
- check_produces(SDHCI_PCI, SDHCI);
- check_driver(SDHCI_MM);
- check_produces(SDHCI_MM, SDHCI);
- qos_add_test(REGISTER_TEST, SDHCI, testfunct, NULL);
- check_leaf_discovered(1);
- qos_print_graph();
- qos_graph_destroy();
- }
- static void test_full_sample_raspi(void)
- {
- qos_graph_init();
- check_machine(MACHINE_PC);
- check_contains(MACHINE_PC, I440FX);
- check_driver(I440FX);
- check_driver(PCIBUS_PC);
- check_contains(I440FX, PCIBUS_PC);
- check_produces(PCIBUS_PC, PCIBUS);
- check_driver(SDHCI_PCI);
- qos_node_consumes(SDHCI_PCI, PCIBUS, NULL);
- check_produces(SDHCI_PCI, SDHCI);
- check_machine(MACHINE_RASPI2);
- check_contains(MACHINE_RASPI2, SDHCI_MM);
- check_driver(SDHCI_MM);
- check_produces(SDHCI_MM, SDHCI);
- qos_add_test(REGISTER_TEST, SDHCI, testfunct, NULL);
- qos_print_graph();
- check_leaf_discovered(2);
- qos_graph_destroy();
- }
- static void test_cycle(void)
- {
- qos_graph_init();
- check_machine(MACHINE_RASPI2);
- check_driver("B");
- check_driver("C");
- check_driver("D");
- check_contains(MACHINE_RASPI2, "B");
- check_contains("B", "C");
- check_contains("C", "D");
- check_contains("D", MACHINE_RASPI2);
- check_leaf_discovered(0);
- qos_print_graph();
- qos_graph_destroy();
- }
- static void test_two_test_same_interface(void)
- {
- qos_graph_init();
- check_machine(MACHINE_RASPI2);
- check_produces(MACHINE_RASPI2, "B");
- qos_add_test("C", "B", testfunct, NULL);
- qos_add_test("D", "B", testfunct, NULL);
- check_contains(MACHINE_RASPI2, "B");
- check_leaf_discovered(4);
- qos_print_graph();
- qos_graph_destroy();
- }
- static void test_test_in_path(void)
- {
- qos_graph_init();
- check_machine(MACHINE_RASPI2);
- check_produces(MACHINE_RASPI2, "B");
- qos_add_test("C", "B", testfunct, NULL);
- check_driver("D");
- check_consumes("D", "B");
- check_produces("D", "E");
- qos_add_test("F", "E", testfunct, NULL);
- check_leaf_discovered(2);
- qos_print_graph();
- qos_graph_destroy();
- }
- static void test_double_edge(void)
- {
- qos_graph_init();
- check_machine(MACHINE_RASPI2);
- check_produces("B", "C");
- qos_node_consumes("C", "B", NULL);
- qos_add_test("D", "C", testfunct, NULL);
- check_contains(MACHINE_RASPI2, "B");
- qos_print_graph();
- qos_graph_destroy();
- }
- int main(int argc, char **argv)
- {
- g_test_init(&argc, &argv, NULL);
- g_test_add_func("/qgraph/init_nop", init_nop);
- g_test_add_func("/qgraph/test_machine", test_machine);
- g_test_add_func("/qgraph/test_contains", test_contains);
- g_test_add_func("/qgraph/test_multiple_contains", test_multiple_contains);
- g_test_add_func("/qgraph/test_produces", test_produces);
- g_test_add_func("/qgraph/test_multiple_produces", test_multiple_produces);
- g_test_add_func("/qgraph/test_consumes", test_consumes);
- g_test_add_func("/qgraph/test_multiple_consumes",
- test_multiple_consumes);
- g_test_add_func("/qgraph/test_driver", test_driver);
- g_test_add_func("/qgraph/test_test", test_test);
- g_test_add_func("/qgraph/test_machine_contains_driver",
- test_machine_contains_driver);
- g_test_add_func("/qgraph/test_driver_contains_driver",
- test_driver_contains_driver);
- g_test_add_func("/qgraph/test_machine_produces_interface",
- test_machine_produces_interface);
- g_test_add_func("/qgraph/test_driver_produces_interface",
- test_driver_produces_interface);
- g_test_add_func("/qgraph/test_machine_consumes_interface",
- test_machine_consumes_interface);
- g_test_add_func("/qgraph/test_driver_consumes_interface",
- test_driver_consumes_interface);
- g_test_add_func("/qgraph/test_test_consumes_interface",
- test_test_consumes_interface);
- g_test_add_func("/qgraph/test_full_sample", test_full_sample);
- g_test_add_func("/qgraph/test_full_sample_raspi", test_full_sample_raspi);
- g_test_add_func("/qgraph/test_cycle", test_cycle);
- g_test_add_func("/qgraph/test_two_test_same_interface",
- test_two_test_same_interface);
- g_test_add_func("/qgraph/test_test_in_path", test_test_in_path);
- g_test_add_func("/qgraph/test_double_edge", test_double_edge);
- g_test_run();
- return 0;
- }
|