In my pyqt program, there're some dialogs opened by static methods such as QColorDialog.getColor(), or QFileDialog.getSaveFileName(). I wish these dialogs can be manipulated by code in test. The simplest manipulation is calling QDialog reject() method. So:

def test_getMyColor(self):                      #Test method in a test case
    t=threading.Timer(0.1,self.manipulateDialog)
    t.start()
    self.x.getMyColor()
    t.join()

def manipulateDialog()                          #Run in another thread, after the dialog opened
    d=QApplication.activeModalWidget()
    d.reject()

def getMyColor()                                #Method in the tested code in another module
    myColor=QColorDialog.getColor()

It works fine. The dialog flashes and vanishes. I tried to reproduce the success on QFileDialog:

def test_getMyFileName(self):                   #Test method in a test case
    t=threading.Timer(0.1,self.manipulateDialog)
    t.start()
    self.x.getMyFileName()
    t.join()

def manipulateDialog()                          #Run in another thread, after the dialog opened
    d=QApplication.activeModalWidget()
    d.reject()

def getMyFileName()                             #Method in the tested code in another module
    myColor=QFileDialog.getSaveFileName()

It doesn't work! The dialog shows on screen, waiting for my response.

I tried longer internals, no effect. And QTest didn't help too. The only thing I can determine is the var d get an object of QDialog.

This is just the beginning. A bigger problem is, even if I get the QDialog object and manipulate the methods inherited from QDialog normaly, I can not call the methods specific to the child type yet, such as QColorDialog setCurrentColor(). For QFileDialog, I don't even know how to specify the file name by code.

Any suggestion is appreciated.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.