From 9fa4fc23e34114971f7ee81acb9b5f4ab0017c7a Mon Sep 17 00:00:00 2001 From: Thomas Huth Date: Fri, 13 Dec 2024 17:02:59 +0100 Subject: tests/functional: Add a helper function for retrieving the hostfwd port It's just a wrapper around get_info_usernet_hostfwd_port from the qemu module that is also calling the right monitor command for retrieving the information from QEMU. Message-ID: <20241217121550.141072-2-thuth@redhat.com> Acked-by: Michael S. Tsirkin Signed-off-by: Thomas Huth --- tests/functional/qemu_test/utils.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'tests/functional/qemu_test/utils.py') diff --git a/tests/functional/qemu_test/utils.py b/tests/functional/qemu_test/utils.py index 43853b4366..e7c8de8165 100644 --- a/tests/functional/qemu_test/utils.py +++ b/tests/functional/qemu_test/utils.py @@ -10,6 +10,13 @@ import os +from qemu.utils import get_info_usernet_hostfwd_port + + +def get_usernet_hostfwd_port(vm): + res = vm.cmd('human-monitor-command', command_line='info usernet') + return get_info_usernet_hostfwd_port(res) + """ Round up to next power of 2 """ -- cgit 1.4.1