OLD | NEW |
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 | 8 |
9 import org.chromium.base.annotations.JNINamespace; | 9 import org.chromium.base.annotations.JNINamespace; |
10 import org.chromium.base.test.util.UrlUtils; | |
11 | 10 |
12 /** | 11 /** |
13 * 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 |
14 * needed to talk to it. | 13 * needed to talk to it. |
15 */ | 14 */ |
16 @JNINamespace("cronet") | 15 @JNINamespace("cronet") |
17 public final class NativeTestServer { | 16 public final class NativeTestServer { |
18 // This variable contains the response body of a request to getSuccessURL(). | 17 // This variable contains the response body of a request to getSuccessURL(). |
19 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"; |
20 | 19 |
21 public static boolean startNativeTestServer(Context context) { | 20 public static boolean startNativeTestServer(Context context) { |
22 TestFilesInstaller.installIfNeeded(context); | 21 TestFilesInstaller.installIfNeeded(context); |
23 return nativeStartNativeTestServer( | 22 return nativeStartNativeTestServer( |
24 TestFilesInstaller.getInstalledPath(context), UrlUtils.getIsolat
edTestRoot()); | 23 TestFilesInstaller.getInstalledPath(context)); |
25 } | 24 } |
26 | 25 |
27 public static void shutdownNativeTestServer() { | 26 public static void shutdownNativeTestServer() { |
28 nativeShutdownNativeTestServer(); | 27 nativeShutdownNativeTestServer(); |
29 } | 28 } |
30 | 29 |
31 public static String getEchoBodyURL() { | 30 public static String getEchoBodyURL() { |
32 return nativeGetEchoBodyURL(); | 31 return nativeGetEchoBodyURL(); |
33 } | 32 } |
34 | 33 |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 } | 75 } |
77 | 76 |
78 public static String getHostPort() { | 77 public static String getHostPort() { |
79 return nativeGetHostPort(); | 78 return nativeGetHostPort(); |
80 } | 79 } |
81 | 80 |
82 public static boolean isDataReductionProxySupported() { | 81 public static boolean isDataReductionProxySupported() { |
83 return nativeIsDataReductionProxySupported(); | 82 return nativeIsDataReductionProxySupported(); |
84 } | 83 } |
85 | 84 |
86 private static native boolean nativeStartNativeTestServer(String filePath, S
tring testDataDir); | 85 private static native boolean nativeStartNativeTestServer(String filePath); |
87 private static native void nativeShutdownNativeTestServer(); | 86 private static native void nativeShutdownNativeTestServer(); |
88 private static native String nativeGetEchoBodyURL(); | 87 private static native String nativeGetEchoBodyURL(); |
89 private static native String nativeGetEchoHeaderURL(String header); | 88 private static native String nativeGetEchoHeaderURL(String header); |
90 private static native String nativeGetEchoAllHeadersURL(); | 89 private static native String nativeGetEchoAllHeadersURL(); |
91 private static native String nativeGetEchoMethodURL(); | 90 private static native String nativeGetEchoMethodURL(); |
92 private static native String nativeGetRedirectToEchoBody(); | 91 private static native String nativeGetRedirectToEchoBody(); |
93 private static native String nativeGetFileURL(String filePath); | 92 private static native String nativeGetFileURL(String filePath); |
94 private static native String nativeGetSdchURL(); | 93 private static native String nativeGetSdchURL(); |
95 private static native String nativeGetHostPort(); | 94 private static native String nativeGetHostPort(); |
96 private static native boolean nativeIsDataReductionProxySupported(); | 95 private static native boolean nativeIsDataReductionProxySupported(); |
97 } | 96 } |
OLD | NEW |