xref: /qemu/tests/avocado/boot_linux.py (revision 84615a19)
1# Functional test that boots a complete Linux system via a cloud image
2#
3# Copyright (c) 2018-2020 Red Hat, Inc.
4#
5# Author:
6#  Cleber Rosa <crosa@redhat.com>
7#
8# This work is licensed under the terms of the GNU GPL, version 2 or
9# later.  See the COPYING file in the top-level directory.
10
11import os
12
13from avocado_qemu import LinuxTest, BUILD_DIR
14
15from avocado import skipIf
16
17
18class BootLinuxX8664(LinuxTest):
19    """
20    :avocado: tags=arch:x86_64
21    """
22    timeout = 480
23
24    def test_pc_i440fx_tcg(self):
25        """
26        :avocado: tags=machine:pc
27        :avocado: tags=accel:tcg
28        """
29        self.require_accelerator("tcg")
30        self.vm.add_args("-accel", "tcg")
31        self.launch_and_wait(set_up_ssh_connection=False)
32
33    def test_pc_i440fx_kvm(self):
34        """
35        :avocado: tags=machine:pc
36        :avocado: tags=accel:kvm
37        """
38        self.require_accelerator("kvm")
39        self.vm.add_args("-accel", "kvm")
40        self.launch_and_wait(set_up_ssh_connection=False)
41
42    def test_pc_q35_tcg(self):
43        """
44        :avocado: tags=machine:q35
45        :avocado: tags=accel:tcg
46        """
47        self.require_accelerator("tcg")
48        self.vm.add_args("-accel", "tcg")
49        self.launch_and_wait(set_up_ssh_connection=False)
50
51    def test_pc_q35_kvm(self):
52        """
53        :avocado: tags=machine:q35
54        :avocado: tags=accel:kvm
55        """
56        self.require_accelerator("kvm")
57        self.vm.add_args("-accel", "kvm")
58        self.launch_and_wait(set_up_ssh_connection=False)
59
60
61# For Aarch64 we only boot KVM tests in CI as the TCG tests are very
62# heavyweight. There are lighter weight distros which we use in the
63# machine_aarch64_virt.py tests.
64class BootLinuxAarch64(LinuxTest):
65    """
66    :avocado: tags=arch:aarch64
67    :avocado: tags=machine:virt
68    :avocado: tags=machine:gic-version=2
69    """
70    timeout = 720
71
72    def add_common_args(self):
73        self.vm.add_args('-bios',
74                         os.path.join(BUILD_DIR, 'pc-bios',
75                                      'edk2-aarch64-code.fd'))
76        self.vm.add_args('-device', 'virtio-rng-pci,rng=rng0')
77        self.vm.add_args('-object', 'rng-random,id=rng0,filename=/dev/urandom')
78
79    @skipIf(os.getenv('GITLAB_CI'), 'Running on GitLab')
80    def test_fedora_cloud_tcg_gicv2(self):
81        """
82        :avocado: tags=accel:tcg
83        :avocado: tags=cpu:max
84        :avocado: tags=device:gicv2
85        """
86        self.require_accelerator("tcg")
87        self.vm.add_args("-accel", "tcg")
88        self.vm.add_args("-cpu", "max,lpa2=off")
89        self.vm.add_args("-machine", "virt,gic-version=2")
90        self.add_common_args()
91        self.launch_and_wait(set_up_ssh_connection=False)
92
93    @skipIf(os.getenv('GITLAB_CI'), 'Running on GitLab')
94    def test_fedora_cloud_tcg_gicv3(self):
95        """
96        :avocado: tags=accel:tcg
97        :avocado: tags=cpu:max
98        :avocado: tags=device:gicv3
99        """
100        self.require_accelerator("tcg")
101        self.vm.add_args("-accel", "tcg")
102        self.vm.add_args("-cpu", "max,lpa2=off")
103        self.vm.add_args("-machine", "virt,gic-version=3")
104        self.add_common_args()
105        self.launch_and_wait(set_up_ssh_connection=False)
106
107    def test_virt_kvm(self):
108        """
109        :avocado: tags=accel:kvm
110        :avocado: tags=cpu:host
111        """
112        self.require_accelerator("kvm")
113        self.vm.add_args("-accel", "kvm")
114        self.vm.add_args("-machine", "virt,gic-version=host")
115        self.add_common_args()
116        self.launch_and_wait(set_up_ssh_connection=False)
117
118
119class BootLinuxPPC64(LinuxTest):
120    """
121    :avocado: tags=arch:ppc64
122    """
123
124    timeout = 360
125
126    def test_pseries_tcg(self):
127        """
128        :avocado: tags=machine:pseries
129        :avocado: tags=accel:tcg
130        """
131        self.require_accelerator("tcg")
132        self.vm.add_args("-accel", "tcg")
133        self.launch_and_wait(set_up_ssh_connection=False)
134
135
136class BootLinuxS390X(LinuxTest):
137    """
138    :avocado: tags=arch:s390x
139    """
140
141    timeout = 240
142
143    @skipIf(os.getenv('GITLAB_CI'), 'Running on GitLab')
144    def test_s390_ccw_virtio_tcg(self):
145        """
146        :avocado: tags=machine:s390-ccw-virtio
147        :avocado: tags=accel:tcg
148        """
149        self.require_accelerator("tcg")
150        self.vm.add_args("-accel", "tcg")
151        self.launch_and_wait(set_up_ssh_connection=False)
152