Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(92)

Unified Diff: android_webview/javatests/src/org/chromium/android_webview/test/AwServiceWorkerClientTest.java

Issue 1544863002: [Android WebView] Implement initial settings and callback support for Service Workers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: android_webview/javatests/src/org/chromium/android_webview/test/AwServiceWorkerClientTest.java
diff --git a/android_webview/javatests/src/org/chromium/android_webview/test/AwServiceWorkerClientTest.java b/android_webview/javatests/src/org/chromium/android_webview/test/AwServiceWorkerClientTest.java
new file mode 100644
index 0000000000000000000000000000000000000000..90e7cb77b925edc8519c9d1eb2114d690a829731
--- /dev/null
+++ b/android_webview/javatests/src/org/chromium/android_webview/test/AwServiceWorkerClientTest.java
@@ -0,0 +1,107 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+package org.chromium.android_webview.test;
+
+import android.test.suitebuilder.annotation.SmallTest;
+
+import org.chromium.android_webview.AwContents;
+import org.chromium.android_webview.AwContentsClient.AwWebResourceRequest;
+import org.chromium.content.browser.test.util.TestCallbackHelperContainer;
+import org.chromium.net.test.util.TestWebServer;
+
+import java.util.List;
+import java.util.concurrent.Callable;
+
+/**
+ * Tests Service Worker Client related APIs.
+ */
+public class AwServiceWorkerClientTest extends AwTestBase {
+
+ private TestAwContentsClient mContentsClient;
+ private AwContents mAwContents;
+ private TestWebServer mWebServer;
+ private AwTestContainerView mTestContainerView;
+ private TestAwServiceWorkerClient mServiceWorkerClient;
+
+ private static final String INDEX_HTML =
+ "<!DOCTYPE html>\n"
+ + "<html>\n"
+ + " <body>\n"
+ + " <script>\n"
+ + " success = 0;\n"
+ + " navigator.serviceWorker.register('sw.js').then(function(reg) {;\n"
+ + " success = 1;\n"
+ + " }).catch(function(err) { \n"
+ + " console.error(err);\n"
+ + " });\n"
+ + " </script>\n"
+ + " </body>\n"
+ + "</html>\n";
+
+ private static final String SW_HTML = "fetch('fetch.html');";
+ private static final String FETCH_HTML = ";)";
+
+ @Override
+ public void setUp() throws Exception {
+ super.setUp();
+ mWebServer = TestWebServer.start();
+ mContentsClient = new TestAwContentsClient();
+ mTestContainerView = createAwTestContainerViewOnMainSync(mContentsClient);
+ mServiceWorkerClient = new TestAwServiceWorkerClient();
+ getAwBrowserContext().getServiceWorkerController()
+ .setServiceWorkerClient(mServiceWorkerClient);
+ mAwContents = mTestContainerView.getAwContents();
+ enableJavaScriptOnUiThread(mAwContents);
+ }
+
+ @Override
+ protected void tearDown() throws Exception {
+ if (mWebServer != null) mWebServer.shutdown();
+ super.tearDown();
+ }
+
+ @SmallTest
+ public void testInvokeInterceptCallback() throws Throwable {
+ final String fullIndexUrl = mWebServer.setResponse("/index.html", INDEX_HTML, null);
+ final String fullSwUrl = mWebServer.setResponse("/sw.js", SW_HTML, null);
+ final String fullFetchUrl = mWebServer.setResponse("/fetch.html", FETCH_HTML, null);
+
+ TestAwServiceWorkerClient.ShouldInterceptRequestHelper helper =
+ mServiceWorkerClient.getShouldInterceptRequestHelper();
+ int currentShouldInterceptRequestCount = helper.getCallCount();
+
+ TestCallbackHelperContainer.OnPageFinishedHelper onPageFinishedHelper =
+ mContentsClient.getOnPageFinishedHelper();
+ loadUrlSync(mAwContents, onPageFinishedHelper, fullIndexUrl);
+ assertEquals(fullIndexUrl, onPageFinishedHelper.getUrl());
+
+ // Check that the service worker has been registered successfully.
+ poll(new Callable<Boolean>() {
+ @Override
+ public Boolean call() throws Exception {
+ return getSuccessFromJS() == 1;
+ }
+ });
+
+ helper.waitForCallback(currentShouldInterceptRequestCount, 2);
+
+ // Check that the two service worker related callbacks were correctly intercepted.
+ List<AwWebResourceRequest> requests = helper.getAwWebResourceRequests();
+ assertEquals(2, requests.size());
+ assertEquals(fullSwUrl, requests.get(0).url);
+ assertEquals(fullFetchUrl, requests.get(1).url);
+ }
+
+ private int getSuccessFromJS() {
+ int result = -1;
+ try {
+ result = Integer.parseInt(executeJavaScriptAndWaitForResult(
+ mAwContents, mContentsClient, "success"));
+ } catch (Exception e) {
+ fail("Unable to get success");
+ }
+ return result;
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698