2 * collectd - src/virt_test.c
3 * Copyright (C) 2016 Francesco Romani <fromani at redhat.com>
5 * collectd - src/ceph_test.c
6 * Copyright (C) 2015 Florian octo Forster
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; only version 2 of the License is applicable.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 * Florian octo Forster <octo at collectd.org>
26 #include "virt.c" /* sic */
28 static virDomainPtr *domains;
29 static int nr_domains;
31 static int setup(void) {
32 if (virInitialize() != 0) {
33 printf("ERROR: virInitialize() != 0\n");
37 conn = virConnectOpen("test:///default");
39 printf("ERROR: virConnectOpen == NULL\n");
46 static int teardown(void) {
48 for (int i = 0; i < nr_domains; ++i)
49 virDomainFree(domains[i]);
54 virConnectClose(conn);
59 #ifdef HAVE_LIST_ALL_DOMAINS
60 DEF_TEST(get_domain_state_notify) {
62 nr_domains = virConnectListAllDomains(conn, &domains,
63 VIR_CONNECT_LIST_DOMAINS_PERSISTENT);
64 if (nr_domains <= 0) {
65 printf("ERROR: virConnectListAllDomains: nr_domains <= 0\n");
69 int ret = get_domain_state_notify(domains[0]);
70 EXPECT_EQ_INT(0, ret);
78 DEF_TEST(persistent_domains_state_notification) {
80 int ret = persistent_domains_state_notification();
81 EXPECT_EQ_INT(0, ret);
89 #ifdef HAVE_LIST_ALL_DOMAINS
90 RUN_TEST(get_domain_state_notify);
92 RUN_TEST(persistent_domains_state_notification);