com.sun.javafx.webkit.drt.UIClientImpl Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2011, 2022, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.sun.javafx.webkit.drt;
import com.sun.webkit.LoadListenerClient;
import com.sun.webkit.UIClient;
import com.sun.webkit.WebPage;
import com.sun.webkit.graphics.WCImage;
import com.sun.webkit.graphics.WCRectangle;
import java.io.File;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
/**
* {@link UIClient} implementation for DRT tests.
*/
final class UIClientImpl implements UIClient {
private WebPage webPage;
private final List clients = new ArrayList<>();
private WCRectangle bounds = new WCRectangle(0, 0, 800, 600);
UIClientImpl() {
}
void setWebPage(WebPage webPage) {
this.webPage = webPage;
}
/**
* {@inheritDoc}
*/
@Override
public WebPage createPage(boolean menu, boolean status, boolean toolbar,
boolean resizable)
{
UIClientImpl client = new UIClientImpl();
final WebPage page = new WebPage(null, client, null, null, new DumpRenderTree.ThemeClientImplStub(), false);
client.setWebPage(page);
page.setBounds(0, 0, 800, 600);
// webPage.setUsePageCache(true);
page.addLoadListenerClient(new LoadListenerClient() {
@Override
public void dispatchLoadEvent(long frame, int state, String url, String contentType, double progress, int errorCode) {
if (state == DOCUMENT_AVAILABLE) {
DumpRenderTree.drt.dumpUnloadListeners(page, frame);
}
}
@Override
public void dispatchResourceLoadEvent(long frame, int state, String url, String contentType, double progress, int errorCode) {
}
});
page.resetToConsistentStateBeforeTesting();
// This call is needed to add the main frame to WebPage.frames list.
// TODO: investigate why it's not added automatically (via WebPage.fwkFrameCreated) and fix.
page.getMainFrame();
clients.add(client);
return client.webPage;
}
/**
* {@inheritDoc}
*/
@Override
public void closePage() {
Iterator it = clients.iterator();
while (it.hasNext()) {
it.next().closePage();
it.remove();
}
if (webPage.getMainFrame() != 0) {
webPage.dispose();
}
}
/**
* {@inheritDoc}
*/
@Override
public void showView() {
// look, I'm showing!
}
/**
* {@inheritDoc}
*/
@Override
public WCRectangle getViewBounds() {
return bounds;
}
/**
* {@inheritDoc}
*/
@Override
public void setViewBounds(WCRectangle bounds) {
this.bounds = bounds;
}
/**
* {@inheritDoc}
*/
@Override
public void setStatusbarText(String text) {
}
/**
* {@inheritDoc}
*/
@Override
public void alert(String text) {
if (!DumpRenderTree.drt.complete()) {
DumpRenderTree.out.printf("ALERT: %s\n", text);
}
}
/**
* {@inheritDoc}
*/
@Override
public boolean confirm(String text) {
if (!DumpRenderTree.drt.complete()) {
DumpRenderTree.out.printf("CONFIRM: %s\n", text);
}
return false;
}
/**
* {@inheritDoc}
*/
@Override
public String prompt(String text, String defaultValue) {
if (!DumpRenderTree.drt.complete()) {
DumpRenderTree.out.printf("PROMPT: %s, default text: %s\n", text, defaultValue);
}
return defaultValue;
}
@Override
public boolean canRunBeforeUnloadConfirmPanel() {
return true;
}
@Override
public boolean runBeforeUnloadConfirmPanel(String message) {
if (!DumpRenderTree.drt.complete()) {
DumpRenderTree.out.printf("CONFIRM NAVIGATION: %s\n", message);
}
return !DumpRenderTree.drt.shouldStayOnPageAfterHandlingBeforeUnload();
}
/**
* {@inheritDoc}
*/
@Override
public String[] chooseFile(String initialFileName, boolean multiple, String mimeFilters) {
if (DumpRenderTree.drt.complete()) {
return null;
}
DumpRenderTree.out.printf("OPEN FILE PANEL\n");
String[] openPanelFiles = DumpRenderTree.drt.openPanelFiles();
if (openPanelFiles == null || openPanelFiles.length == 0) {
return null;
}
final File testURLFile = new File(DumpRenderTree.drt.getTestURL());
String testURLFileParent = testURLFile.getParent();
if (multiple) {
String[] result = new String[openPanelFiles.length];
for (int i = 0; i < openPanelFiles.length; i++) {
result[i] = new File(testURLFileParent, openPanelFiles[i]).getAbsolutePath();
}
return result;
} else {
return new String[] { new File(testURLFileParent, openPanelFiles[0]).getAbsolutePath() };
}
}
/**
* {@inheritDoc}
*/
@Override
public void print() {
throw new UnsupportedOperationException("Not supported yet");
}
/**
* {@inheritDoc}
*/
@Override
public void startDrag(WCImage frame, int imageOffsetX, int imageOffsetY,
int eventPosX, int eventPosY, String[] mimeTypes, Object[] values, boolean isImageSource)
{
throw new UnsupportedOperationException("Not supported yet");
}
/**
* {@inheritDoc}
*/
@Override
public void confirmStartDrag() {
throw new UnsupportedOperationException("Not supported yet.");
}
/**
* {@inheritDoc}
*/
@Override
public boolean isDragConfirmed() {
return false;
}
}