QTest Device Emulation Testing Framework
QTest is a device emulation testing framework. It can be very useful to test device models; it could also control certain aspects of QEMU (such as virtual clock stepping), with a special purpose "qtest" protocol. Refer to QTest Protocol for more details of the protocol.
QTest cases can be executed with
make check-qtest
The QTest library is implemented by tests/qtest/libqtest.c and the API is
defined in tests/qtest/libqtest.h.
Consider adding a new QTest case when you are introducing a new virtual hardware, or extending one if you are adding functionalities to an existing virtual device.
On top of libqtest, a higher level library, libqos, was created to
encapsulate common tasks of device drivers, such as memory management and
communicating with system buses or devices. Many virtual device tests use
libqos instead of directly calling into libqtest.
Libqos also offers the Qgraph API to increase each test coverage and
automate QEMU command line arguments and devices setup.
Refer to Qtest Driver Framework for Qgraph explanation and API.
Steps to add a new QTest case are:
Create a new source file for the test. (More than one file can be added as necessary.) For example,
tests/qtest/foo-test.c.Write the test code with the glib and libqtest/libqos API. See also existing tests and the library headers for reference.
Register the new test in
tests/qtest/meson.build. Add the test executable name to an appropriateqtests_*variable. There is one variable per architecture, plusqtests_genericfor tests that can be run for all architectures. For example:qtests_generic = [ ... 'foo-test', ... ]
If the test has more than one source file or needs to be linked with any dependency other than
qemuutilandqos, list them in theqtestsdictionary. For example a test that needs to use theQIOlibrary will have an entry like:{ ... 'foo-test': [io], ... }
Debugging a QTest failure is slightly harder than the unit test because the
tests look up QEMU program names in the environment variables, such as
QTEST_QEMU_BINARY and QTEST_QEMU_IMG, and also because it is not easy
to attach gdb to the QEMU process spawned from the test. But manual invoking
and using gdb on the test is still simple to do: find out the actual command
from the output of
make check-qtest V=1
which you can run manually.
QTest Protocol
Line based protocol, request/response based. Server can send async messages so clients should always handle many async messages before the response comes in.
Extra ASCII space characters in command inputs are permitted and ignored. Lines containing only spaces are permitted and ignored.
Valid requests
Clock management:
The qtest client is completely in charge of the QEMU_CLOCK_VIRTUAL. qtest commands let you adjust the value of the clock (monotonically). All the commands return the current value of the clock in nanoseconds.
If the commands FAIL then time wasn’t advanced which is likely because the machine was in a paused state or no timer events exist in the future. This will cause qtest to abort and the test will need to check its assumptions.
> clock_step < OK VALUE
Advance the clock to the next deadline. Useful when waiting for asynchronous events.
> clock_step NS < OK VALUE
Advance the clock by NS nanoseconds.
> clock_set NS < OK VALUE
Advance the clock to NS nanoseconds (do nothing if it’s already past).
PIO and memory access:
> outb ADDR VALUE < OK
> outw ADDR VALUE < OK
> outl ADDR VALUE < OK
> inb ADDR < OK VALUE
> inw ADDR < OK VALUE
> inl ADDR < OK VALUE
> writeb ADDR VALUE < OK
> writew ADDR VALUE < OK
> writel ADDR VALUE < OK
> writeq ADDR VALUE < OK
> readb ADDR < OK VALUE
> readw ADDR < OK VALUE
> readl ADDR < OK VALUE
> readq ADDR < OK VALUE
> read ADDR SIZE < OK DATA
> write ADDR SIZE DATA < OK
> b64read ADDR SIZE < OK B64_DATA
> b64write ADDR SIZE B64_DATA < OK
> memset ADDR SIZE VALUE < OK
ADDR, SIZE, VALUE are all integers parsed with strtoul() with a base of 0. For ‘memset’ a zero size is permitted and does nothing.
DATA is an arbitrarily long hex number prefixed with ‘0x’. If it’s smaller than the expected size, the value will be zero filled at the end of the data sequence.
B64_DATA is an arbitrarily long base64 encoded string. If the sizes do not match, the data will be truncated.
IRQ management:
> irq_intercept_in QOM-PATH < OK
> irq_intercept_out QOM-PATH < OK
Attach to the gpio-in (resp. gpio-out) pins exported by the device at QOM-PATH. When the pin is triggered, one of the following async messages will be printed to the qtest stream:
IRQ raise NUM IRQ lower NUM
where NUM is an IRQ number. For the PC, interrupts can be intercepted simply with "irq_intercept_in ioapic" (note that IRQ0 comes out with NUM=0 even though it is remapped to GSI 2).
Setting interrupt level:
> set_irq_in QOM-PATH NAME NUM LEVEL < OK
where NAME is the name of the irq/gpio list, NUM is an IRQ number and LEVEL is an signed integer IRQ level.
Forcibly set the given interrupt pin to the given level.
libqtest API reference
-
QTestState*qtest_initf(constchar*fmt, ...)
Parameters
const char *fmtFormat for creating other arguments to pass to QEMU, formatted like sprintf().
...variable arguments
Description
Convenience wrapper around qtest_init().
Return
QTestState instance.
-
QTestState*qtest_vinitf(constchar*fmt, va_listap)
Parameters
const char *fmtFormat for creating other arguments to pass to QEMU, formatted like vsprintf().
va_list apFormat arguments.
Description
Convenience wrapper around qtest_init().
Return
QTestState instance.
-
constchar*qtest_qemu_binary(constchar*var)
Parameters
const char *varenvironment variable name
Description
Look up var and return its value as the qemu binary path. If var is NULL, look up the default var name.
-
QTestState*qtest_init_after_exec(QTestState*qts)
Parameters
QTestState *qtsthe previous QEMU state
Description
Return a test state representing new QEMU after qts exec’s it.
-
gchar*qtest_qemu_args(constchar*extra_args)
Parameters
const char *extra_argsOther arguments to pass to QEMU.
Description
Return the command line used to start QEMU, sans binary.
-
QTestState*qtest_init(constchar*extra_args)
Parameters
const char *extra_argsother arguments to pass to QEMU. CAUTION: these arguments are subject to word splitting and shell evaluation.
Return
QTestState instance.
-
QTestState*qtest_init_ext(constchar*var, constchar*extra_args, QList*capabilities, booldo_connect)
Parameters
const char *varEnvironment variable from where to take the QEMU binary
const char *extra_argsOther arguments to pass to QEMU. CAUTION: these arguments are subject to word splitting and shell evaluation.
QList *capabilitieslist of QMP capabilities (strings) to enable
bool do_connectconnect to qemu monitor and qtest socket.
Description
Like qtest_init(), but use a different environment variable for the QEMU binary, allow specify capabilities and skip connecting to QEMU monitor.
Return
QTestState instance.
-
QTestState*qtest_init_without_qmp_handshake(constchar*extra_args)
Parameters
const char *extra_argsother arguments to pass to QEMU. CAUTION: these arguments are subject to word splitting and shell evaluation.
Return
QTestState instance.
-
voidqtest_connect(QTestState*s)
Parameters
QTestState *sQTestStateinstance to connect Connect to qemu monitor and qtest socket, after skipping them in qtest_init_ext. Does not handshake with the monitor.
-
voidqtest_qmp_handshake(QTestState*s, QList*capabilities)
Parameters
QTestState *sQTestStateinstance to operate on.QList *capabilitieslist of QMP capabilities (strings) to enable Perform handshake after connecting to qemu monitor.
-
QTestState*qtest_init_with_serial(constchar*extra_args, int*sock_fd)
Parameters
const char *extra_argsother arguments to pass to QEMU. CAUTION: these arguments are subject to word splitting and shell evaluation.
int *sock_fdpointer to store the socket file descriptor for connection with serial.
Return
QTestState instance.
-
voidqtest_system_reset(QTestState*s)
Parameters
QTestState *sQTestStateinstance to operate on.
Description
Send a "system_reset" command to the QEMU under test, and wait for the reset to complete before returning.
-
voidqtest_system_reset_nowait(QTestState*s)
Parameters
QTestState *sQTestStateinstance to operate on.
Description
Send a "system_reset" command to the QEMU under test, but do not wait for the reset to complete before returning. The caller is responsible for waiting for either the RESET event or some other event of interest to them before proceeding.
This function should only be used if you’re specifically testing for some other event; in that case you can’t use qtest_system_reset() because it will read and discard any other QMP events that arrive before the RESET event.
-
voidqtest_wait_qemu(QTestState*s)
Parameters
QTestState *sQTestStateinstance to operate on.
Description
Wait for the QEMU process to terminate. It is safe to call this function multiple times.
-
voidqtest_kill_qemu(QTestState*s)
Parameters
QTestState *sQTestStateinstance to operate on.
Description
Kill the QEMU process and wait for it to terminate. It is safe to call this function multiple times. Normally qtest_quit() is used instead because it also frees QTestState. Use qtest_kill_qemu() when you just want to kill QEMU and qtest_quit() will be called later.
-
voidqtest_quit(QTestState*s)
Parameters
QTestState *sQTestStateinstance to operate on.
Description
Shut down the QEMU process associated to s.
-
QDict*qtest_qmp_fds(QTestState*s, int*fds, size_tfds_num, constchar*fmt, ...)
Parameters
QTestState *sQTestStateinstance to operate on.int *fdsarray of file descriptors
size_t fds_numnumber of elements in fds
const char *fmtQMP message to send to qemu, formatted like qobject_from_jsonf_nofail(). See parse_interpolation() for what’s supported after ‘%’.
...variable arguments
Description
Sends a QMP message to QEMU with fds and returns the response.
-
QDict*qtest_qmp(QTestState*s, constchar*fmt, ...)
Parameters
QTestState *sQTestStateinstance to operate on.const char *fmtQMP message to send to qemu, formatted like qobject_from_jsonf_nofail(). See parse_interpolation() for what’s supported after ‘%’.
...variable arguments
Description
Sends a QMP message to QEMU and returns the response.
-
voidqtest_qmp_send(QTestState*s, constchar*fmt, ...)
Parameters
QTestState *sQTestStateinstance to operate on.const char *fmtQMP message to send to qemu, formatted like qobject_from_jsonf_nofail(). See parse_interpolation() for what’s supported after ‘%’.
...variable arguments
Description
Sends a QMP message to QEMU and leaves the response in the stream.
-
voidqtest_qmp_send_raw(QTestState*s, constchar*fmt, ...)
Parameters
QTestState *sQTestStateinstance to operate on.const char *fmttext to send, formatted like sprintf()
...variable arguments
Description
Sends text to the QMP monitor verbatim. Need not be valid JSON; this is useful for negative tests.
-
intqtest_socket_server(constchar*socket_path)
Parameters
const char *socket_paththe UNIX domain socket path
Description
Create and return a listen socket file descriptor, or abort on failure.
-
QDict*qtest_vqmp_fds(QTestState*s, int*fds, size_tfds_num, constchar*fmt, va_listap)
Parameters
QTestState *sQTestStateinstance to operate on.int *fdsarray of file descriptors
size_t fds_numnumber of elements in fds
const char *fmtQMP message to send to QEMU, formatted like qobject_from_jsonf_nofail(). See parse_interpolation() for what’s supported after ‘%’.
va_list apQMP message arguments
Description
Sends a QMP message to QEMU with fds and returns the response.
-
QDict*qtest_vqmp(QTestState*s, constchar*fmt, va_listap)
Parameters
QTestState *sQTestStateinstance to operate on.const char *fmtQMP message to send to QEMU, formatted like qobject_from_jsonf_nofail(). See parse_interpolation() for what’s supported after ‘%’.
va_list apQMP message arguments
Description
Sends a QMP message to QEMU and returns the response.
-
voidqtest_qmp_vsend_fds(QTestState*s, int*fds, size_tfds_num, constchar*fmt, va_listap)
Parameters
QTestState *sQTestStateinstance to operate on.int *fdsarray of file descriptors
size_t fds_numnumber of elements in fds
const char *fmtQMP message to send to QEMU, formatted like qobject_from_jsonf_nofail(). See parse_interpolation() for what’s supported after ‘%’.
va_list apQMP message arguments
Description
Sends a QMP message to QEMU and leaves the response in the stream.
-
voidqtest_qmp_vsend(QTestState*s, constchar*fmt, va_listap)
Parameters
QTestState *sQTestStateinstance to operate on.const char *fmtQMP message to send to QEMU, formatted like qobject_from_jsonf_nofail(). See parse_interpolation() for what’s supported after ‘%’.
va_list apQMP message arguments
Description
Sends a QMP message to QEMU and leaves the response in the stream.
-
QDict*qtest_qmp_receive_dict(QTestState*s)
Parameters
QTestState *sQTestStateinstance to operate on.
Description
Reads a QMP message from QEMU and returns the response.
-
QDict*qtest_qmp_receive(QTestState*s)
Parameters
QTestState *sQTestStateinstance to operate on.
Description
Reads a QMP message from QEMU and returns the response.
If a callback is registered with qtest_qmp_set_event_callback, it will be invoked for every event seen, otherwise events will be buffered until a call to one of the qtest_qmp_eventwait family of functions.
-
voidqtest_qmp_set_event_callback(QTestState*s, QTestQMPEventCallbackcb, void*opaque)
Parameters
QTestState *sQTestSTateinstance to operate onQTestQMPEventCallback cbcallback to invoke for events
void *opaquedata to pass to cb
Description
Register a callback to be invoked whenever an event arrives
-
voidqtest_qmp_eventwait(QTestState*s, constchar*event)
Parameters
QTestState *sQTestStateinstance to operate on.const char *eventevent to wait for.
Description
Continuously polls for QMP responses until it receives the desired event.
Any callback registered with qtest_qmp_set_event_callback will be invoked for every event seen.
-
QDict*qtest_qmp_eventwait_ref(QTestState*s, constchar*event)
Parameters
QTestState *sQTestStateinstance to operate on.const char *eventevent to wait for.
Description
Continuously polls for QMP responses until it receives the desired event.
Any callback registered with qtest_qmp_set_event_callback will be invoked for every event seen.
Returns a copy of the event for further investigation.
-
QDict*qtest_qmp_event_ref(QTestState*s, constchar*event)
Parameters
QTestState *sQTestStateinstance to operate on.const char *eventevent to return.
Description
Removes non-matching events from the buffer that was set by qtest_qmp_receive, until an event bearing the given name is found, and returns it. If no event matches, clears the buffer and returns NULL.
-
char*qtest_hmp(QTestState*s, constchar*fmt, ...)
Parameters
QTestState *sQTestStateinstance to operate on.const char *fmtHMP command to send to QEMU, formats arguments like sprintf().
...variable arguments
Description
Send HMP command to QEMU via QMP’s human-monitor-command. QMP events are discarded.
Return
the command’s output. The caller should g_free() it.
-
char*qtest_vhmp(QTestState*s, constchar*fmt, va_listap)
Parameters
QTestState *sQTestStateinstance to operate on.const char *fmtHMP command to send to QEMU, formats arguments like vsprintf().
va_list apHMP command arguments
Description
Send HMP command to QEMU via QMP’s human-monitor-command. QMP events are discarded.
Return
the command’s output. The caller should g_free() it.
-
boolqtest_get_irq(QTestState*s, intnum)
Parameters
QTestState *sQTestStateinstance to operate on.int numInterrupt to observe.
Return
The level of the num interrupt.
-
voidqtest_irq_intercept_in(QTestState*s, constchar*string)
Parameters
QTestState *sQTestStateinstance to operate on.const char *stringQOM path of a device.
Description
Associate qtest irqs with the GPIO-in pins of the device whose path is specified by string.
-
voidqtest_irq_intercept_out(QTestState*s, constchar*string)
Parameters
QTestState *sQTestStateinstance to operate on.const char *stringQOM path of a device.
Description
Associate qtest irqs with the GPIO-out pins of the device whose path is specified by string.
-
voidqtest_irq_intercept_out_named(QTestState*s, constchar*qom_path, constchar*name)
Parameters
QTestState *sQTestStateinstance to operate on.const char *qom_pathQOM path of a device.
const char *nameName of the GPIO out pin
Description
Associate a qtest irq with the named GPIO-out pin of the device whose path is specified by string and whose name is name.
-
voidqtest_set_irq_in(QTestState*s, constchar*string, constchar*name, intirq, intlevel)
Parameters
QTestState *sQTestState instance to operate on.
const char *stringQOM path of a device
const char *nameIRQ name
int irqIRQ number
int levelIRQ level
Description
Force given device/irq GPIO-in pin to the given level.
-
voidqtest_outb(QTestState*s, uint16_taddr, uint8_tvalue)
Parameters
QTestState *sQTestStateinstance to operate on.uint16_t addrI/O port to write to.
uint8_t valueValue being written.
Description
Write an 8-bit value to an I/O port.
-
voidqtest_outw(QTestState*s, uint16_taddr, uint16_tvalue)
Parameters
QTestState *sQTestStateinstance to operate on.uint16_t addrI/O port to write to.
uint16_t valueValue being written.
Description
Write a 16-bit value to an I/O port.
-
voidqtest_outl(QTestState*s, uint16_taddr, uint32_tvalue)
Parameters
QTestState *sQTestStateinstance to operate on.uint16_t addrI/O port to write to.
uint32_t valueValue being written.
Description
Write a 32-bit value to an I/O port.
-
uint8_tqtest_inb(QTestState*s, uint16_taddr)
Parameters
QTestState *sQTestStateinstance to operate on.uint16_t addrI/O port to read from.
Description
Returns an 8-bit value from an I/O port.
-
uint16_tqtest_inw(QTestState*s, uint16_taddr)
Parameters
QTestState *sQTestStateinstance to operate on.uint16_t addrI/O port to read from.
Description
Returns a 16-bit value from an I/O port.
-
uint32_tqtest_inl(QTestState*s, uint16_taddr)
Parameters
QTestState *sQTestStateinstance to operate on.uint16_t addrI/O port to read from.
Description
Returns a 32-bit value from an I/O port.
-
voidqtest_writeb(QTestState*s, uint64_taddr, uint8_tvalue)
Parameters
QTestState *sQTestStateinstance to operate on.uint64_t addrGuest address to write to.
uint8_t valueValue being written.
Description
Writes an 8-bit value to memory.
-
voidqtest_writew(QTestState*s, uint64_taddr, uint16_tvalue)
Parameters
QTestState *sQTestStateinstance to operate on.uint64_t addrGuest address to write to.
uint16_t valueValue being written.
Description
Writes a 16-bit value to memory.
-
voidqtest_writel(QTestState*s, uint64_taddr, uint32_tvalue)
Parameters
QTestState *sQTestStateinstance to operate on.uint64_t addrGuest address to write to.
uint32_t valueValue being written.
Description
Writes a 32-bit value to memory.
-
voidqtest_writeq(QTestState*s, uint64_taddr, uint64_tvalue)
Parameters
QTestState *sQTestStateinstance to operate on.uint64_t addrGuest address to write to.
uint64_t valueValue being written.
Description
Writes a 64-bit value to memory.
-
uint8_tqtest_readb(QTestState*s, uint64_taddr)
Parameters
QTestState *sQTestStateinstance to operate on.uint64_t addrGuest address to read from.
Description
Reads an 8-bit value from memory.
Return
Value read.
-
uint16_tqtest_readw(QTestState*s, uint64_taddr)
Parameters
QTestState *sQTestStateinstance to operate on.uint64_t addrGuest address to read from.
Description
Reads a 16-bit value from memory.
Return
Value read.
-
uint32_tqtest_readl(QTestState*s, uint64_taddr)
Parameters
QTestState *sQTestStateinstance to operate on.uint64_t addrGuest address to read from.
Description
Reads a 32-bit value from memory.
Return
Value read.
-
uint64_tqtest_readq(QTestState*s, uint64_taddr)
Parameters
QTestState *sQTestStateinstance to operate on.uint64_t addrGuest address to read from.
Description
Reads a 64-bit value from memory.
Return
Value read.
-
voidqtest_memread(QTestState*s, uint64_taddr, void*data, size_tsize)
Parameters
QTestState *sQTestStateinstance to operate on.uint64_t addrGuest address to read from.
void *dataPointer to where memory contents will be stored.
size_t sizeNumber of bytes to read.
Description
Read guest memory into a buffer.
-
uint64_tqtest_rtas_call(QTestState*s, constchar*name, uint32_tnargs, uint64_targs, uint32_tnret, uint64_tret)
Parameters
QTestState *sQTestStateinstance to operate on.const char *namename of the command to call.
uint32_t nargsNumber of args.
uint64_t argsGuest address to read args from.
uint32_t nretNumber of return value.
uint64_t retGuest address to write return values to.
Description
Call an RTAS function
-
uint64_tqtest_csr_call(QTestState*s, constchar*name, uint64_tcpu, intcsr, uint64_t*val)
Parameters
QTestState *sQTestStateinstance to operate on.const char *namename of the command to call.
uint64_t cpuhart number.
int csrCSR number.
uint64_t *valValue for reading/writing.
Description
Call an RISC-V CSR read/write function
-
voidqtest_bufread(QTestState*s, uint64_taddr, void*data, size_tsize)
Parameters
QTestState *sQTestStateinstance to operate on.uint64_t addrGuest address to read from.
void *dataPointer to where memory contents will be stored.
size_t sizeNumber of bytes to read.
Description
Read guest memory into a buffer and receive using a base64 encoding.
-
voidqtest_memwrite(QTestState*s, uint64_taddr, constvoid*data, size_tsize)
Parameters
QTestState *sQTestStateinstance to operate on.uint64_t addrGuest address to write to.
const void *dataPointer to the bytes that will be written to guest memory.
size_t sizeNumber of bytes to write.
Description
Write a buffer to guest memory.
-
voidqtest_bufwrite(QTestState*s, uint64_taddr, constvoid*data, size_tsize)
Parameters
QTestState *sQTestStateinstance to operate on.uint64_t addrGuest address to write to.
const void *dataPointer to the bytes that will be written to guest memory.
size_t sizeNumber of bytes to write.
Description
Write a buffer to guest memory and transmit using a base64 encoding.
-
voidqtest_memset(QTestState*s, uint64_taddr, uint8_tpatt, size_tsize)
Parameters
QTestState *sQTestStateinstance to operate on.uint64_t addrGuest address to write to.
uint8_t pattByte pattern to fill the guest memory region with.
size_t sizeNumber of bytes to write.
Description
Write a pattern to guest memory.
-
int64_tqtest_clock_step_next(QTestState*s)
Parameters
QTestState *sQTestStateinstance to operate on.
Description
Advance the QEMU_CLOCK_VIRTUAL to the next deadline.
Return
The current value of the QEMU_CLOCK_VIRTUAL in nanoseconds.
-
int64_tqtest_clock_step(QTestState*s, int64_tstep)
Parameters
QTestState *sQTestState instance to operate on.
int64_t stepNumber of nanoseconds to advance the clock by.
Description
Advance the QEMU_CLOCK_VIRTUAL by step nanoseconds.
Return
The current value of the QEMU_CLOCK_VIRTUAL in nanoseconds.
-
int64_tqtest_clock_set(QTestState*s, int64_tval)
Parameters
QTestState *sQTestState instance to operate on.
int64_t valNanoseconds value to advance the clock to.
Description
Advance the QEMU_CLOCK_VIRTUAL to val nanoseconds since the VM was launched.
Return
The current value of the QEMU_CLOCK_VIRTUAL in nanoseconds.
-
boolqtest_big_endian(QTestState*s)
Parameters
QTestState *sQTestState instance to operate on.
Return
True if the architecture under test has a big endian configuration.
-
constchar*qtest_get_arch(void)
Parameters
voidno arguments
Return
The architecture for the QEMU executable under test.
-
boolqtest_has_accel(constchar*accel_name)
Parameters
const char *accel_nameAccelerator name to check for.
Return
true if the accelerator is built in.
-
voidqtest_add_func(constchar*str, void(*fn)(void))
Parameters
const char *strTest case path.
void (*fn)(void)Test case function
Description
Add a GTester testcase with the given name and function. The path is prefixed with the architecture under test, as returned by qtest_get_arch().
-
voidqtest_add_data_func(constchar*str, constvoid*data, void(*fn)(constvoid*))
Parameters
const char *strTest case path.
const void *dataTest case data
void (*fn)(const void *)Test case function
Description
Add a GTester testcase with the given name, data and function. The path is prefixed with the architecture under test, as returned by qtest_get_arch().
-
voidqtest_add_data_func_full(constchar*str, void*data, void(*fn)(constvoid*), GDestroyNotifydata_free_func)
Parameters
const char *strTest case path.
void *dataTest case data
void (*fn)(const void *)Test case function
GDestroyNotify data_free_funcGDestroyNotify for data
Description
Add a GTester testcase with the given name, data and function. The path is prefixed with the architecture under test, as returned by qtest_get_arch().
data is passed to data_free_func() on test completion.
-
qtest_add
qtest_add (testpath, Fixture, tdata, fsetup, ftest, fteardown)
Parameters
testpathTest case path
FixtureFixture type
tdataTest case data
fsetupTest case setup function
ftestTest case function
fteardownTest case teardown function
Description
Add a GTester testcase with the given name, data and functions. The path is prefixed with the architecture under test, as returned by qtest_get_arch().
-
voidqtest_add_abrt_handler(GHookFuncfn, constvoid*data)
Parameters
GHookFunc fnHandler function
const void *dataArgument that is passed to the handler
Description
Add a handler function that is invoked on SIGABRT. This can be used to terminate processes and perform other cleanup. The handler can be removed with qtest_remove_abrt_handler().
-
voidqtest_remove_abrt_handler(void*data)
Parameters
void *dataArgument previously passed to qtest_add_abrt_handler()
Description
Remove an abrt handler that was previously added with qtest_add_abrt_handler().
-
QDict*qtest_vqmp_assert_success_ref(QTestState*qts, constchar*fmt, va_listargs)
Parameters
QTestState *qtsQTestState instance to operate on
const char *fmtQMP message to send to qemu, formatted like qobject_from_jsonf_nofail(). See parse_interpolation() for what’s supported after ‘%’.
va_list argsvariable arguments for fmt
Description
Sends a QMP message to QEMU, asserts that a ‘return’ key is present in the response, and returns the response.
-
voidqtest_vqmp_assert_success(QTestState*qts, constchar*fmt, va_listargs)
Parameters
QTestState *qtsQTestState instance to operate on
const char *fmtQMP message to send to qemu, formatted like qobject_from_jsonf_nofail(). See parse_interpolation() for what’s supported after ‘%’.
va_list argsvariable arguments for fmt
Description
Sends a QMP message to QEMU and asserts that a ‘return’ key is present in the response.
-
QDict*qtest_vqmp_fds_assert_success_ref(QTestState*qts, int*fds, size_tnfds, constchar*fmt, va_listargs)
Parameters
QTestState *qtsQTestState instance to operate on
int *fdsthe file descriptors to send
size_t nfdsnumber of fds to send
const char *fmtQMP message to send to qemu, formatted like qobject_from_jsonf_nofail(). See parse_interpolation() for what’s supported after ‘%’.
va_list argsvariable arguments for fmt
Description
Sends a QMP message with file descriptors to QEMU, asserts that a ‘return’ key is present in the response, and returns the response.
-
voidqtest_vqmp_fds_assert_success(QTestState*qts, int*fds, size_tnfds, constchar*fmt, va_listargs)
Parameters
QTestState *qtsQTestState instance to operate on
int *fdsthe file descriptors to send
size_t nfdsnumber of fds to send
const char *fmtQMP message to send to qemu, formatted like qobject_from_jsonf_nofail(). See parse_interpolation() for what’s supported after ‘%’.
va_list argsvariable arguments for fmt
Description
Sends a QMP message with file descriptors to QEMU and asserts that a ‘return’ key is present in the response.
-
QDict*qtest_qmp_assert_failure_ref(QTestState*qts, constchar*fmt, ...)
Parameters
QTestState *qtsQTestState instance to operate on
const char *fmtQMP message to send to qemu, formatted like qobject_from_jsonf_nofail(). See parse_interpolation() for what’s supported after ‘%’.
...variable arguments
Description
Sends a QMP message to QEMU, asserts that an ‘error’ key is present in the response, and returns the response.
-
QDict*qtest_vqmp_assert_failure_ref(QTestState*qts, constchar*fmt, va_listargs)
Parameters
QTestState *qtsQTestState instance to operate on
const char *fmtQMP message to send to qemu, formatted like qobject_from_jsonf_nofail(). See parse_interpolation() for what’s supported after ‘%’.
va_list argsvariable arguments for fmt
Description
Sends a QMP message to QEMU, asserts that an ‘error’ key is present in the response, and returns the response.
-
QDict*qtest_qmp_assert_success_ref(QTestState*qts, constchar*fmt, ...)
Parameters
QTestState *qtsQTestState instance to operate on
const char *fmtQMP message to send to qemu, formatted like qobject_from_jsonf_nofail(). See parse_interpolation() for what’s supported after ‘%’.
...variable arguments
Description
Sends a QMP message to QEMU, asserts that a ‘return’ key is present in the response, and returns the response.
-
voidqtest_qmp_assert_success(QTestState*qts, constchar*fmt, ...)
Parameters
QTestState *qtsQTestState instance to operate on
const char *fmtQMP message to send to qemu, formatted like qobject_from_jsonf_nofail(). See parse_interpolation() for what’s supported after ‘%’.
...variable arguments
Description
Sends a QMP message to QEMU and asserts that a ‘return’ key is present in the response.
-
QDict*qtest_qmp_fds_assert_success_ref(QTestState*qts, int*fds, size_tnfds, constchar*fmt, ...)
Parameters
QTestState *qtsQTestState instance to operate on
int *fdsthe file descriptors to send
size_t nfdsnumber of fds to send
const char *fmtQMP message to send to qemu, formatted like qobject_from_jsonf_nofail(). See parse_interpolation() for what’s supported after ‘%’.
...variable arguments
Description
Sends a QMP message with file descriptors to QEMU, asserts that a ‘return’ key is present in the response, and returns the response.
-
voidqtest_qmp_fds_assert_success(QTestState*qts, int*fds, size_tnfds, constchar*fmt, ...)
Parameters
QTestState *qtsQTestState instance to operate on
int *fdsthe file descriptors to send
size_t nfdsnumber of fds to send
const char *fmtQMP message to send to qemu, formatted like qobject_from_jsonf_nofail(). See parse_interpolation() for what’s supported after ‘%’.
...variable arguments
Description
Sends a QMP message with file descriptors to QEMU and asserts that a ‘return’ key is present in the response.
-
voidqtest_cb_for_every_machine(void(*cb)(constchar*machine), boolskip_old_versioned)
Parameters
void (*cb)(const char *machine)Pointer to the callback function
bool skip_old_versionedtrue if versioned old machine types should be skipped
Description
Call a callback function for every name of all available machines.
-
char*qtest_resolve_machine_alias(constchar*var, constchar*alias)
Parameters
const char *varEnvironment variable from where to take the QEMU binary
const char *aliasThe alias to resolve
Return
the machine type corresponding to the alias if any, otherwise NULL.
-
boolqtest_has_machine(constchar*machine)
Parameters
const char *machineThe machine to look for
Return
true if the machine is available in the target binary.
-
boolqtest_has_machine_with_env(constchar*var, constchar*machine)
Parameters
const char *varEnvironment variable from where to take the QEMU binary
const char *machineThe machine to look for
Return
true if the machine is available in the specified binary.
-
boolqtest_has_cpu_model(constchar*cpu)
Parameters
const char *cpuThe cpu to look for
Return
true if the cpu is available in the target binary.
-
boolqtest_has_device(constchar*device)
Parameters
const char *deviceThe device to look for
Return
true if the device is available in the target binary.
-
voidqtest_qmp_device_add_qdict(QTestState*qts, constchar*drv, constQDict*arguments)
Parameters
QTestState *qtsQTestState instance to operate on
const char *drvName of the device that should be added
const QDict *argumentsQDict with properties for the device to initialize
Description
Generic hot-plugging test via the device_add QMP command with properties supplied in form of QDict. Use NULL for empty properties list.
-
voidqtest_qmp_device_add(QTestState*qts, constchar*driver, constchar*id, constchar*fmt, ...)
Parameters
QTestState *qtsQTestState instance to operate on
const char *driverName of the device that should be added
const char *idIdentification string
const char *fmtQMP message to send to qemu, formatted like qobject_from_jsonf_nofail(). See parse_interpolation() for what’s supported after ‘%’.
...variable arguments
Description
Generic hot-plugging test via the device_add QMP command.
-
voidqtest_qmp_add_client(QTestState*qts, constchar*protocol, intfd)
Parameters
QTestState *qtsQTestState instance to operate on
const char *protocolthe protocol to add to
int fdthe client file-descriptor
Description
Call QMP getfd (on Windows get-win32-socket) followed by
add_client with the given fd.
-
voidqtest_qmp_device_del_send(QTestState*qts, constchar*id)
Parameters
QTestState *qtsQTestState instance to operate on
const char *idIdentification string
Description
Generic hot-unplugging test via the device_del QMP command.
-
voidqtest_qmp_device_del(QTestState*qts, constchar*id)
Parameters
QTestState *qtsQTestState instance to operate on
const char *idIdentification string
Description
Generic hot-unplugging test via the device_del QMP command. Waiting for command completion event.
-
boolqtest_probe_child(QTestState*s)
Parameters
QTestState *sQTestState instance to operate on.
Return
true if the child is still alive.
-
voidqtest_set_expected_status(QTestState*s, intstatus)
Parameters
QTestState *sQTestState instance to operate on.
int statusan expected exit status.
Description
Set expected exit status of the child.
-
voidqtest_qom_set_bool(QTestState*s, constchar*path, constchar*property, boolvalue)
Parameters
QTestState *sQTestState instance to operate on.
const char *pathPath to the property being set.
const char *propertyProperty being set.
bool valueValue to set the property.
Description
Set the property with passed in value.
-
boolqtest_qom_get_bool(QTestState*s, constchar*path, constchar*property)
Parameters
QTestState *sQTestState instance to operate on.
const char *pathPath to the property being retrieved.
const char *propertyProperty from where the value is being retrieved.
Return
Value retrieved from property.
-
pid_tqtest_pid(QTestState*s)
Parameters
QTestState *sQTestState instance to operate on.
Return
the PID of the QEMU process, or <= 0
-
boolhave_qemu_img(void)
Parameters
voidno arguments
Return
true if "qemu-img" is available.
-
boolmkimg(constchar*file, constchar*fmt, unsignedsize_mb)
Parameters
const char *fileFile name of the image that should be created
const char *fmtFormat, e.g. "qcow2" or "raw"
unsigned size_mbSize of the image in megabytes
Description
Create a disk image with qemu-img. Note that the QTEST_QEMU_IMG environment variable must point to the qemu-img file.
Return
true if the image has been created successfully.