monitor/hmp: move hmp_drive_mirror and hmp_drive_backup to block-hmp-cmds.c
[qemu/ar7.git] / tests / vm / freebsd
blob86770878b67b3d8287698ac08aae728ca054c1cb
1 #!/usr/bin/env python3
3 # FreeBSD VM image
5 # Copyright 2017-2019 Red Hat Inc.
7 # Authors:
8 #  Fam Zheng <famz@redhat.com>
9 #  Gerd Hoffmann <kraxel@redhat.com>
11 # This code is licensed under the GPL version 2 or later.  See
12 # the COPYING file in the top-level directory.
15 import os
16 import re
17 import sys
18 import time
19 import socket
20 import subprocess
21 import basevm
23 class FreeBSDVM(basevm.BaseVM):
24     name = "freebsd"
25     arch = "x86_64"
27     link = "https://download.freebsd.org/ftp/releases/ISO-IMAGES/12.0/FreeBSD-12.0-RELEASE-amd64-disc1.iso.xz"
28     csum = "1d40015bea89d05b8bd13e2ed80c40b522a9ec1abd8e7c8b80954fb485fb99db"
29     size = "20G"
30     pkgs = [
31         # build tools
32         "git",
33         "pkgconf",
34         "bzip2",
35         "python37",
37         # gnu tools
38         "bash",
39         "gmake",
40         "gsed",
41         "flex", "bison",
43         # libs: crypto
44         "gnutls",
46         # libs: images
47         "jpeg-turbo",
48         "png",
50         # libs: ui
51         "sdl2",
52         "gtk3",
53         "libxkbcommon",
55         # libs: opengl
56         "libepoxy",
57         "mesa-libs",
59         # libs: migration
60         "zstd",
61     ]
63     BUILD_SCRIPT = """
64         set -e;
65         rm -rf /home/qemu/qemu-test.*
66         cd $(mktemp -d /home/qemu/qemu-test.XXXXXX);
67         mkdir src build; cd src;
68         tar -xf /dev/vtbd1;
69         cd ../build
70         ../src/configure --python=python3.7 {configure_opts};
71         gmake --output-sync -j{jobs} {target} {verbose};
72     """
74     def console_boot_serial(self):
75         self.console_wait_send("Autoboot", "3")
76         self.console_wait_send("OK", "set console=comconsole\n")
77         self.console_wait_send("OK", "boot\n")
79     def build_image(self, img):
80         self.print_step("Downloading install iso")
81         cimg = self._download_with_cache(self.link, sha256sum=self.csum)
82         img_tmp = img + ".tmp"
83         iso = img + ".install.iso"
84         iso_xz = iso + ".xz"
86         self.print_step("Preparing iso and disk image")
87         subprocess.check_call(["cp", "-f", cimg, iso_xz])
88         subprocess.check_call(["xz", "-dvf", iso_xz])
89         self.exec_qemu_img("create", "-f", "qcow2", img_tmp, self.size)
91         self.print_step("Booting installer")
92         self.boot(img_tmp, extra_args = [
93             "-bios", "pc-bios/bios-256k.bin",
94             "-machine", "graphics=off",
95             "-cdrom", iso
96         ])
97         self.console_init()
98         self.console_boot_serial()
99         self.console_wait_send("Console type",          "xterm\n")
101         # pre-install configuration
102         self.console_wait_send("Welcome",               "\n")
103         self.console_wait_send("Keymap Selection",      "\n")
104         self.console_wait_send("Set Hostname",          "freebsd\n")
105         self.console_wait_send("Distribution Select",   "\n")
106         self.console_wait_send("Partitioning",          "\n")
107         self.console_wait_send("Partition",             "\n")
108         self.console_wait_send("Scheme",                "\n")
109         self.console_wait_send("Editor",                "f")
110         self.console_wait_send("Confirmation",          "c")
112         self.print_step("Installation started now, this will take a while")
114         # post-install configuration
115         self.console_wait("New Password:")
116         self.console_send("%s\n" % self.ROOT_PASS)
117         self.console_wait("Retype New Password:")
118         self.console_send("%s\n" % self.ROOT_PASS)
120         self.console_wait_send("Network Configuration", "\n")
121         self.console_wait_send("IPv4",                  "y")
122         self.console_wait_send("DHCP",                  "y")
123         self.console_wait_send("IPv6",                  "n")
124         self.console_wait_send("Resolver",              "\n")
126         self.console_wait_send("Time Zone Selector",    "a\n")
127         self.console_wait_send("Confirmation",          "y")
128         self.console_wait_send("Time & Date",           "\n")
129         self.console_wait_send("Time & Date",           "\n")
131         self.console_wait_send("System Configuration",  "\n")
132         self.console_wait_send("System Hardening",      "\n")
134         # qemu user
135         self.console_wait_send("Add User Accounts", "y")
136         self.console_wait("Username")
137         self.console_send("%s\n" % self.GUEST_USER)
138         self.console_wait("Full name")
139         self.console_send("%s\n" % self.GUEST_USER)
140         self.console_wait_send("Uid",                   "\n")
141         self.console_wait_send("Login group",           "\n")
142         self.console_wait_send("Login group",           "\n")
143         self.console_wait_send("Login class",           "\n")
144         self.console_wait_send("Shell",                 "\n")
145         self.console_wait_send("Home directory",        "\n")
146         self.console_wait_send("Home directory perm",   "\n")
147         self.console_wait_send("Use password",          "\n")
148         self.console_wait_send("Use an empty password", "\n")
149         self.console_wait_send("Use a random password", "\n")
150         self.console_wait("Enter password:")
151         self.console_send("%s\n" % self.GUEST_PASS)
152         self.console_wait("Enter password again:")
153         self.console_send("%s\n" % self.GUEST_PASS)
154         self.console_wait_send("Lock out",              "\n")
155         self.console_wait_send("OK",                    "yes\n")
156         self.console_wait_send("Add another user",      "no\n")
158         self.console_wait_send("Final Configuration",   "\n")
159         self.console_wait_send("Manual Configuration",  "\n")
160         self.console_wait_send("Complete",              "\n")
162         self.print_step("Installation finished, rebooting")
163         self.console_boot_serial()
165         # setup qemu user
166         prompt = "$"
167         self.console_ssh_init(prompt, self.GUEST_USER, self.GUEST_PASS)
168         self.console_wait_send(prompt, "exit\n")
170         # setup root user
171         prompt = "root@freebsd:~ #"
172         self.console_ssh_init(prompt, "root", self.ROOT_PASS)
173         self.console_sshd_config(prompt)
175         # setup serial console
176         self.console_wait(prompt)
177         self.console_send("echo 'console=comconsole' >> /boot/loader.conf\n")
179         # setup boot delay
180         self.console_wait(prompt)
181         self.console_send("echo 'autoboot_delay=1' >> /boot/loader.conf\n")
183         # setup virtio-blk #1 (tarfile)
184         self.console_wait(prompt)
185         self.console_send("echo 'chmod 666 /dev/vtbd1' >> /etc/rc.local\n")
187         self.print_step("Configuration finished, rebooting")
188         self.console_wait_send(prompt, "reboot\n")
189         self.console_wait("login:")
190         self.wait_ssh()
192         self.print_step("Installing packages")
193         self.ssh_root_check("pkg install -y %s\n" % " ".join(self.pkgs))
195         # shutdown
196         self.ssh_root(self.poweroff)
197         self.console_wait("Uptime:")
198         self.wait()
200         if os.path.exists(img):
201             os.remove(img)
202         os.rename(img_tmp, img)
203         os.remove(iso)
204         self.print_step("All done")
206 if __name__ == "__main__":
207     sys.exit(basevm.main(FreeBSDVM))