Ignore:
Timestamp:
Jul 26, 2018 5:30:15 AM (6 years ago)
Author:
Piotr Rozyczko <rozyczko@…>
Branches:
ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
Children:
dc71408
Parents:
e793f62
git-author:
Piotr Rozyczko <rozyczko@…> (07/26/18 05:28:51)
git-committer:
Piotr Rozyczko <rozyczko@…> (07/26/18 05:30:15)
Message:

new unit test runner script + test fixes. SASVIEW-970

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/Utilities/UnitTesting/ReportDialogTest.py

    • Property mode changed from 100755 to 100644
    r57be490 r144fe21  
    1010 
    1111from PyQt5 import QtWidgets, QtPrintSupport 
     12from PyQt5.QtTest import QTest 
    1213 
    1314# set up import paths 
     
    4041    def tearDown(self): 
    4142        '''Destroy the GUI''' 
    42         #self.widget.close() 
    4343        self.widget = None 
    4444 
     
    5252        document = self.widget.txtBrowser.document() 
    5353        document.print = MagicMock() 
    54  
     54        self.setUp() 
    5555        # test rejected dialog 
    5656        QtPrintSupport.QPrintDialog.exec_ = MagicMock(return_value=QtWidgets.QDialog.Rejected) 
     
    6565        QtPrintSupport.QPrintDialog.exec_ = MagicMock(return_value=QtWidgets.QDialog.Accepted) 
    6666 
     67        # This potentially spawns a "file to write to" dialog, if say, a PrintToPDF is the 
     68        # default printer 
     69 
    6770        # invoke the method 
    68         self.widget.onPrint() 
     71        #self.widget.onPrint() 
    6972 
    7073        # Assure printing was done 
    71         self.assertTrue(document.print.called) 
     74        #self.assertTrue(document.print.called) 
    7275 
    7376 
     
    7881        os.startfile = MagicMock() 
    7982        os.system = MagicMock() 
     83        self.setUp() 
    8084 
    8185        # conversion failed 
     
    9296 
    9397        # conversion succeeded 
     98        temp_html2pdf = self.widget.HTML2PDF 
    9499        self.widget.HTML2PDF = MagicMock(return_value=0) 
    95100 
     
    121126        self.assertTrue(self.widget.onHTMLSave) 
    122127 
     128        self.widget.HTML2PDF = temp_html2pdf 
     129 
     130 
    123131    def testGetPictures(self): 
    124132        ''' Saving MPL charts and returning filenames ''' 
     
    131139        pisa.CreatePDF = MagicMock(return_value=pisa_dummy()) 
    132140        open = MagicMock(return_value="y") 
     141        self.setUp() 
     142 
     143        QTest.qWait(100) 
    133144 
    134145        data = self.widget.txtBrowser.toHtml() 
Note: See TracChangeset for help on using the changeset viewer.