Merge the new GUI tests from SOC2010_GUI_TEST branch.

Add a lot of tests for many wx GUI classes.

Add tests using the new wxUIActionSimulator class but disable them under OS X
as too many of them currently fail there.

Refactor the test suite to make organizing the existing tests and adding the
new ones easier.

Improve documentation using the information gathered while testing the
classes. Also update the documentation of the testing system itself.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65386 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2010-08-22 22:16:05 +00:00
parent 571d991bb3
commit 232fdc630c
79 changed files with 9150 additions and 491 deletions

View File

@@ -0,0 +1,147 @@
///////////////////////////////////////////////////////////////////////////////
// Name: tests/controls/treebooktest.cpp
// Purpose: wxtreebook unit test
// Author: Steven Lamerton
// Created: 2010-07-02
// RCS-ID: $Id$
// Copyright: (c) 2010 Steven Lamerton
///////////////////////////////////////////////////////////////////////////////
#include "testprec.h"
#if wxUSE_TREEBOOK
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#ifndef WX_PRECOMP
#include "wx/app.h"
#include "wx/panel.h"
#endif // WX_PRECOMP
#include "wx/treebook.h"
#include "bookctrlbasetest.h"
class TreebookTestCase : public BookCtrlBaseTestCase, public CppUnit::TestCase
{
public:
TreebookTestCase() { }
virtual void setUp();
virtual void tearDown();
private:
virtual wxBookCtrlBase *GetBase() const { return m_treebook; }
virtual wxEventType GetChangedEvent() const
{ return wxEVT_COMMAND_TREEBOOK_PAGE_CHANGED; }
virtual wxEventType GetChangingEvent() const
{ return wxEVT_COMMAND_TREEBOOK_PAGE_CHANGING; }
CPPUNIT_TEST_SUITE( TreebookTestCase );
wxBOOK_CTRL_BASE_TESTS();
CPPUNIT_TEST( Image );
CPPUNIT_TEST( SubPages );
CPPUNIT_TEST( Expand );
CPPUNIT_TEST( Delete );
CPPUNIT_TEST_SUITE_END();
void SubPages();
void Expand();
void Delete();
wxTreebook *m_treebook;
DECLARE_NO_COPY_CLASS(TreebookTestCase)
};
// register in the unnamed registry so that these tests are run by default
CPPUNIT_TEST_SUITE_REGISTRATION( TreebookTestCase );
// also include in it's own registry so that these tests can be run alone
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( TreebookTestCase, "TreebookTestCase" );
void TreebookTestCase::setUp()
{
m_treebook = new wxTreebook(wxTheApp->GetTopWindow(), wxID_ANY);
AddPanels();
}
void TreebookTestCase::tearDown()
{
wxDELETE(m_treebook);
}
void TreebookTestCase::SubPages()
{
wxPanel* subpanel1 = new wxPanel(m_treebook);
wxPanel* subpanel2 = new wxPanel(m_treebook);
wxPanel* subpanel3 = new wxPanel(m_treebook);
m_treebook->AddSubPage(subpanel1, "Subpanel 1", false, 0);
CPPUNIT_ASSERT_EQUAL(2, m_treebook->GetPageParent(3));
m_treebook->InsertSubPage(1, subpanel2, "Subpanel 2", false, 1);
CPPUNIT_ASSERT_EQUAL(1, m_treebook->GetPageParent(2));
m_treebook->AddSubPage(subpanel3, "Subpanel 3", false, 2);
CPPUNIT_ASSERT_EQUAL(3, m_treebook->GetPageParent(5));
}
void TreebookTestCase::Expand()
{
wxPanel* subpanel1 = new wxPanel(m_treebook);
wxPanel* subpanel2 = new wxPanel(m_treebook);
wxPanel* subpanel3 = new wxPanel(m_treebook);
m_treebook->AddSubPage(subpanel1, "Subpanel 1", false, 0);
m_treebook->InsertSubPage(1, subpanel2, "Subpanel 2", false, 1);
m_treebook->AddSubPage(subpanel3, "Subpanel 3", false, 2);
CPPUNIT_ASSERT(!m_treebook->IsNodeExpanded(1));
CPPUNIT_ASSERT(!m_treebook->IsNodeExpanded(3));
m_treebook->CollapseNode(1);
CPPUNIT_ASSERT(!m_treebook->IsNodeExpanded(1));
m_treebook->ExpandNode(3, false);
CPPUNIT_ASSERT(!m_treebook->IsNodeExpanded(3));
m_treebook->ExpandNode(1);
CPPUNIT_ASSERT(m_treebook->IsNodeExpanded(1));
}
void TreebookTestCase::Delete()
{
wxPanel* subpanel1 = new wxPanel(m_treebook);
wxPanel* subpanel2 = new wxPanel(m_treebook);
wxPanel* subpanel3 = new wxPanel(m_treebook);
m_treebook->AddSubPage(subpanel1, "Subpanel 1", false, 0);
m_treebook->InsertSubPage(1, subpanel2, "Subpanel 2", false, 1);
m_treebook->AddSubPage(subpanel3, "Subpanel 3", false, 2);
CPPUNIT_ASSERT_EQUAL(6, m_treebook->GetPageCount());
m_treebook->DeletePage(3);
CPPUNIT_ASSERT_EQUAL(3, m_treebook->GetPageCount());
m_treebook->DeletePage(1);
CPPUNIT_ASSERT_EQUAL(1, m_treebook->GetPageCount());
m_treebook->DeletePage(0);
CPPUNIT_ASSERT_EQUAL(0, m_treebook->GetPageCount());
}
#endif // wxUSE_TREEBOOK