1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: tests/controls/webtest.cpp
3 // Purpose: wxWebView unit test
4 // Author: Steven Lamerton
7 // Copyright: (c) 2011 Steven Lamerton
8 ///////////////////////////////////////////////////////////////////////////////
12 #if wxUSE_WEBVIEW && (wxUSE_WEBVIEW_WEBKIT || wxUSE_WEBVIEW_IE)
22 #include "testableframe.h"
23 #include "wx/uiaction.h"
24 #include "wx/webview.h"
25 #include "asserthelper.h"
27 class WebTestCase
: public CppUnit::TestCase
36 CPPUNIT_TEST_SUITE( WebTestCase
);
37 CPPUNIT_TEST( Title
);
39 CPPUNIT_TEST( History
);
40 CPPUNIT_TEST( HistoryEnable
);
41 CPPUNIT_TEST( HistoryClear
);
42 CPPUNIT_TEST( HistoryList
);
43 CPPUNIT_TEST( Editable
);
44 CPPUNIT_TEST( Selection
);
46 CPPUNIT_TEST( RunScript
);
47 CPPUNIT_TEST( SetPage
);
48 CPPUNIT_TEST_SUITE_END();
61 void LoadUrl(int times
= 1);
64 EventCounter
* m_loaded
;
66 DECLARE_NO_COPY_CLASS(WebTestCase
)
70 #define ENSURE_LOADED WX_ASSERT_EVENT_OCCURS((*m_loaded), 1)
72 // register in the unnamed registry so that these tests are run by default
73 CPPUNIT_TEST_SUITE_REGISTRATION( WebTestCase
);
75 // also include in its own registry so that these tests can be run alone
76 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( WebTestCase
, "WebTestCase" );
78 void WebTestCase::setUp()
80 m_browser
= wxWebView::New(wxTheApp
->GetTopWindow(), wxID_ANY
);
82 m_loaded
= new EventCounter(m_browser
, wxEVT_WEBVIEW_LOADED
);
83 m_browser
->LoadURL("about:blank");
87 void WebTestCase::tearDown()
93 void WebTestCase::LoadUrl(int times
)
95 //We alternate between urls as otherwise webkit merges them in the history
96 //we use about and about blank to avoid the need for a network connection
97 for(int i
= 0; i
< times
; i
++)
100 m_browser
->LoadURL("about:blank");
102 m_browser
->LoadURL("about:");
107 void WebTestCase::Title()
109 CPPUNIT_ASSERT_EQUAL("", m_browser
->GetCurrentTitle());
111 //Test title after loading raw html
112 m_browser
->SetPage("<html><title>Title</title><body>Text</body></html>", "");
114 CPPUNIT_ASSERT_EQUAL("Title", m_browser
->GetCurrentTitle());
116 //Test title after loading a url, we yield to let events process
118 CPPUNIT_ASSERT_EQUAL("", m_browser
->GetCurrentTitle());
121 void WebTestCase::Url()
123 CPPUNIT_ASSERT_EQUAL("about:blank", m_browser
->GetCurrentURL());
125 //After first loading about:blank the next in the sequence is about:
127 CPPUNIT_ASSERT_EQUAL("about:", m_browser
->GetCurrentURL());
130 void WebTestCase::History()
134 CPPUNIT_ASSERT(m_browser
->CanGoBack());
135 CPPUNIT_ASSERT(!m_browser
->CanGoForward());
140 CPPUNIT_ASSERT(m_browser
->CanGoBack());
141 CPPUNIT_ASSERT(m_browser
->CanGoForward());
148 //We should now be at the start of the history
149 CPPUNIT_ASSERT(!m_browser
->CanGoBack());
150 CPPUNIT_ASSERT(m_browser
->CanGoForward());
153 void WebTestCase::HistoryEnable()
156 m_browser
->EnableHistory(false);
158 CPPUNIT_ASSERT(!m_browser
->CanGoForward());
159 CPPUNIT_ASSERT(!m_browser
->CanGoBack());
163 CPPUNIT_ASSERT(!m_browser
->CanGoForward());
164 CPPUNIT_ASSERT(!m_browser
->CanGoBack());
167 void WebTestCase::HistoryClear()
171 //Now we are in the 'middle' of the history
175 CPPUNIT_ASSERT(m_browser
->CanGoForward());
176 CPPUNIT_ASSERT(m_browser
->CanGoBack());
178 m_browser
->ClearHistory();
180 CPPUNIT_ASSERT(!m_browser
->CanGoForward());
181 CPPUNIT_ASSERT(!m_browser
->CanGoBack());
184 void WebTestCase::HistoryList()
190 CPPUNIT_ASSERT_EQUAL(1, m_browser
->GetBackwardHistory().size());
191 CPPUNIT_ASSERT_EQUAL(1, m_browser
->GetForwardHistory().size());
193 m_browser
->LoadHistoryItem(m_browser
->GetForwardHistory()[0]);
196 CPPUNIT_ASSERT(!m_browser
->CanGoForward());
197 CPPUNIT_ASSERT_EQUAL(2, m_browser
->GetBackwardHistory().size());
200 void WebTestCase::Editable()
202 CPPUNIT_ASSERT(!m_browser
->IsEditable());
204 m_browser
->SetEditable(true);
206 CPPUNIT_ASSERT(m_browser
->IsEditable());
208 m_browser
->SetEditable(false);
210 CPPUNIT_ASSERT(!m_browser
->IsEditable());
213 void WebTestCase::Selection()
215 m_browser
->SetPage("<html><body>Some <strong>strong</strong> text</body></html>", "");
217 CPPUNIT_ASSERT(!m_browser
->HasSelection());
219 m_browser
->SelectAll();
221 CPPUNIT_ASSERT(m_browser
->HasSelection());
222 CPPUNIT_ASSERT_EQUAL("Some strong text", m_browser
->GetSelectedText());
224 // The web engine doesn't necessarily represent the HTML in the same way as
225 // we used above, e.g. IE uses upper case for all the tags while WebKit
226 // under OS X inserts plenty of its own <span> tags, so don't test for
227 // equality and just check that the source contains things we'd expect it
229 const wxString selSource
= m_browser
->GetSelectedSource();
232 ("Unexpected selection source: \"%s\"", selSource
),
233 selSource
.Lower().Matches("*some*<strong*strong</strong>*text*")
236 m_browser
->ClearSelection();
237 CPPUNIT_ASSERT(!m_browser
->HasSelection());
240 void WebTestCase::Zoom()
242 if(m_browser
->CanSetZoomType(wxWEBVIEW_ZOOM_TYPE_LAYOUT
))
244 m_browser
->SetZoomType(wxWEBVIEW_ZOOM_TYPE_LAYOUT
);
245 CPPUNIT_ASSERT_EQUAL(wxWEBVIEW_ZOOM_TYPE_LAYOUT
, m_browser
->GetZoomType());
247 m_browser
->SetZoom(wxWEBVIEW_ZOOM_TINY
);
248 CPPUNIT_ASSERT_EQUAL(wxWEBVIEW_ZOOM_TINY
, m_browser
->GetZoom());
251 //Reset the zoom level
252 m_browser
->SetZoom(wxWEBVIEW_ZOOM_MEDIUM
);
254 if(m_browser
->CanSetZoomType(wxWEBVIEW_ZOOM_TYPE_TEXT
))
256 m_browser
->SetZoomType(wxWEBVIEW_ZOOM_TYPE_TEXT
);
257 CPPUNIT_ASSERT_EQUAL(wxWEBVIEW_ZOOM_TYPE_TEXT
, m_browser
->GetZoomType());
259 m_browser
->SetZoom(wxWEBVIEW_ZOOM_TINY
);
260 CPPUNIT_ASSERT_EQUAL(wxWEBVIEW_ZOOM_TINY
, m_browser
->GetZoom());
264 void WebTestCase::RunScript()
266 m_browser
->RunScript("document.write(\"Hello World!\");");
267 CPPUNIT_ASSERT_EQUAL("Hello World!", m_browser
->GetPageText());
270 void WebTestCase::SetPage()
272 m_browser
->SetPage("<html><body>text</body></html>", "");
274 CPPUNIT_ASSERT_EQUAL("text", m_browser
->GetPageText());
276 m_browser
->SetPage("<html><body>other text</body></html>", "");
278 CPPUNIT_ASSERT_EQUAL("other text", m_browser
->GetPageText());
281 #endif //wxUSE_WEBVIEW && (wxUSE_WEBVIEW_WEBKIT || wxUSE_WEBVIEW_IE)