/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* ***** BEGIN LICENSE BLOCK ***** * Version: NPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Netscape Public License * Version 1.1 (the "License"); you may not use this file except in * compliance with the License. You may obtain a copy of the License at * http://www.mozilla.org/NPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * The Original Code is mozilla.org code. * * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. * * Contributor(s): * David Epstein * * Alternatively, the contents of this file may be used under the terms of * either the GNU General Public License Version 2 or later (the "GPL"), or * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), * in which case the provisions of the GPL or the LGPL are applicable instead * of those above. If you wish to allow use of your version of this file only * under the terms of either the GPL or the LGPL, and not to allow others to * use your version of this file under the terms of the NPL, indicate your * decision by deleting the provisions above and replace them with the notice * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the NPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ // // test cases for nsIWebBrowser and nsIWebBrowserSetup // #include "Stdafx.h" #include "TestEmbed.h" #include "BrowserImpl.h" #include "BrowserFrm.h" #include "Tests.h" #include "domwindow.h" #include "QaUtils.h" #include #include "nsIWebBrow.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif // constructor for CNsIWebBrowser CNsIWebBrowser::CNsIWebBrowser(nsIWebBrowser *mWebBrowser, CBrowserImpl *mpBrowserImpl) { qaWebBrowser = mWebBrowser; qaBrowserImpl = mpBrowserImpl; } // destructor for CNsIWebBrowser CNsIWebBrowser::~CNsIWebBrowser() { } void CNsIWebBrowser::WBAddListener() { // AddWebBrowserListener nsWeakPtr weakling( dont_AddRef(NS_GetWeakReference(NS_STATIC_CAST(nsIContextMenuListener*, qaBrowserImpl)))); rv = qaWebBrowser->AddWebBrowserListener(weakling, NS_GET_IID(nsIContextMenuListener)); RvTestResult(rv, "AddWebBrowserListener(). nsIContextMenuListener test", 1); RvTestResultDlg(rv, "AddWebBrowserListener(). nsIContextMenuListener test", true); } void CNsIWebBrowser::WBRemoveListener() { // RemoveWebBrowserListener nsWeakPtr weakling( dont_AddRef(NS_GetWeakReference(NS_STATIC_CAST(nsIContextMenuListener*, qaBrowserImpl)))); rv = qaWebBrowser->RemoveWebBrowserListener(weakling, NS_GET_IID(nsIContextMenuListener)); RvTestResult(rv, "RemoveWebBrowserListener(). nsIContextMenuListener test", 1); RvTestResultDlg(rv, "RemoveWebBrowserListener(). nsIContextMenuListener test"); } void CNsIWebBrowser::WBGetContainerWindow() { // GetContainerWindow nsCOMPtr qaWebBrowserChrome; rv = qaWebBrowser->GetContainerWindow(getter_AddRefs(qaWebBrowserChrome)); RvTestResult(rv, "nsIWebBrowser::GetContainerWindow() test", 1); RvTestResultDlg(rv, "nsIWebBrowser::GetContainerWindow() test"); if (!qaWebBrowserChrome) QAOutput("Didn't get web browser chrome object.", 2); else { rv = qaWebBrowserChrome->ShowAsModal(); RvTestResult(rv, "nsIWebBrowserChrome::ShowAsModal() test", 1); RvTestResultDlg(rv, "nsIWebBrowserChrome::ShowAsModal() test"); } } void CNsIWebBrowser::WBSetContainerWindow() { // SetContainerWindow rv = qaWebBrowser->SetContainerWindow(qaWebBrowserChrome); RvTestResult(rv, "nsIWebBrowser::SetContainerWindow() test", 1); RvTestResultDlg(rv, "nsIWebBrowser::SetContainerWindow() test"); } void CNsIWebBrowser::WBGetURIContentListener() { // GetParentURIContentListener rv = qaWebBrowser->GetParentURIContentListener(getter_AddRefs(qaURIContentListener)); RvTestResult(rv, "nsIWebBrowser::GetParentURIContentListener() test", 1); RvTestResultDlg(rv, "nsIWebBrowser::GetParentURIContentListener() test"); if (!qaURIContentListener) QAOutput("Didn't get uri content listener object.", 2); else { nsCOMPtr qaSupports; rv = qaURIContentListener->GetLoadCookie(getter_AddRefs(qaSupports)); RvTestResult(rv, "nsIURIContentListener::GetLoadCookie() test", 1); RvTestResultDlg(rv, "nsIURIContentListener::GetLoadCookie() test"); } } void CNsIWebBrowser::WBSetURIContentListener() { // SetParentURIContentListener rv = qaWebBrowser->SetParentURIContentListener(qaURIContentListener); RvTestResult(rv, "nsIWebBrowser::SetParentURIContentListener() test", 1); RvTestResultDlg(rv, "nsIWebBrowser::SetParentURIContentListener() test"); if (!qaURIContentListener) QAOutput("Didn't get uri content listener object.", 2); } void CNsIWebBrowser::WBGetDOMWindow() { // GetContentDOMWindow nsCOMPtr qaDOMWindow; rv = qaWebBrowser->GetContentDOMWindow(getter_AddRefs(qaDOMWindow)); RvTestResult(rv, "nsIWebBrowser::GetContentDOMWindow() test", 1); RvTestResultDlg(rv, "nsIWebBrowser::GetContentDOMWindow() test"); if (!qaDOMWindow) QAOutput("Didn't get dom window object.", 2); else { rv = qaDOMWindow->ScrollTo(50,50); RvTestResult(rv, "nsIDOMWindow::ScrollTo() test", 1); RvTestResultDlg(rv, "nsIDOMWindow::ScrollTo() test"); } } void CNsIWebBrowser::OnStartTests(UINT nMenuID) { switch(nMenuID) { case ID_INTERFACES_NSIWEBBROWSER_RUNALLTESTS : RunAllTests(); break ; case ID_INTERFACES_NSIWEBBROWSER_ADDWEBBROWSERLISTENER : WBAddListener(); break ; case ID_INTERFACES_NSIWEBBROWSER_REMOVEWEBBROWSERLISTENER : WBRemoveListener(); break ; case ID_INTERFACES_NSIWEBBROWSER_GETCONTAINERWINDOW : WBGetContainerWindow(); break ; case ID_INTERFACES_NSIWEBBROWSER_SETCONTAINERWINDOW : WBSetContainerWindow(); break ; case ID_INTERFACES_NSIWEBBROWSER_GETPARENTURICONTENTLISTENER : WBGetURIContentListener(); break ; case ID_INTERFACES_NSIWEBBROWSER_SETPARENTURICONTENTLISTENER : WBSetURIContentListener(); break ; case ID_INTERFACES_NSIWEBBROWSER_GETCONTENTDOMWINDOW : WBGetDOMWindow(); break ; case ID_INTERFACES_NSIWEBBROWSER_NSIWBSETUPSETPROPERTY : WBSSetupProperty(); break ; } } void CNsIWebBrowser::RunAllTests() { WBAddListener(); WBRemoveListener(); WBGetContainerWindow(); WBSetContainerWindow(); WBGetURIContentListener(); WBSetURIContentListener(); WBGetDOMWindow(); WBSSetupProperty(); } void CNsIWebBrowser::WBSSetupProperty() { // nsIWebBrowserSetup methods nsCOMPtr qaWBSetup(do_QueryInterface(qaWebBrowser, &rv)); RvTestResult(rv, "nsIWebBrowserSetup object test", 1); RvTestResultDlg(rv, "nsIWebBrowserSetup object test"); if (!qaWBSetup) { QAOutput("Didn't get WebBrowser Setup object.", 2); return; } rv = qaWBSetup->SetProperty(nsIWebBrowserSetup::SETUP_ALLOW_PLUGINS, PR_TRUE); RvTestResult(rv, "nsIWebBrowserSetup:SetProperty(SETUP_ALLOW_PLUGINS, PR_TRUE)", 1); RvTestResultDlg(rv, "nsIWebBrowserSetup:SetProperty(SETUP_ALLOW_PLUGINS, PR_TRUE)"); rv = qaWBSetup->SetProperty(nsIWebBrowserSetup::SETUP_ALLOW_PLUGINS, PR_FALSE); RvTestResult(rv, "nsIWebBrowserSetup:SetProperty(SETUP_ALLOW_PLUGINS, PR_FALSE)", 1); RvTestResultDlg(rv, "nsIWebBrowserSetup:SetProperty(SETUP_ALLOW_PLUGINS, PR_FALSE)"); rv = qaWBSetup->SetProperty(nsIWebBrowserSetup::SETUP_ALLOW_JAVASCRIPT, PR_TRUE); RvTestResult(rv, "nsIWebBrowserSetup:SetProperty(SETUP_ALLOW_JAVASCRIPT, PR_TRUE)", 1); RvTestResultDlg(rv, "nsIWebBrowserSetup:SetProperty(SETUP_ALLOW_JAVASCRIPT, PR_TRUE)"); rv = qaWBSetup->SetProperty(nsIWebBrowserSetup::SETUP_ALLOW_JAVASCRIPT, PR_FALSE); RvTestResult(rv, "nsIWebBrowserSetup:SetProperty(SETUP_ALLOW_JAVASCRIPT, PR_FALSE)", 1); RvTestResultDlg(rv, "nsIWebBrowserSetup:SetProperty(SETUP_ALLOW_JAVASCRIPT, PR_FALSE)"); rv = qaWBSetup->SetProperty(nsIWebBrowserSetup::SETUP_ALLOW_META_REDIRECTS, PR_TRUE); RvTestResult(rv, "nsIWebBrowserSetup:SetProperty(SETUP_ALLOW_META_REDIRECTS, PR_TRUE)", 1); RvTestResultDlg(rv, "nsIWebBrowserSetup:SetProperty(SETUP_ALLOW_META_REDIRECTS, PR_TRUE)"); rv = qaWBSetup->SetProperty(nsIWebBrowserSetup::SETUP_ALLOW_META_REDIRECTS, PR_FALSE); RvTestResult(rv, "nsIWebBrowserSetup:SetProperty(SETUP_ALLOW_META_REDIRECTS, PR_FALSE)", 1); RvTestResultDlg(rv, "nsIWebBrowserSetup:SetProperty(SETUP_ALLOW_META_REDIRECTS, PR_FALSE)"); rv = qaWBSetup->SetProperty(nsIWebBrowserSetup::SETUP_ALLOW_SUBFRAMES, PR_TRUE); RvTestResult(rv, "nsIWebBrowserSetup:SetProperty(SETUP_ALLOW_SUBFRAMES, PR_TRUE)", 1); RvTestResultDlg(rv, "nsIWebBrowserSetup:SetProperty(SETUP_ALLOW_SUBFRAMES, PR_TRUE)"); rv = qaWBSetup->SetProperty(nsIWebBrowserSetup::SETUP_ALLOW_SUBFRAMES, PR_FALSE); RvTestResult(rv, "nsIWebBrowserSetup:SetProperty(SETUP_ALLOW_SUBFRAMES, PR_FALSE)", 1); RvTestResultDlg(rv, "nsIWebBrowserSetup:SetProperty(SETUP_ALLOW_SUBFRAMES, PR_FALSE)"); rv = qaWBSetup->SetProperty(nsIWebBrowserSetup::SETUP_ALLOW_IMAGES, PR_TRUE); RvTestResult(rv, "nsIWebBrowserSetup:SetProperty(SETUP_ALLOW_IMAGES, PR_TRUE)", 1); RvTestResultDlg(rv, "nsIWebBrowserSetup:SetProperty(SETUP_ALLOW_IMAGES, PR_TRUE)"); rv = qaWBSetup->SetProperty(nsIWebBrowserSetup::SETUP_ALLOW_IMAGES, PR_FALSE); RvTestResult(rv, "nsIWebBrowserSetup:SetProperty(SETUP_ALLOW_IMAGES, PR_FALSE)", 1); RvTestResultDlg(rv, "nsIWebBrowserSetup:SetProperty(SETUP_ALLOW_IMAGES, PR_FALSE)"); rv = qaWBSetup->SetProperty(nsIWebBrowserSetup::SETUP_FOCUS_DOC_BEFORE_CONTENT, PR_TRUE); RvTestResult(rv, "nsIWebBrowserSetup:SetProperty(SETUP_FOCUS_DOC_BEFORE_CONTENT, PR_TRUE)", 1); RvTestResultDlg(rv, "nsIWebBrowserSetup:SetProperty(SETUP_FOCUS_DOC_BEFORE_CONTENT, PR_TRUE)"); rv = qaWBSetup->SetProperty(nsIWebBrowserSetup::SETUP_FOCUS_DOC_BEFORE_CONTENT, PR_FALSE); RvTestResult(rv, "nsIWebBrowserSetup:SetProperty(SETUP_FOCUS_DOC_BEFORE_CONTENT, PR_FALSE)", 1); RvTestResultDlg(rv, "nsIWebBrowserSetup:SetProperty(SETUP_FOCUS_DOC_BEFORE_CONTENT, PR_FALSE)"); rv = qaWBSetup->SetProperty(nsIWebBrowserSetup::SETUP_USE_GLOBAL_HISTORY, PR_TRUE); RvTestResult(rv, "nsIWebBrowserSetup:SetProperty(SETUP_USE_GLOBAL_HISTORY, PR_TRUE)", 1); RvTestResultDlg(rv, "nsIWebBrowserSetup:SetProperty(SETUP_USE_GLOBAL_HISTORY, PR_TRUE)"); rv = qaWBSetup->SetProperty(nsIWebBrowserSetup::SETUP_USE_GLOBAL_HISTORY, PR_FALSE); RvTestResult(rv, "nsIWebBrowserSetup:SetProperty(SETUP_USE_GLOBAL_HISTORY, PR_FALSE)", 1); RvTestResultDlg(rv, "nsIWebBrowserSetup:SetProperty(SETUP_USE_GLOBAL_HISTORY, PR_FALSE)"); rv = qaWBSetup->SetProperty(nsIWebBrowserSetup::SETUP_IS_CHROME_WRAPPER, PR_TRUE); RvTestResult(rv, "nsIWebBrowserSetup:SetProperty(SETUP_IS_CHROME_WRAPPER, PR_TRUE)", 1); RvTestResultDlg(rv, "nsIWebBrowserSetup:SetProperty(SETUP_IS_CHROME_WRAPPER, PR_TRUE)"); rv = qaWBSetup->SetProperty(nsIWebBrowserSetup::SETUP_IS_CHROME_WRAPPER, PR_FALSE); RvTestResult(rv, "nsIWebBrowserSetup:SetProperty(SETUP_IS_CHROME_WRAPPER, PR_FALSE)", 1); RvTestResultDlg(rv, "nsIWebBrowserSetup:SetProperty(SETUP_IS_CHROME_WRAPPER, PR_FALSE)"); }