1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
|
#/*##########################################################################
# Copyright (C) 2004-2019 European Synchrotron Radiation Facility
#
# This file is part of the PyMca X-ray Fluorescence Toolkit developed at
# the ESRF by the Software group.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
#############################################################################*/
import logging
import os
import sys
import unittest
import PyMca5.PyMcaGui.PyMcaQt as qt
from PyMca5.PyMcaGui.misc.testutils import TestCaseQt
_logger = logging.getLogger(__name__)
class TestQtWrapper(unittest.TestCase):
"""Minimalistic test to check that Qt has been loaded."""
def testQObject(self):
"""Test that QObject is there."""
obj = qt.QObject()
self.assertTrue(obj is not None)
class TestPlotWidget(TestCaseQt):
def setUp(self):
super(TestPlotWidget, self).setUp()
def testShow(self):
from PyMca5.PyMcaGui.plotting import PlotWidget
widget = PlotWidget.PlotWidget()
widget.show()
self.qapp.processEvents()
class TestRGBCorrelatorGraph(TestCaseQt):
def setUp(self):
super(TestRGBCorrelatorGraph, self).setUp()
def testShow(self):
from PyMca5.PyMcaGui.plotting import RGBCorrelatorGraph
widget = RGBCorrelatorGraph.RGBCorrelatorGraph()
widget.show()
self.qapp.processEvents()
from PyMca5.PyMcaGui.plotting import PyMcaPrintPreview
PyMcaPrintPreview.resetSingletonPrintPreview()
class TestMaskImageWidget(TestCaseQt):
def setUp(self):
super(TestMaskImageWidget, self).setUp()
def testShow(self):
from PyMca5.PyMcaGui.plotting import MaskImageWidget
widget = MaskImageWidget.MaskImageWidget()
widget.show()
self.qapp.processEvents()
from PyMca5.PyMcaGui.plotting import PyMcaPrintPreview
PyMcaPrintPreview.resetSingletonPrintPreview()
class TestPlotWindow(TestCaseQt):
def setUp(self):
super(TestPlotWindow, self).setUp()
def testShow(self):
from PyMca5.PyMcaGui.plotting import PlotWindow
widget = PlotWindow.PlotWindow()
widget.show()
self.qapp.processEvents()
class TestScanWindow(TestCaseQt):
def setUp(self):
super(TestScanWindow, self).setUp()
def testShow(self):
from PyMca5.PyMcaGui.pymca import ScanWindow
widget = ScanWindow.ScanWindow()
widget.show()
self.qapp.processEvents()
from PyMca5.PyMcaGui.plotting import PyMcaPrintPreview
PyMcaPrintPreview.resetSingletonPrintPreview()
class TestMcaWindow(TestCaseQt):
def setUp(self):
super(TestMcaWindow, self).setUp()
def testShow(self):
from PyMca5.PyMcaGui.pymca import McaWindow
widget = McaWindow.McaWindow()
widget.show()
self.qapp.processEvents()
from PyMca5.PyMcaGui.plotting import PyMcaPrintPreview
PyMcaPrintPreview.resetSingletonPrintPreview()
class TestMcaAdvancedFit(TestCaseQt):
def setUp(self):
super(TestMcaAdvancedFit, self).setUp()
def testShow(self):
from PyMca5.PyMcaGui.physics.xrf import McaAdvancedFit
widget = McaAdvancedFit.McaAdvancedFit()
widget.show()
self.qapp.processEvents()
from PyMca5.PyMcaGui.plotting import PyMcaPrintPreview
PyMcaPrintPreview.resetSingletonPrintPreview()
class TestPyMcaMain(TestCaseQt):
def setUp(self):
super(TestPyMcaMain, self).setUp()
def testShow(self):
from PyMca5.PyMcaGui.pymca import PyMcaMain
widget = PyMcaMain.PyMcaMain()
widget.show()
self.qapp.processEvents()
from PyMca5.PyMcaGui.plotting import PyMcaPrintPreview
PyMcaPrintPreview.resetSingletonPrintPreview()
def getSuite(auto=True):
test_suite = unittest.TestSuite()
with_qt_test = True
skip_msg = ""
if sys.platform.startswith('linux') and not os.environ.get('DISPLAY', ''):
# On Linux and no DISPLAY available (e.g., ssh without -X)
skip_msg = 'Widgets tests disabled (DISPLAY env. variable not set)'
with_qt_test = False
elif os.environ.get('WITH_QT_TEST', 'True') == 'False':
skip_msg = "Widgets tests skipped by WITH_QT_TEST env var"
with_qt_test = False
if not with_qt_test:
class SkipGUITest(unittest.TestCase):
def runTest(self):
self.skipTest(
skip_msg)
test_suite.addTest(SkipGUITest())
return test_suite
for TestCaseCls in (TestQtWrapper,
TestPlotWidget,
TestPlotWindow,
TestRGBCorrelatorGraph,
TestMaskImageWidget,
TestScanWindow,
TestMcaWindow,
TestMcaAdvancedFit,
TestPyMcaMain,
):
test_suite.addTest(
unittest.defaultTestLoader.loadTestsFromTestCase(TestCaseCls))
return test_suite
def test(auto=False):
return unittest.TextTestRunner(verbosity=2).run(getSuite(auto=auto))
if __name__ == '__main__':
if len(sys.argv) > 1:
auto = False
else:
auto = True
app = qt.QApplication([])
result = test(auto)
app = None
sys.exit(not result.wasSuccessful())
|