git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70882
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
void LoadUrl(int times = 1);
wxWebView* m_browser;
void LoadUrl(int times = 1);
wxWebView* m_browser;
+ EventCounter* m_loaded;
DECLARE_NO_COPY_CLASS(WebTestCase)
};
DECLARE_NO_COPY_CLASS(WebTestCase)
};
+//Convenience macro
+#define ENSURE_LOADED WX_ASSERT_EVENT_OCCURS((*m_loaded), 1)
+
// register in the unnamed registry so that these tests are run by default
CPPUNIT_TEST_SUITE_REGISTRATION( WebTestCase );
// register in the unnamed registry so that these tests are run by default
CPPUNIT_TEST_SUITE_REGISTRATION( WebTestCase );
void WebTestCase::setUp()
{
m_browser = wxWebView::New(wxTheApp->GetTopWindow(), wxID_ANY);
void WebTestCase::setUp()
{
m_browser = wxWebView::New(wxTheApp->GetTopWindow(), wxID_ANY);
- //We yield to let the initial page load
- wxYield();
+
+ m_loaded = new EventCounter(m_browser, wxEVT_COMMAND_WEB_VIEW_LOADED);
+ ENSURE_LOADED;
}
void WebTestCase::tearDown()
{
}
void WebTestCase::tearDown()
{
m_browser->LoadURL("about:blank");
else
m_browser->LoadURL("about:");
m_browser->LoadURL("about:blank");
else
m_browser->LoadURL("about:");
//Test title after loading raw html
m_browser->SetPage("<html><title>Title</title><body>Text</body></html>", "");
//Test title after loading raw html
m_browser->SetPage("<html><title>Title</title><body>Text</body></html>", "");
CPPUNIT_ASSERT_EQUAL("Title", m_browser->GetCurrentTitle());
//Test title after loading a url, we yield to let events process
CPPUNIT_ASSERT_EQUAL("Title", m_browser->GetCurrentTitle());
//Test title after loading a url, we yield to let events process
void WebTestCase::Url()
{
void WebTestCase::Url()
{
- // FIXME: This test fails on MSW buildbot slaves although works fine on
- // development machine.
- if ( wxGetUserId().Lower().Matches("buildslave*") )
- return;
-
CPPUNIT_ASSERT_EQUAL("about:blank", m_browser->GetCurrentURL());
//After first loading about:blank the next in the sequence is about:
CPPUNIT_ASSERT_EQUAL("about:blank", m_browser->GetCurrentURL());
//After first loading about:blank the next in the sequence is about:
void WebTestCase::History()
{
void WebTestCase::History()
{
- // FIXME: This test fails on MSW buildbot slaves although works fine on
- // development machine.
- if ( wxGetUserId().Lower().Matches("buildslave*") )
- return;
-
LoadUrl(3);
CPPUNIT_ASSERT(m_browser->CanGoBack());
CPPUNIT_ASSERT(!m_browser->CanGoForward());
m_browser->GoBack();
LoadUrl(3);
CPPUNIT_ASSERT(m_browser->CanGoBack());
CPPUNIT_ASSERT(!m_browser->CanGoForward());
m_browser->GoBack();
CPPUNIT_ASSERT(m_browser->CanGoBack());
CPPUNIT_ASSERT(m_browser->CanGoForward());
m_browser->GoBack();
CPPUNIT_ASSERT(m_browser->CanGoBack());
CPPUNIT_ASSERT(m_browser->CanGoForward());
m_browser->GoBack();
//We should now be at the start of the history
CPPUNIT_ASSERT(!m_browser->CanGoBack());
//We should now be at the start of the history
CPPUNIT_ASSERT(!m_browser->CanGoBack());
void WebTestCase::HistoryClear()
{
void WebTestCase::HistoryClear()
{
- // FIXME: This test fails on MSW buildbot slaves although works fine on
- // development machine.
- if ( wxGetUserId().Lower().Matches("buildslave*") )
- return;
-
LoadUrl(2);
//Now we are in the 'middle' of the history
m_browser->GoBack();
LoadUrl(2);
//Now we are in the 'middle' of the history
m_browser->GoBack();
CPPUNIT_ASSERT(m_browser->CanGoForward());
CPPUNIT_ASSERT(m_browser->CanGoBack());
CPPUNIT_ASSERT(m_browser->CanGoForward());
CPPUNIT_ASSERT(m_browser->CanGoBack());
void WebTestCase::HistoryList()
{
void WebTestCase::HistoryList()
{
- // FIXME: This test fails on MSW buildbot slaves although works fine on
- // development machine.
- if ( wxGetUserId().Lower().Matches("buildslave*") )
- return;
-
LoadUrl(2);
m_browser->GoBack();
LoadUrl(2);
m_browser->GoBack();
CPPUNIT_ASSERT_EQUAL(1, m_browser->GetBackwardHistory().size());
CPPUNIT_ASSERT_EQUAL(1, m_browser->GetForwardHistory().size());
m_browser->LoadHistoryItem(m_browser->GetForwardHistory()[0]);
CPPUNIT_ASSERT_EQUAL(1, m_browser->GetBackwardHistory().size());
CPPUNIT_ASSERT_EQUAL(1, m_browser->GetForwardHistory().size());
m_browser->LoadHistoryItem(m_browser->GetForwardHistory()[0]);
CPPUNIT_ASSERT(!m_browser->CanGoForward());
CPPUNIT_ASSERT_EQUAL(2, m_browser->GetBackwardHistory().size());
CPPUNIT_ASSERT(!m_browser->CanGoForward());
CPPUNIT_ASSERT_EQUAL(2, m_browser->GetBackwardHistory().size());
void WebTestCase::Selection()
{
m_browser->SetPage("<html><body>Some <strong>strong</strong> text</body></html>", "");
void WebTestCase::Selection()
{
m_browser->SetPage("<html><body>Some <strong>strong</strong> text</body></html>", "");
CPPUNIT_ASSERT(!m_browser->HasSelection());
m_browser->SelectAll();
CPPUNIT_ASSERT(!m_browser->HasSelection());
m_browser->SelectAll();
CPPUNIT_ASSERT(m_browser->HasSelection());
CPPUNIT_ASSERT_EQUAL("Some strong text", m_browser->GetSelectedText());
//We lower case the result as ie returns tags in uppercase
CPPUNIT_ASSERT(m_browser->HasSelection());
CPPUNIT_ASSERT_EQUAL("Some strong text", m_browser->GetSelectedText());
//We lower case the result as ie returns tags in uppercase
- CPPUNIT_ASSERT_EQUAL("some <strong>strong</strong> text",
+ CPPUNIT_ASSERT_EQUAL("some <strong>strong</strong> text",
m_browser->GetSelectedSource().Lower());
m_browser->ClearSelection();
m_browser->GetSelectedSource().Lower());
m_browser->ClearSelection();
- CPPUNIT_ASSERT(!m_browser->HasSelection());
+ CPPUNIT_ASSERT(!m_browser->HasSelection());
}
void WebTestCase::Zoom()
{
}
void WebTestCase::Zoom()
{
- // FIXME: This test fails on MSW buildbot slaves although works fine on
- // development machine.
- if ( wxGetUserId().Lower().Matches("buildslave*") )
- return;
-
if(m_browser->CanSetZoomType(wxWEB_VIEW_ZOOM_TYPE_LAYOUT))
{
m_browser->SetZoomType(wxWEB_VIEW_ZOOM_TYPE_LAYOUT);
if(m_browser->CanSetZoomType(wxWEB_VIEW_ZOOM_TYPE_LAYOUT))
{
m_browser->SetZoomType(wxWEB_VIEW_ZOOM_TYPE_LAYOUT);
void WebTestCase::SetPage()
{
m_browser->SetPage("<html><body>text</body></html>", "");
void WebTestCase::SetPage()
{
m_browser->SetPage("<html><body>text</body></html>", "");
CPPUNIT_ASSERT_EQUAL("text", m_browser->GetPageText());
m_browser->SetPage("<html><body>other text</body></html>", "");
CPPUNIT_ASSERT_EQUAL("text", m_browser->GetPageText());
m_browser->SetPage("<html><body>other text</body></html>", "");
CPPUNIT_ASSERT_EQUAL("other text", m_browser->GetPageText());
}
CPPUNIT_ASSERT_EQUAL("other text", m_browser->GetPageText());
}
#define WX_TESTPREC_INCLUDED 1
#include "wx/wxprec.h"
#define WX_TESTPREC_INCLUDED 1
#include "wx/wxprec.h"
+#include "wx/stopwatch.h"
+#include "wx/evtloop.h"
#include "wx/cppunit.h"
// Custom test macro that is only defined when wxUIActionSimulator is available
#include "wx/cppunit.h"
// Custom test macro that is only defined when wxUIActionSimulator is available
#define WX_ASSERT_FAILS_WITH_ASSERT(cond)
#endif
#define WX_ASSERT_FAILS_WITH_ASSERT(cond)
#endif
+#define WX_ASSERT_EVENT_OCCURS(eventcounter, count) \
+{\
+ wxStopWatch sw; \
+ wxEventLoopBase* loop = wxEventLoopBase::GetActive(); \
+ while(eventcounter.GetCount() < count) \
+ { \
+ if(sw.Time() < 100) \
+ loop->Dispatch(); \
+ else \
+ { \
+ CPPUNIT_FAIL(wxString::Format("timeout reached with %d " \
+ "events received, %d expected", \
+ eventcounter.GetCount(), count).ToStdString()); \
+ break; \
+ } \
+ } \
+ eventcounter.Clear(); \
+}
+
// these functions can be used to hook into wxApp event processing and are
// currently used by the events propagation test
class WXDLLIMPEXP_FWD_BASE wxEvent;
// these functions can be used to hook into wxApp event processing and are
// currently used by the events propagation test
class WXDLLIMPEXP_FWD_BASE wxEvent;