mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-01-11 05:17:59 +03:00
3c62685bf1
Signed-off-by: Povilas Kanapickas <povilas@radix.lt>
58 lines
1.9 KiB
Python
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)
|