Files
Phoenix/unittests/test_lib_agw_cubecolourdialog.py
James Wettenhall 220b97f9e7 Explicitly calling ShowModal and Destroy avoids having WidgetTestCase's
tlw.Close(force=True) trigger an exception because the dialog's EVT_CLOSE
handler is trying to call EndModal on a dialog which isn't modal.
2017-03-23 21:55:22 +11:00

46 lines
1.4 KiB
Python

import unittest
from unittests import wtc
import wx
import wx.lib.agw.cubecolourdialog as CCD
#---------------------------------------------------------------------------
class lib_agw_cubecolourdialog_Tests(wtc.WidgetTestCase):
def test_lib_agw_cubecolourdialogCtor(self):
colourData = wx.ColourData()
colourData.SetColour(wx.RED)
dlg = CCD.CubeColourDialog(self.frame, colourData, agwStyle=0)
wx.CallLater(250, dlg.EndModal, wx.ID_OK)
dlg.ShowModal()
dlg.Destroy()
def test_lib_agw_cubecolourdialogMethods(self):
colourData = wx.ColourData()
colourData.SetColour(wx.BLUE)
dlg = CCD.CubeColourDialog(self.frame, colourData, agwStyle=0)
self.assertTrue(dlg.GetAGWWindowStyleFlag() == 0)
dlg.SetAGWWindowStyleFlag(CCD.CCD_SHOW_ALPHA)
self.assertTrue(dlg.GetAGWWindowStyleFlag() > 0)
colour = dlg.GetRGBAColour()
self.assertEqual(colour, wx.Colour('blue'))
ccd_colour = CCD.Colour(wx.Colour(colour))
html = CCD.rgb2html(ccd_colour)
self.assertTrue(html in CCD.HTMLCodes)
wx.CallLater(250, dlg.EndModal, wx.ID_OK)
dlg.ShowModal()
dlg.Destroy()
def test_lib_agw_cubecolourdialogConstantsExist(self):
# CubeColourDialog agwStyle
CCD.CCD_SHOW_ALPHA
#---------------------------------------------------------------------------
if __name__ == '__main__':
unittest.main()