]> git.proxmox.com Git - mirror_qemu.git/blob - tests/pxe-test.c
tests/pxe-test: Use table of testcases rather than open-coding
[mirror_qemu.git] / tests / pxe-test.c
1 /*
2 * PXE test cases.
3 *
4 * Copyright (c) 2016, 2017 Red Hat Inc.
5 *
6 * Authors:
7 * Michael S. Tsirkin <mst@redhat.com>,
8 * Victor Kaplansky <victork@redhat.com>
9 * Thomas Huth <thuth@redhat.com>
10 *
11 * This work is licensed under the terms of the GNU GPL, version 2 or later.
12 * See the COPYING file in the top-level directory.
13 */
14
15 #include "qemu/osdep.h"
16 #include <glib/gstdio.h>
17 #include "qemu-common.h"
18 #include "libqtest.h"
19 #include "boot-sector.h"
20
21 #define NETNAME "net0"
22
23 static char disk[] = "tests/pxe-test-disk-XXXXXX";
24
25 typedef struct testdef {
26 const char *machine; /* Machine type */
27 const char *model; /* NIC device model */
28 } testdef_t;
29
30 static testdef_t x86_tests[] = {
31 { "pc", "e1000" },
32 { "pc", "virtio-net-pci" },
33 { NULL },
34 };
35
36 static testdef_t x86_tests_slow[] = {
37 { "pc", "ne2k_pci", },
38 { "pc", "i82550", },
39 { "pc", "rtl8139" },
40 { "pc", "vmxnet3" },
41 { NULL },
42 };
43
44 static testdef_t ppc64_tests[] = {
45 { "pseries", "spapr-vlan" },
46 { NULL },
47 };
48
49 static testdef_t ppc64_tests_slow[] = {
50 { "pseries", "virtio-net-pci", },
51 { "pseries", "e1000" },
52 { NULL },
53 };
54
55 static testdef_t s390x_tests[] = {
56 { "s390-ccw-virtio", "virtio-net-ccw" },
57 { NULL },
58 };
59
60 static void test_pxe_one(const testdef_t *test, bool ipv6)
61 {
62 char *args;
63
64 args = g_strdup_printf(
65 "-machine %s,accel=kvm:tcg -nodefaults -boot order=n "
66 "-netdev user,id=" NETNAME ",tftp=./,bootfile=%s,ipv4=%s,ipv6=%s "
67 "-device %s,bootindex=1,netdev=" NETNAME,
68 test->machine, disk, ipv6 ? "off" : "on", ipv6 ? "on" : "off",
69 test->model);
70
71 qtest_start(args);
72 boot_sector_test();
73 qtest_quit(global_qtest);
74 g_free(args);
75 }
76
77 static void test_pxe_ipv4(gconstpointer data)
78 {
79 const testdef_t *test = data;
80
81 test_pxe_one(test, false);
82 }
83
84 static void test_batch(const testdef_t *tests)
85 {
86 int i;
87
88 for (i = 0; tests[i].machine; i++) {
89 const testdef_t *test = &tests[i];
90 char *testname;
91
92 testname = g_strdup_printf("pxe/ipv4/%s/%s",
93 test->machine, test->model);
94 qtest_add_data_func(testname, test, test_pxe_ipv4);
95 g_free(testname);
96 }
97 }
98
99 int main(int argc, char *argv[])
100 {
101 int ret;
102 const char *arch = qtest_get_arch();
103
104 ret = boot_sector_init(disk);
105 if(ret)
106 return ret;
107
108 g_test_init(&argc, &argv, NULL);
109
110 if (strcmp(arch, "i386") == 0 || strcmp(arch, "x86_64") == 0) {
111 test_batch(x86_tests);
112 if (g_test_slow()) {
113 test_batch(x86_tests_slow);
114 }
115 } else if (strcmp(arch, "ppc64") == 0) {
116 test_batch(ppc64_tests);
117 if (g_test_slow()) {
118 test_batch(ppc64_tests_slow);
119 }
120 } else if (g_str_equal(arch, "s390x")) {
121 test_batch(s390x_tests);
122 }
123 ret = g_test_run();
124 boot_sector_cleanup(disk);
125 return ret;
126 }