X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e3778b4d9c7eebc39f496a9dd055638e06fb9140..e86aa7a62cc8be79ffaeb0d07b70161cb9ea2c74:/tests/controls/comboboxtest.cpp diff --git a/tests/controls/comboboxtest.cpp b/tests/controls/comboboxtest.cpp index 3086578c7f..147c5638a7 100644 --- a/tests/controls/comboboxtest.cpp +++ b/tests/controls/comboboxtest.cpp @@ -56,18 +56,33 @@ private: } CPPUNIT_TEST_SUITE( ComboBoxTestCase ); +#ifdef __WXOSX__ + CPPUNIT_TEST( SetValue ); + CPPUNIT_TEST( TextChangeEvents ); + CPPUNIT_TEST( Selection ); + CPPUNIT_TEST( InsertionPoint ); + CPPUNIT_TEST( Replace ); +// TODO on OS X only works interactively +// WXUISIM_TEST( Editable ); + CPPUNIT_TEST( Hint ); + CPPUNIT_TEST( CopyPaste ); + CPPUNIT_TEST( UndoRedo ); +#else wxTEXT_ENTRY_TESTS(); +#endif wxITEM_CONTAINER_TESTS(); CPPUNIT_TEST( Size ); CPPUNIT_TEST( PopDismiss ); CPPUNIT_TEST( Sort ); CPPUNIT_TEST( ReadOnly ); + CPPUNIT_TEST( IsEmpty ); CPPUNIT_TEST_SUITE_END(); void Size(); void PopDismiss(); void Sort(); void ReadOnly(); + void IsEmpty(); wxComboBox *m_combo; @@ -127,17 +142,14 @@ void ComboBoxTestCase::Size() void ComboBoxTestCase::PopDismiss() { #if defined(__WXMSW__) || defined(__WXGTK210__) - wxTestableFrame* frame = wxStaticCast(wxTheApp->GetTopWindow(), - wxTestableFrame); - - EventCounter count(m_combo, wxEVT_COMMAND_COMBOBOX_DROPDOWN); - EventCounter count1(m_combo, wxEVT_COMMAND_COMBOBOX_CLOSEUP); + EventCounter drop(m_combo, wxEVT_COMBOBOX_DROPDOWN); + EventCounter close(m_combo, wxEVT_COMBOBOX_CLOSEUP); m_combo->Popup(); m_combo->Dismiss(); - CPPUNIT_ASSERT_EQUAL(1, frame->GetEventCount(wxEVT_COMMAND_COMBOBOX_DROPDOWN)); - CPPUNIT_ASSERT_EQUAL(1, frame->GetEventCount(wxEVT_COMMAND_COMBOBOX_CLOSEUP)); + CPPUNIT_ASSERT_EQUAL(1, drop.GetCount()); + CPPUNIT_ASSERT_EQUAL(1, close.GetCount()); #endif } @@ -170,7 +182,6 @@ void ComboBoxTestCase::Sort() void ComboBoxTestCase::ReadOnly() { -#ifndef __WXOSX__ wxArrayString testitems; testitems.Add("item 1"); testitems.Add("item 2"); @@ -191,6 +202,28 @@ void ComboBoxTestCase::ReadOnly() m_combo->SetValue("ITEM 2"); CPPUNIT_ASSERT_EQUAL("item 2", m_combo->GetValue()); +} + +void ComboBoxTestCase::IsEmpty() +{ + CPPUNIT_ASSERT( m_combo->IsListEmpty() ); + CPPUNIT_ASSERT( m_combo->IsTextEmpty() ); + + m_combo->Append("foo"); + CPPUNIT_ASSERT( !m_combo->IsListEmpty() ); + CPPUNIT_ASSERT( m_combo->IsTextEmpty() ); + + m_combo->SetValue("bar"); + CPPUNIT_ASSERT( !m_combo->IsListEmpty() ); + CPPUNIT_ASSERT( !m_combo->IsTextEmpty() ); + + m_combo->Clear(); + CPPUNIT_ASSERT( m_combo->IsListEmpty() ); + CPPUNIT_ASSERT( m_combo->IsTextEmpty() ); + +#ifdef TEST_INVALID_COMBOBOX_ISEMPTY + // Compiling this should fail, see failtest target definition in test.bkl. + m_combo->IsEmpty(); #endif }