forked from autotest/tp-libvirt
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request autotest#4963 from nanli1/add_case_for_console_rel…
…ease chardev:add case for chardev release console
- Loading branch information
Showing
2 changed files
with
141 additions
and
0 deletions.
There are no files selected for viewing
34 changes: 34 additions & 0 deletions
34
libvirt/tests/cfg/chardev/virsh_console_operation/release_console.cfg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
- chardev.release_console: | ||
type = release_console | ||
start_vm = 'no' | ||
chardev_type = "pty" | ||
release_cmd = "shutdown -h now" | ||
port = 0 | ||
variants dev: | ||
- console: | ||
chardev = "console" | ||
access_cmd = "virsh console %s" | ||
expected_msg = "Shell process terminated" | ||
variants: | ||
- virtio_target: | ||
target_type = "virtio" | ||
device_dict = "{'type_name':'${chardev_type}','target_type':'${target_type}', 'target_port':'${port}'}" | ||
- serial: | ||
chardev = "serial" | ||
access_cmd = "console %s" | ||
expected_msg = "1.*%s.*running" | ||
variants: | ||
- pci_target: | ||
no s390-virtio | ||
target_type = "pci-serial" | ||
device_dict = "{'type_name':'${chardev_type}','target_type':'${target_type}', 'target_port':'${port}'}" | ||
- isa_target: | ||
target_type = isa-serial | ||
target_model = isa-serial | ||
aarch64: | ||
target_type = system-serial | ||
target_model = pl011 | ||
s390x: | ||
target_type = sclp-serial | ||
target_model = sclpconsole | ||
device_dict = "{'type_name':'${chardev_type}','target_model':'${target_model}','target_type':'${target_type}', 'target_port':'${port}'}" |
107 changes: 107 additions & 0 deletions
107
libvirt/tests/src/chardev/virsh_console_operation/release_console.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
# | ||
# Copyright Redhat | ||
# | ||
# SPDX-License-Identifier: GPL-2.0 | ||
|
||
# Author: Nan Li <[email protected]> | ||
# | ||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
import aexpect | ||
import re | ||
|
||
from virttest import virsh | ||
from virttest import utils_test | ||
|
||
from virttest.libvirt_xml import vm_xml | ||
from virttest.utils_libvirt import libvirt_vmxml | ||
|
||
|
||
def run(test, params, env): | ||
""" | ||
Test virsh console client can release console and return to host | ||
when guest shutdown. | ||
""" | ||
|
||
def setup_test(): | ||
""" | ||
Make sure remove all other serial/console devices before test. | ||
""" | ||
test.log.info("Setup env: Remove console and serial") | ||
vmxml = vm_xml.VMXML.new_from_dumpxml(vm_name) | ||
vmxml.remove_all_device_by_type('console') | ||
vmxml.remove_all_device_by_type('serial') | ||
vmxml.sync() | ||
|
||
def run_test(): | ||
""" | ||
1) Start guest with chardev. | ||
2) Connect to vm . | ||
3) Shutdown and console is closed. | ||
""" | ||
test.log.info("TEST_STEP1: Add chardev and start guest") | ||
vmxml = vm_xml.VMXML.new_from_dumpxml(vm_name) | ||
libvirt_vmxml.modify_vm_device( | ||
vmxml=vmxml, dev_type=chardev, dev_dict=device_dict) | ||
vm.start() | ||
vm.wait_for_login().close() | ||
vmxml = vm_xml.VMXML.new_from_dumpxml(vm_name) | ||
test.log.debug("The vmxml after start vm is:\n %s", vmxml) | ||
|
||
test.log.info("TEST_STEP2: Connect to vm and check shutdown works.") | ||
if dev == "console": | ||
# Check with 'virsh console vm_name' | ||
access_session = aexpect.ShellSession(access_cmd % vm_name) | ||
utils_test.libvirt.virsh_console_login( | ||
access_session, params.get('username'), params.get('password'), | ||
debug=True) | ||
try: | ||
access_session.cmd_output(release_cmd) | ||
test.log.debug("Sent cmd: '%s' in console" % release_cmd) | ||
except (aexpect.ShellError, aexpect.ExpectError) as detail: | ||
if expected_msg not in str(detail): | ||
test.fail('Expect shell terminated, but found %s' % detail) | ||
else: | ||
test.log.debug("Got '%s' in '%s' " % (expected_msg, detail)) | ||
|
||
elif dev == "serial": | ||
# Check with 'virsh' and 'console vm_name' | ||
access_session = virsh.VirshSession(virsh_exec=virsh.VIRSH_EXEC) | ||
access_session.sendline(access_cmd % vm_name) | ||
utils_test.libvirt.virsh_console_login( | ||
access_session, params.get('username'), params.get('password'), | ||
debug=True) | ||
|
||
result = access_session.cmd_output('list') | ||
# dom_output = virsh.dom_list("--all", debug=True).stdout.strip() | ||
if not re.search(expected_msg % vm_name, result): | ||
test.fail('Expect "%s", but found "%s"' % (expected_msg % vm_name, result)) | ||
else: | ||
test.log.debug("Got '%s' in '%s' " % (expected_msg % vm_name, result)) | ||
|
||
def teardown_test(): | ||
""" | ||
Clean data. | ||
""" | ||
if vm.is_alive(): | ||
vm.destroy(gracefully=False) | ||
bkxml.sync() | ||
|
||
vm_name = params.get("main_vm") | ||
dev = params.get('dev') | ||
release_cmd = params.get('release_cmd') | ||
expected_msg = params.get('expected_msg') | ||
chardev = params.get('chardev') | ||
access_cmd = params.get('access_cmd') | ||
device_dict = eval(params.get('device_dict', '{}')) | ||
|
||
vm = env.get_vm(vm_name) | ||
vmxml = vm_xml.VMXML.new_from_inactive_dumpxml(vm_name) | ||
bkxml = vmxml.copy() | ||
|
||
try: | ||
setup_test() | ||
run_test() | ||
|
||
finally: | ||
teardown_test() |