diff options
author | Andrei Popescu <andreip@google.com> | 2010-02-09 16:59:58 +0000 |
---|---|---|
committer | John Spong <spong@google.com> | 2010-02-22 16:02:50 -0800 |
commit | 606e9392b3585a5ca401d65e1515963390b5e8ff (patch) | |
tree | 49cf6e578c2951fffb36ea7ffaf33c24c0167341 /tests/src/com/android/browser/TestWebViewClient.java | |
parent | e4c98469644d3fa2689cf6658b1999add13c7e0e (diff) | |
download | packages_apps_Browser-606e9392b3585a5ca401d65e1515963390b5e8ff.zip packages_apps_Browser-606e9392b3585a5ca401d65e1515963390b5e8ff.tar.gz packages_apps_Browser-606e9392b3585a5ca401d65e1515963390b5e8ff.tar.bz2 |
Implement test to iterate over list of URLs and store load times.
Also patch makefiles to correctly build tests and allow for hidden API calls in test.
Diffstat (limited to 'tests/src/com/android/browser/TestWebViewClient.java')
-rw-r--r-- | tests/src/com/android/browser/TestWebViewClient.java | 127 |
1 files changed, 127 insertions, 0 deletions
diff --git a/tests/src/com/android/browser/TestWebViewClient.java b/tests/src/com/android/browser/TestWebViewClient.java new file mode 100644 index 0000000..7159a7e --- /dev/null +++ b/tests/src/com/android/browser/TestWebViewClient.java @@ -0,0 +1,127 @@ +/* + * Copyright (C) 2010 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.android.browser; + +import android.graphics.Bitmap; +import android.net.http.SslError; +import android.os.Message; +import android.view.KeyEvent; +import android.webkit.HttpAuthHandler; +import android.webkit.SslErrorHandler; +import android.webkit.WebView; +import android.webkit.WebViewClient; + +/** + * + * + * WebViewClient for browser tests. + * Wraps around existing client so that specific methods can be overridden if needed. + * + */ +abstract class TestWebViewClient extends WebViewClient { + + private WebViewClient mWrappedClient; + + protected TestWebViewClient(WebViewClient wrappedClient) { + mWrappedClient = wrappedClient; + } + + /** {@inheritDoc} */ + @Override + public boolean shouldOverrideUrlLoading(WebView view, String url) { + return mWrappedClient.shouldOverrideUrlLoading(view, url); + } + + /** {@inheritDoc} */ + @Override + public void onPageStarted(WebView view, String url, Bitmap favicon) { + mWrappedClient.onPageStarted(view, url, favicon); + } + + /** {@inheritDoc} */ + @Override + public void onPageFinished(WebView view, String url) { + mWrappedClient.onPageFinished(view, url); + } + + /** {@inheritDoc} */ + @Override + public void onLoadResource(WebView view, String url) { + mWrappedClient.onLoadResource(view, url); + } + + /** {@inheritDoc} */ + @Deprecated + @Override + public void onTooManyRedirects(WebView view, Message cancelMsg, + Message continueMsg) { + mWrappedClient.onTooManyRedirects(view, cancelMsg, continueMsg); + } + + /** {@inheritDoc} */ + @Override + public void onReceivedError(WebView view, int errorCode, + String description, String failingUrl) { + mWrappedClient.onReceivedError(view, errorCode, description, failingUrl); + } + + /** {@inheritDoc} */ + @Override + public void onFormResubmission(WebView view, Message dontResend, + Message resend) { + mWrappedClient.onFormResubmission(view, dontResend, resend); + } + + /** {@inheritDoc} */ + @Override + public void doUpdateVisitedHistory(WebView view, String url, + boolean isReload) { + mWrappedClient.doUpdateVisitedHistory(view, url, isReload); + } + + /** {@inheritDoc} */ + @Override + public void onReceivedSslError(WebView view, SslErrorHandler handler, + SslError error) { + mWrappedClient.onReceivedSslError(view, handler, error); + } + + /** {@inheritDoc} */ + @Override + public void onReceivedHttpAuthRequest(WebView view, + HttpAuthHandler handler, String host, String realm) { + mWrappedClient.onReceivedHttpAuthRequest(view, handler, host, realm); + } + + /** {@inheritDoc} */ + @Override + public boolean shouldOverrideKeyEvent(WebView view, KeyEvent event) { + return mWrappedClient.shouldOverrideKeyEvent(view, event); + } + + /** {@inheritDoc} */ + @Override + public void onUnhandledKeyEvent(WebView view, KeyEvent event) { + mWrappedClient.onUnhandledKeyEvent(view, event); + } + + /** {@inheritDoc} */ + @Override + public void onScaleChanged(WebView view, float oldScale, float newScale) { + mWrappedClient.onScaleChanged(view, oldScale, newScale); + } +} |