3 # Exercise QEMU generated ACPI/SMBIOS tables using biosbits,
4 # https://biosbits.org/
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
21 # Ani Sinha <anisinha@redhat.com>
23 # pylint: disable=invalid-name
24 # pylint: disable=consider-using-f-string
27 This is QEMU ACPI/SMBIOS avocado tests using biosbits.
28 Biosbits is available originally at https://biosbits.org/.
29 This test uses a fork of the upstream bits and has numerous fixes
30 including an upgraded acpica. The fork is located here:
31 https://gitlab.com/qemu-project/biosbits-bits .
49 from qemu
.machine
import QEMUMachine
50 from avocado
import skipIf
51 from avocado
.utils
import datadrainer
as drainer
52 from avocado_qemu
import QemuBaseTest
54 deps
= ["xorriso", "mformat"] # dependent tools needed in the test setup/box.
55 supported_platforms
= ['x86_64'] # supported test platforms.
57 # default timeout of 120 secs is sometimes not enough for bits test.
61 """ looks up the full path for @tool, returns None if not found
62 or if @tool does not have executable permissions.
64 paths
=os
.getenv('PATH')
65 for p
in paths
.split(os
.path
.pathsep
):
66 p
= os
.path
.join(p
, tool
)
67 if os
.path
.exists(p
) and os
.access(p
, os
.X_OK
):
72 """ returns True if any of the test dependent tools are absent.
75 if which(dep
) is None:
79 def supported_platform():
80 """ checks if the test is running on a supported platform.
82 return platform
.machine() in supported_platforms
84 class QEMUBitsMachine(QEMUMachine
): # pylint: disable=too-few-public-methods
86 A QEMU VM, with isa-debugcon enabled and bits iso passed
87 using -cdrom to QEMU commandline.
92 args
: Sequence
[str] = (),
93 wrapper
: Sequence
[str] = (),
94 name
: Optional
[str] = None,
95 base_temp_dir
: str = "/var/tmp",
96 debugcon_log
: str = "debugcon-log.txt",
97 debugcon_addr
: str = "0x403",
98 qmp_timer
: Optional
[float] = None):
99 # pylint: disable=too-many-arguments
102 name
= "qemu-bits-%d" % os
.getpid()
103 super().__init
__(binary
, args
, wrapper
=wrapper
, name
=name
,
104 base_temp_dir
=base_temp_dir
,
106 self
.debugcon_log
= debugcon_log
107 self
.debugcon_addr
= debugcon_addr
108 self
.base_temp_dir
= base_temp_dir
111 def _base_args(self
) -> List
[str]:
112 args
= super()._base
_args
115 'file,path=%s,id=debugcon' %os.path
.join(self
.base_temp_dir
,
118 'isa-debugcon,iobase=%s,chardev=debugcon' %self
.debugcon_addr
,
123 """return the base argument to QEMU binary"""
124 return self
._base
_args
126 @skipIf(not supported_platform() or missing_deps(),
127 'unsupported platform or dependencies (%s) not installed' \
129 class AcpiBitsTest(QemuBaseTest
): #pylint: disable=too-many-instance-attributes
131 ACPI and SMBIOS tests using biosbits.
133 :avocado: tags=arch:x86_64
137 # in slower systems the test can take as long as 3 minutes to complete.
138 timeout
= BITS_TIMEOUT
140 def __init__(self
, *args
, **kwargs
):
141 super().__init
__(*args
, **kwargs
)
146 # following are some standard configuration constants
147 self
._bitsInternalVer
= 2020 # gitlab CI does shallow clones of depth 20
148 self
._bitsCommitHash
= 'c7920d2b' # commit hash must match
149 # the artifact tag below
150 self
._bitsTag
= "qemu-bits-10262023" # this is the latest bits
151 # release as of today.
152 self
._bitsArtSHA
1Hash
= 'b22cdfcfc7453875297d06d626f5474ee36a343f'
153 self
._bitsArtURL
= ("https://gitlab.com/qemu-project/"
154 "biosbits-bits/-/jobs/artifacts/%s/"
155 "download?job=qemu-bits-build" %self
._bitsTag
)
156 self
._debugcon
_addr
= '0x403'
157 self
._debugcon
_log
= 'debugcon-log.txt'
158 logging
.basicConfig(level
=logging
.INFO
)
159 self
.logger
= logging
.getLogger('acpi-bits')
161 def _print_log(self
, log
):
162 self
.logger
.info('\nlogs from biosbits follows:')
163 self
.logger
.info('==========================================\n')
164 self
.logger
.info(log
)
165 self
.logger
.info('==========================================\n')
167 def copy_bits_config(self
):
168 """ copies the bios bits config file into bits.
170 config_file
= 'bits-cfg.txt'
171 bits_config_dir
= os
.path
.join(self
._baseDir
, 'acpi-bits',
173 target_config_dir
= os
.path
.join(self
._workDir
,
174 'bits-%d' %self
._bitsInternalVer
,
176 self
.assertTrue(os
.path
.exists(bits_config_dir
))
177 self
.assertTrue(os
.path
.exists(target_config_dir
))
178 self
.assertTrue(os
.access(os
.path
.join(bits_config_dir
,
179 config_file
), os
.R_OK
))
180 shutil
.copy2(os
.path
.join(bits_config_dir
, config_file
),
182 self
.logger
.info('copied config file %s to %s',
183 config_file
, target_config_dir
)
185 def copy_test_scripts(self
):
186 """copies the python test scripts into bits. """
188 bits_test_dir
= os
.path
.join(self
._baseDir
, 'acpi-bits',
190 target_test_dir
= os
.path
.join(self
._workDir
,
191 'bits-%d' %self
._bitsInternalVer
,
194 self
.assertTrue(os
.path
.exists(bits_test_dir
))
195 self
.assertTrue(os
.path
.exists(target_test_dir
))
197 for filename
in os
.listdir(bits_test_dir
):
198 if os
.path
.isfile(os
.path
.join(bits_test_dir
, filename
)) and \
199 filename
.endswith('.py2'):
200 # all test scripts are named with extension .py2 so that
201 # avocado does not try to load them. These scripts are
202 # written for python 2.7 not python 3 and hence if avocado
203 # loaded them, it would complain about python 3 specific
205 newfilename
= os
.path
.splitext(filename
)[0] + '.py'
206 shutil
.copy2(os
.path
.join(bits_test_dir
, filename
),
207 os
.path
.join(target_test_dir
, newfilename
))
208 self
.logger
.info('copied test file %s to %s',
209 filename
, target_test_dir
)
211 # now remove the pyc test file if it exists, otherwise the
212 # changes in the python test script won't be executed.
213 testfile_pyc
= os
.path
.splitext(filename
)[0] + '.pyc'
214 if os
.access(os
.path
.join(target_test_dir
, testfile_pyc
),
216 os
.remove(os
.path
.join(target_test_dir
, testfile_pyc
))
217 self
.logger
.info('removed compiled file %s',
218 os
.path
.join(target_test_dir
,
221 def fix_mkrescue(self
, mkrescue
):
222 """ grub-mkrescue is a bash script with two variables, 'prefix' and
223 'libdir'. They must be pointed to the right location so that the
224 iso can be generated appropriately. We point the two variables to
225 the directory where we have extracted our pre-built bits grub
228 grub_x86_64_mods
= os
.path
.join(self
._workDir
, 'grub-inst-x86_64-efi')
229 grub_i386_mods
= os
.path
.join(self
._workDir
, 'grub-inst')
231 self
.assertTrue(os
.path
.exists(grub_x86_64_mods
))
232 self
.assertTrue(os
.path
.exists(grub_i386_mods
))
235 with
open(mkrescue
, 'r', encoding
='utf-8') as filehandle
:
236 orig_script
= filehandle
.read()
237 new_script
= re
.sub('(^prefix=)(.*)',
238 r
'\1"%s"' %grub
_x
86_64_mods
,
239 orig_script
, flags
=re
.M
)
240 new_script
= re
.sub('(^libdir=)(.*)', r
'\1"%s/lib"' %grub
_i
386_mods
,
241 new_script
, flags
=re
.M
)
243 with
open(mkrescue
, 'w', encoding
='utf-8') as filehandle
:
244 filehandle
.write(new_script
)
246 def generate_bits_iso(self
):
247 """ Uses grub-mkrescue to generate a fresh bits iso with the python
250 bits_dir
= os
.path
.join(self
._workDir
,
251 'bits-%d' %self
._bitsInternalVer
)
252 iso_file
= os
.path
.join(self
._workDir
,
253 'bits-%d.iso' %self
._bitsInternalVer
)
254 mkrescue_script
= os
.path
.join(self
._workDir
,
255 'grub-inst-x86_64-efi', 'bin',
258 self
.assertTrue(os
.access(mkrescue_script
,
259 os
.R_OK | os
.W_OK | os
.X_OK
))
261 self
.fix_mkrescue(mkrescue_script
)
263 self
.logger
.info('using grub-mkrescue for generating biosbits iso ...')
266 if os
.getenv('V') or os
.getenv('BITS_DEBUG'):
267 subprocess
.check_call([mkrescue_script
, '-o', iso_file
,
268 bits_dir
], stderr
=subprocess
.STDOUT
)
270 subprocess
.check_call([mkrescue_script
, '-o',
272 stderr
=subprocess
.DEVNULL
,
273 stdout
=subprocess
.DEVNULL
)
274 except Exception as e
: # pylint: disable=broad-except
275 self
.skipTest("Error while generating the bits iso. "
276 "Pass V=1 in the environment to get more details. "
279 self
.assertTrue(os
.access(iso_file
, os
.R_OK
))
281 self
.logger
.info('iso file %s successfully generated.', iso_file
)
283 def setUp(self
): # pylint: disable=arguments-differ
284 super().setUp('qemu-system-')
286 self
._baseDir
= os
.getenv('AVOCADO_TEST_BASEDIR')
288 # workdir could also be avocado's own workdir in self.workdir.
289 # At present, I prefer to maintain my own temporary working
290 # directory. It gives us more control over the generated bits
291 # log files and also for debugging, we may chose not to remove
292 # this working directory so that the logs and iso can be
293 # inspected manually and archived if needed.
294 self
._workDir
= tempfile
.mkdtemp(prefix
='acpi-bits-',
296 self
.logger
.info('working dir: %s', self
._workDir
)
298 prebuiltDir
= os
.path
.join(self
._workDir
, 'prebuilt')
299 if not os
.path
.isdir(prebuiltDir
):
300 os
.mkdir(prebuiltDir
, mode
=0o775)
302 bits_zip_file
= os
.path
.join(prebuiltDir
, 'bits-%d-%s.zip'
303 %(self
._bitsInternalVer
,
304 self
._bitsCommitHash
))
305 grub_tar_file
= os
.path
.join(prebuiltDir
,
306 'bits-%d-%s-grub.tar.gz'
307 %(self
._bitsInternalVer
,
308 self
._bitsCommitHash
))
310 bitsLocalArtLoc
= self
.fetch_asset(self
._bitsArtURL
,
311 asset_hash
=self
._bitsArtSHA
1Hash
)
312 self
.logger
.info("downloaded bits artifacts to %s", bitsLocalArtLoc
)
314 # extract the bits artifact in the temp working directory
315 with zipfile
.ZipFile(bitsLocalArtLoc
, 'r') as zref
:
316 zref
.extractall(prebuiltDir
)
318 # extract the bits software in the temp working directory
319 with zipfile
.ZipFile(bits_zip_file
, 'r') as zref
:
320 zref
.extractall(self
._workDir
)
322 with tarfile
.open(grub_tar_file
, 'r', encoding
='utf-8') as tarball
:
323 tarball
.extractall(self
._workDir
)
325 self
.copy_test_scripts()
326 self
.copy_bits_config()
327 self
.generate_bits_iso()
330 """parse the log generated by running bits tests and
333 debugconf
= os
.path
.join(self
._workDir
, self
._debugcon
_log
)
335 with
open(debugconf
, 'r', encoding
='utf-8') as filehandle
:
336 log
= filehandle
.read()
338 matchiter
= re
.finditer(r
'(.*Summary: )(\d+ passed), (\d+ failed).*',
340 for match
in matchiter
:
341 # verify that no test cases failed.
343 self
.assertEqual(match
.group(3).split()[0], '0',
344 'Some bits tests seems to have failed. ' \
345 'Please check the test logs for more info.')
346 except AssertionError as e
:
350 if os
.getenv('V') or os
.getenv('BITS_DEBUG'):
355 Lets do some cleanups.
358 self
.assertFalse(not self
._vm
.is_running
)
359 if not os
.getenv('BITS_DEBUG') and self
._workDir
:
360 self
.logger
.info('removing the work directory %s', self
._workDir
)
361 shutil
.rmtree(self
._workDir
)
363 self
.logger
.info('not removing the work directory %s ' \
364 'as BITS_DEBUG is ' \
365 'passed in the environment', self
._workDir
)
368 def test_acpi_smbios_bits(self
):
369 """The main test case implementation."""
371 iso_file
= os
.path
.join(self
._workDir
,
372 'bits-%d.iso' %self
._bitsInternalVer
)
374 self
.assertTrue(os
.access(iso_file
, os
.R_OK
))
376 self
._vm
= QEMUBitsMachine(binary
=self
.qemu_bin
,
377 base_temp_dir
=self
._workDir
,
378 debugcon_log
=self
._debugcon
_log
,
379 debugcon_addr
=self
._debugcon
_addr
)
381 self
._vm
.add_args('-cdrom', '%s' %iso_file
)
382 # the vm needs to be run under icount so that TCG emulation is
383 # consistent in terms of timing. smilatency tests have consistent
384 # timing requirements.
385 self
._vm
.add_args('-icount', 'auto')
386 # currently there is no support in bits for recognizing 64-bit SMBIOS
387 # entry points. QEMU defaults to 64-bit entry points since the
388 # upstream commit bf376f3020 ("hw/i386/pc: Default to use SMBIOS 3.0
389 # for newer machine models"). Therefore, enforce 32-bit entry point.
390 self
._vm
.add_args('-machine', 'smbios-entry-point-type=32')
392 # enable console logging
393 self
._vm
.set_console()
396 self
.logger
.debug("Console output from bits VM follows ...")
397 c_drainer
= drainer
.LineLogger(self
._vm
.console_socket
.fileno(),
398 logger
=self
.logger
.getChild("console"),
400 not self
._vm
.is_running()))
403 # biosbits has been configured to run all the specified test suites
404 # in batch mode and then automatically initiate a vm shutdown.
405 # Set timeout to BITS_TIMEOUT for SHUTDOWN event from bits VM at par
406 # with the avocado test timeout.
407 self
._vm
.event_wait('SHUTDOWN', timeout
=BITS_TIMEOUT
)
408 self
._vm
.wait(timeout
=None)