uitests: Add a fixture for passing in VMMDogtailApp

Reproducing what the custom unittest TestCase does. Convert
test_about as a demo

Signed-off-by: Cole Robinson <crobinso@redhat.com>
This commit is contained in:
Cole Robinson 2020-09-11 13:54:40 -04:00
parent ebf76563b8
commit aa8572048b
3 changed files with 31 additions and 19 deletions

17
tests/uitests/conftest.py Normal file
View File

@ -0,0 +1,17 @@
# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import pytest
@pytest.fixture
def app():
"""
Custom pytest fixture to a VMMDogtailApp instance to the testcase
"""
from .lib.app import VMMDogtailApp
testapp = VMMDogtailApp()
try:
yield testapp
finally:
testapp.stop()

View File

@ -6,24 +6,19 @@ import datetime
from . import lib
class VMMAbout(lib.testcase.UITestCase):
"""
UI tests for the 'About' dialog
"""
###################################
# UI tests for the 'About' dialog #
###################################
##############
# Test cases #
##############
def testAbout(app):
app.root.find("Help", "menu").click()
app.root.find("About", "menu item").click()
win = app.root.find_fuzzy("About", "dialog")
l = win.find_fuzzy("Copyright", "label")
def testAbout(self):
self.app.root.find("Help", "menu").click()
self.app.root.find("About", "menu item").click()
win = self.app.root.find_fuzzy("About", "dialog")
l = win.find_fuzzy("Copyright", "label")
curyear = datetime.datetime.today().strftime("%Y")
if curyear not in l.text:
print("Current year=%s not in about.ui dialog!" % curyear)
curyear = datetime.datetime.today().strftime("%Y")
if curyear not in l.text:
print("Current year=%s not in about.ui dialog!" % curyear)
win.keyCombo("<ESC>")
lib.utils.check(lambda: win.visible is False)
win.keyCombo("<ESC>")
lib.utils.check(lambda: win.visible is False)

View File

@ -57,7 +57,7 @@ class Details(lib.testcase.UITestCase):
return win
def testDetailsHardwareSmokeTest(self):
self._testSmokeTest(None)
self._testSmokeTest("test-many-devices")
def testDetailsHardwareSmokeTestAlternate(self):
self.app.open(keyfile="allstats.ini")