You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

111 lines
4.5 KiB

import sys
import unittest
from argparse import ArgumentParser
from collections import namedtuple
from pprint import pprint
from unittest.mock import patch
from unittest.mock import MagicMock
from gooey.python_bindings import constants
from gooey.tests.harness import instrumentGooey
from gooey.tests import *
class TestGooeyApplication(unittest.TestCase):
def testFullscreen(self):
parser = self.basicParser()
for shouldShow in [True, False]:
with self.subTest('Should set full screen: {}'.format(shouldShow)):
with instrumentGooey(parser, fullscreen=shouldShow) as (app, frame, gapp):
self.assertEqual(frame.IsFullScreen(), shouldShow)
@patch("gooey.gui.containers.application.modals.confirmForceStop")
def testGooeyRequestsConfirmationWhenShowStopWarningModalTrue(self, mockModal):
"""
When show_stop_warning=False, Gooey should immediately kill the
running program without additional user confirmation.
Otherwise, Gooey should show a confirmation modal and, dependending on the
user's choice, either do nothing or kill the running program.
"""
Case = namedtuple('Case', ['show_warning', 'shouldSeeConfirm', 'userChooses', 'shouldHaltProgram'])
testcases = [
Case(show_warning=True, shouldSeeConfirm=True, userChooses=True, shouldHaltProgram=True),
Case(show_warning=True, shouldSeeConfirm=True, userChooses=False, shouldHaltProgram=False),
Case(show_warning=False, shouldSeeConfirm=False, userChooses='N/A', shouldHaltProgram=True),
]
for case in testcases:
mockModal.reset_mock()
parser = self.basicParser()
with instrumentGooey(parser, show_stop_warning=case.show_warning) as (app, frame, gapp):
mockClientRunner = MagicMock()
mockModal.return_value = case.userChooses
gapp.clientRunner = mockClientRunner
gapp.handleInterrupt()
if case.shouldSeeConfirm:
mockModal.assert_called()
else:
mockModal.assert_not_called()
if case.shouldHaltProgram:
mockClientRunner.stop.assert_called()
else:
mockClientRunner.stop.assert_not_called()
def testTerminalColorChanges(self):
## Issue #625 terminal panel color wasn't being set due to a typo
parser = self.basicParser()
expectedColors = [(255, 0, 0, 255), (255, 255, 255, 255), (100, 100, 100,100)]
for expectedColor in expectedColors:
with instrumentGooey(parser, terminal_panel_color=expectedColor) as (app, frame, gapp):
foundColor = gapp.consoleRef.instance.GetBackgroundColour()
self.assertEqual(tuple(foundColor), expectedColor)
def testFontWeightsGetSet(self):
## Issue #625 font weight wasn't being correctly passed to the terminal
for weight in [constants.FONTWEIGHT_LIGHT, constants.FONTWEIGHT_BOLD]:
parser = self.basicParser()
with instrumentGooey(parser, terminal_font_weight=weight) as (app, frame, gapp):
terminal = gapp.consoleRef.instance.textbox
self.assertEqual(terminal.GetFont().GetWeight(), weight)
def testProgressBarHiddenWhenDisabled(self):
options = [
{'disable_progress_bar_animation': True},
{'disable_progress_bar_animation': False},
{}
]
for kwargs in options:
parser = self.basicParser()
with instrumentGooey(parser, **kwargs) as (app, frame, gapp):
mockClientRunner = MagicMock()
frame.clientRunner = mockClientRunner
# transition's Gooey to the running state using the now mocked processor.
# so that we can make assertions about the visibility of footer buttons
gapp.onStart()
# the progress bar flag is awkwardly inverted (is_disabled, rather than
# is_enabled). Thus inverting the expectation here. When disabled is true,
# shown should be False,
expect_shown = not kwargs.get('disable_progress_bar_animation', False)
self.assertEqual(gapp.state['progress']['show'], expect_shown)
def basicParser(self):
parser = ArgumentParser()
parser.add_argument('--foo')
return parser
if __name__ == '__main__':
unittest.main()