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

Side by Side Diff: components/cronet/android/test/src/org/chromium/net/NativeTestServer.java

Issue 1536433002: [Cronet] Get Cronet performance test running again (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ignore netty proguard errors Created 4 years, 10 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 package org.chromium.net; 5 package org.chromium.net;
6 6
7 import android.content.Context; 7 import android.content.Context;
8 import android.os.ConditionVariable;
9 8
10 import org.chromium.base.annotations.CalledByNative;
11 import org.chromium.base.annotations.JNINamespace; 9 import org.chromium.base.annotations.JNINamespace;
12 10
13 /** 11 /**
14 * Wrapper class to start an in-process native test server, and get URLs 12 * Wrapper class to start an in-process native test server, and get URLs
15 * needed to talk to it. 13 * needed to talk to it.
16 */ 14 */
17 @JNINamespace("cronet") 15 @JNINamespace("cronet")
18 public final class NativeTestServer { 16 public final class NativeTestServer {
19 private static final ConditionVariable sHostResolverBlock = new ConditionVar iable();
20
21 // This variable contains the response body of a request to getSuccessURL(). 17 // This variable contains the response body of a request to getSuccessURL().
22 public static final String SUCCESS_BODY = "this is a text file\n"; 18 public static final String SUCCESS_BODY = "this is a text file\n";
23 19
24 public static boolean startNativeTestServer(Context context) { 20 public static boolean startNativeTestServer(Context context) {
25 TestFilesInstaller.installIfNeeded(context); 21 TestFilesInstaller.installIfNeeded(context);
26 return nativeStartNativeTestServer( 22 return nativeStartNativeTestServer(
27 TestFilesInstaller.getInstalledPath(context)); 23 TestFilesInstaller.getInstalledPath(context));
28 } 24 }
29 25
30 public static void shutdownNativeTestServer() { 26 public static void shutdownNativeTestServer() {
31 nativeShutdownNativeTestServer(); 27 nativeShutdownNativeTestServer();
32 } 28 }
33 29
34 /**
35 * Registers customized DNS mapping for {@link NativeTestServer}.
36 * @param contextAdapter native context adapter object that this
37 * mapping should apply to.
38 * @param isLegacyAPI {@code true} if this context adapter is a part of the
39 * old API.
40 */
41 public static void registerHostResolverProc(long contextAdapter, boolean isL egacyAPI) {
42 nativeRegisterHostResolverProc(contextAdapter, isLegacyAPI);
43 sHostResolverBlock.block();
44 sHostResolverBlock.close();
45 }
46
47 public static String getEchoBodyURL() { 30 public static String getEchoBodyURL() {
48 return nativeGetEchoBodyURL(); 31 return nativeGetEchoBodyURL();
49 } 32 }
50 33
51 public static String getEchoHeaderURL(String header) { 34 public static String getEchoHeaderURL(String header) {
52 return nativeGetEchoHeaderURL(header); 35 return nativeGetEchoHeaderURL(header);
53 } 36 }
54 37
55 public static String getEchoAllHeadersURL() { 38 public static String getEchoAllHeadersURL() {
56 return nativeGetEchoAllHeadersURL(); 39 return nativeGetEchoAllHeadersURL();
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 } 75 }
93 76
94 public static String getHostPort() { 77 public static String getHostPort() {
95 return nativeGetHostPort(); 78 return nativeGetHostPort();
96 } 79 }
97 80
98 public static boolean isDataReductionProxySupported() { 81 public static boolean isDataReductionProxySupported() {
99 return nativeIsDataReductionProxySupported(); 82 return nativeIsDataReductionProxySupported();
100 } 83 }
101 84
102 @CalledByNative
103 private static void onHostResolverProcRegistered() {
104 sHostResolverBlock.open();
105 }
106
107 private static native boolean nativeStartNativeTestServer(String filePath); 85 private static native boolean nativeStartNativeTestServer(String filePath);
108 private static native void nativeShutdownNativeTestServer(); 86 private static native void nativeShutdownNativeTestServer();
109 private static native void nativeRegisterHostResolverProc(
110 long contextAdapter, boolean isLegacyAPI);
111 private static native String nativeGetEchoBodyURL(); 87 private static native String nativeGetEchoBodyURL();
112 private static native String nativeGetEchoHeaderURL(String header); 88 private static native String nativeGetEchoHeaderURL(String header);
113 private static native String nativeGetEchoAllHeadersURL(); 89 private static native String nativeGetEchoAllHeadersURL();
114 private static native String nativeGetEchoMethodURL(); 90 private static native String nativeGetEchoMethodURL();
115 private static native String nativeGetRedirectToEchoBody(); 91 private static native String nativeGetRedirectToEchoBody();
116 private static native String nativeGetFileURL(String filePath); 92 private static native String nativeGetFileURL(String filePath);
117 private static native String nativeGetSdchURL(); 93 private static native String nativeGetSdchURL();
118 private static native String nativeGetHostPort(); 94 private static native String nativeGetHostPort();
119 private static native boolean nativeIsDataReductionProxySupported(); 95 private static native boolean nativeIsDataReductionProxySupported();
120 } 96 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698