| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278 |
- ///////////////////////////////////////////////////////////////////////////////
- // Name: tests/controls/listbox.cpp
- // Purpose: wxListBox unit test
- // Author: Steven Lamerton
- // Created: 2010-06-29
- // Copyright: (c) 2010 Steven Lamerton
- ///////////////////////////////////////////////////////////////////////////////
- #include "testprec.h"
- #if wxUSE_LISTBOX
- #ifdef __BORLANDC__
- #pragma hdrstop
- #endif
- #ifndef WX_PRECOMP
- #include "wx/app.h"
- #include "wx/listbox.h"
- #endif // WX_PRECOMP
- #include "itemcontainertest.h"
- #include "testableframe.h"
- #include "wx/uiaction.h"
- class ListBoxTestCase : public ItemContainerTestCase, public CppUnit::TestCase
- {
- public:
- ListBoxTestCase() { }
- virtual void setUp();
- virtual void tearDown();
- private:
- virtual wxItemContainer *GetContainer() const { return m_list; }
- virtual wxWindow *GetContainerWindow() const { return m_list; }
- CPPUNIT_TEST_SUITE( ListBoxTestCase );
- wxITEM_CONTAINER_TESTS();
- CPPUNIT_TEST( Sort );
- CPPUNIT_TEST( MultipleSelect );
- WXUISIM_TEST( ClickEvents );
- WXUISIM_TEST( ClickNotOnItem );
- CPPUNIT_TEST( HitTest );
- //We also run all tests as an ownerdrawn list box. We do not need to
- //run the wxITEM_CONTAINER_TESTS as they are tested with wxCheckListBox
- #ifdef __WXMSW__
- CPPUNIT_TEST( PseudoTest_OwnerDrawn );
- CPPUNIT_TEST( Sort );
- CPPUNIT_TEST( MultipleSelect );
- WXUISIM_TEST( ClickEvents );
- WXUISIM_TEST( ClickNotOnItem );
- CPPUNIT_TEST( HitTest );
- #endif
- CPPUNIT_TEST_SUITE_END();
- void Sort();
- void MultipleSelect();
- void ClickEvents();
- void ClickNotOnItem();
- void HitTest();
- void PseudoTest_OwnerDrawn() { ms_ownerdrawn = true; }
- static bool ms_ownerdrawn;
- wxListBox* m_list;
- DECLARE_NO_COPY_CLASS(ListBoxTestCase)
- };
- // register in the unnamed registry so that these tests are run by default
- CPPUNIT_TEST_SUITE_REGISTRATION( ListBoxTestCase );
- // also include in its own registry so that these tests can be run alone
- CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( ListBoxTestCase, "ListBoxTestCase" );
- //initialise the static variable
- bool ListBoxTestCase::ms_ownerdrawn = false;
- void ListBoxTestCase::setUp()
- {
- if( ms_ownerdrawn )
- {
- m_list = new wxListBox(wxTheApp->GetTopWindow(), wxID_ANY,
- wxDefaultPosition, wxSize(300, 200), 0, NULL,
- wxLB_OWNERDRAW);
- }
- else
- {
- m_list = new wxListBox(wxTheApp->GetTopWindow(), wxID_ANY,
- wxDefaultPosition, wxSize(300, 200));
- }
- }
- void ListBoxTestCase::tearDown()
- {
- wxDELETE(m_list);
- }
- void ListBoxTestCase::Sort()
- {
- #ifndef __WXOSX__
- wxDELETE(m_list);
- m_list = new wxListBox(wxTheApp->GetTopWindow(), wxID_ANY,
- wxDefaultPosition, wxDefaultSize, 0, 0,
- wxLB_SORT);
- wxArrayString testitems;
- testitems.Add("aaa");
- testitems.Add("Aaa");
- testitems.Add("aba");
- testitems.Add("aaab");
- testitems.Add("aab");
- testitems.Add("AAA");
- m_list->Append(testitems);
- CPPUNIT_ASSERT_EQUAL("AAA", m_list->GetString(0));
- CPPUNIT_ASSERT_EQUAL("Aaa", m_list->GetString(1));
- CPPUNIT_ASSERT_EQUAL("aaa", m_list->GetString(2));
- CPPUNIT_ASSERT_EQUAL("aaab", m_list->GetString(3));
- CPPUNIT_ASSERT_EQUAL("aab", m_list->GetString(4));
- CPPUNIT_ASSERT_EQUAL("aba", m_list->GetString(5));
- m_list->Append("a");
- CPPUNIT_ASSERT_EQUAL("a", m_list->GetString(0));
- #endif
- }
- void ListBoxTestCase::MultipleSelect()
- {
- wxDELETE(m_list);
- m_list = new wxListBox(wxTheApp->GetTopWindow(), wxID_ANY,
- wxDefaultPosition, wxDefaultSize, 0, 0,
- wxLB_MULTIPLE);
- wxArrayString testitems;
- testitems.Add("item 0");
- testitems.Add("item 1");
- testitems.Add("item 2");
- testitems.Add("item 3");
- m_list->Append(testitems);
- m_list->SetSelection(0);
- wxArrayInt selected;
- m_list->GetSelections(selected);
- CPPUNIT_ASSERT_EQUAL(1, selected.Count());
- CPPUNIT_ASSERT_EQUAL(0, selected.Item(0));
- m_list->SetSelection(2);
- m_list->GetSelections(selected);
- CPPUNIT_ASSERT_EQUAL(2, selected.Count());
- CPPUNIT_ASSERT_EQUAL(2, selected.Item(1));
- m_list->Deselect(0);
- m_list->GetSelections(selected);
- CPPUNIT_ASSERT_EQUAL(1, selected.Count());
- CPPUNIT_ASSERT_EQUAL(2, selected.Item(0));
- CPPUNIT_ASSERT(!m_list->IsSelected(0));
- CPPUNIT_ASSERT(!m_list->IsSelected(1));
- CPPUNIT_ASSERT(m_list->IsSelected(2));
- CPPUNIT_ASSERT(!m_list->IsSelected(3));
- m_list->SetSelection(0);
- m_list->SetSelection(wxNOT_FOUND);
- m_list->GetSelections(selected);
- CPPUNIT_ASSERT_EQUAL(0, selected.Count());
- }
- void ListBoxTestCase::ClickEvents()
- {
- #if wxUSE_UIACTIONSIMULATOR
- wxTestableFrame* frame = wxStaticCast(wxTheApp->GetTopWindow(),
- wxTestableFrame);
- EventCounter selected(frame, wxEVT_LISTBOX);
- EventCounter dclicked(frame, wxEVT_LISTBOX_DCLICK);
- wxUIActionSimulator sim;
- wxArrayString testitems;
- testitems.Add("item 0");
- testitems.Add("item 1");
- testitems.Add("item 2");
- m_list->Append(testitems);
- m_list->Update();
- m_list->Refresh();
- sim.MouseMove(m_list->ClientToScreen(wxPoint(10, 10)));
- wxYield();
- sim.MouseClick();
- wxYield();
- CPPUNIT_ASSERT_EQUAL(1, selected.GetCount());
- sim.MouseDblClick();
- wxYield();
- CPPUNIT_ASSERT_EQUAL(1, dclicked.GetCount());
- #endif
- }
- void ListBoxTestCase::ClickNotOnItem()
- {
- #if wxUSE_UIACTIONSIMULATOR
- wxTestableFrame* frame = wxStaticCast(wxTheApp->GetTopWindow(),
- wxTestableFrame);
- EventCounter selected(frame, wxEVT_LISTBOX);
- EventCounter dclicked(frame, wxEVT_LISTBOX_DCLICK);
- wxUIActionSimulator sim;
- wxArrayString testitems;
- testitems.Add("item 0");
- testitems.Add("item 1");
- testitems.Add("item 2");
- m_list->Append(testitems);
- // It is important to set a valid selection: if the control doesn't have
- // any, clicking anywhere in it, even outside of any item, selects the
- // first item in the control under GTK resulting in a selection changed
- // event. This is not a wx bug, just the native platform behaviour so
- // simply avoid it by starting with a valid selection.
- m_list->SetSelection(0);
- m_list->Update();
- m_list->Refresh();
- sim.MouseMove(m_list->ClientToScreen(wxPoint(m_list->GetSize().x - 10, m_list->GetSize().y - 10)));
- wxYield();
- sim.MouseClick();
- wxYield();
- sim.MouseDblClick();
- wxYield();
- //If we are not clicking on an item we shouldn't have any events
- CPPUNIT_ASSERT_EQUAL(0, selected.GetCount());
- CPPUNIT_ASSERT_EQUAL(0, dclicked.GetCount());
- #endif
- }
- void ListBoxTestCase::HitTest()
- {
- wxArrayString testitems;
- testitems.Add("item 0");
- testitems.Add("item 1");
- testitems.Add("item 2");
- m_list->Append(testitems);
- #ifdef __WXGTK__
- // The control needs to be realized for HitTest() to work.
- wxYield();
- #endif
- CPPUNIT_ASSERT_EQUAL( 0, m_list->HitTest(5, 5) );
- CPPUNIT_ASSERT_EQUAL( wxNOT_FOUND, m_list->HitTest(290, 190) );
- }
- #endif //wxUSE_LISTBOX
|