virt-manager/tests/uitests/prefs.py
Povilas Kanapickas 3c62685bf1 uitests: Use Ctrl_L+Alt_L+Z as a grab keys when testing prefs
Signed-off-by: Povilas Kanapickas <povilas@radix.lt>
2018-09-04 13:30:14 -04:00

58 lines
1.9 KiB
Python

# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
from tests.uitests import utils as uiutils
class VMMPrefs(uiutils.UITestCase):
"""
UI tests for the preferences dialog
"""
##############
# Test cases #
##############
def testPrefs(self):
self.app.root.find("Edit", "menu").click()
self.app.root.find("Preferences", "menu item").click()
win = self.app.root.find_fuzzy("Preferences", "frame")
win.find_fuzzy("Enable system tray", "check").click()
win.find("Polling", "page tab").click()
win.find_fuzzy(None, "check box",
labeller_text="Poll CPU").click()
win.find("New VM", "page tab").click()
win.find("prefs-add-spice-usbredir",
"combo box").click()
win.find("No", "menu item").click()
win.find("Console", "page tab").click()
win.find("Change...", "push button").click()
keyframe = self.app.root.find_fuzzy("Configure grab", "dialog")
# On certain environments pressing "Alt_L" and clicking a window starts
# window drag operation. Work around by pushing both Control and Alt.
self.holdKey("Control_L")
self.holdKey("Alt_L")
self.holdKey("Z")
try:
keyframe.find_fuzzy("OK", "push button").click()
finally:
self.releaseKey("Z")
self.releaseKey("Alt_L")
self.releaseKey("Control_L")
win.find("Feedback", "page tab").click()
win.find_fuzzy(None, "check box",
labeller_text="Force Poweroff").click()
win.find("General", "page tab").click()
win.find_fuzzy("Enable system tray", "check").click()
win.find_fuzzy("Close", "push button").click()
uiutils.check_in_loop(lambda: win.visible is False)