1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
|
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/test/embedded_test_server/android/embedded_test_server_android.h"
#include "base/android/jni_array.h"
#include "base/android/jni_string.h"
#include "base/android/scoped_java_ref.h"
#include "base/files/file_path.h"
#include "base/functional/bind.h"
#include "base/test/test_support_android.h"
#include "net/base/tracing.h"
// Must come after all headers that specialize FromJniType() / ToJniType().
#include "net/android/net_test_support_provider_jni/EmbeddedTestServerImpl_jni.h"
using base::android::JavaParamRef;
using base::android::JavaRef;
using base::android::ScopedJavaLocalRef;
namespace net::test_server {
EmbeddedTestServerAndroid::ConnectionListener::ConnectionListener(
EmbeddedTestServerAndroid* test_server_android)
: test_server_android_(test_server_android) {}
EmbeddedTestServerAndroid::ConnectionListener::~ConnectionListener() = default;
std::unique_ptr<StreamSocket>
EmbeddedTestServerAndroid::ConnectionListener::AcceptedSocket(
std::unique_ptr<StreamSocket> socket) {
test_server_android_->AcceptedSocket(static_cast<const void*>(socket.get()));
return socket;
}
void EmbeddedTestServerAndroid::ConnectionListener::ReadFromSocket(
const StreamSocket& socket,
int rv) {
test_server_android_->ReadFromSocket(static_cast<const void*>(&socket));
}
void EmbeddedTestServerAndroid::ConnectionListener::
OnResponseCompletedSuccessfully(std::unique_ptr<StreamSocket> socket) {}
EmbeddedTestServerAndroid::EmbeddedTestServerAndroid(
JNIEnv* env,
const JavaRef<jobject>& jobj,
jboolean jhttps)
: weak_java_server_(env, jobj),
test_server_(jhttps ? EmbeddedTestServer::TYPE_HTTPS
: EmbeddedTestServer::TYPE_HTTP),
connection_listener_(this) {
test_server_.SetConnectionListener(&connection_listener_);
Java_EmbeddedTestServerImpl_setNativePtr(env, jobj,
reinterpret_cast<intptr_t>(this));
// Register the request monitor to capture request headers.
test_server_.RegisterRequestMonitor(
base::BindRepeating(&EmbeddedTestServerAndroid::MonitorResourceRequest,
base::Unretained(this)));
}
EmbeddedTestServerAndroid::~EmbeddedTestServerAndroid() {
JNIEnv* env = base::android::AttachCurrentThread();
Java_EmbeddedTestServerImpl_clearNativePtr(env, weak_java_server_.get(env));
}
jboolean EmbeddedTestServerAndroid::Start(JNIEnv* env, jint port) {
return test_server_.Start(static_cast<int>(port));
}
ScopedJavaLocalRef<jstring> EmbeddedTestServerAndroid::GetRootCertPemPath(
JNIEnv* env) const {
return base::android::ConvertUTF8ToJavaString(
env, test_server_.GetRootCertPemPath().value());
}
jboolean EmbeddedTestServerAndroid::ShutdownAndWaitUntilComplete(JNIEnv* env) {
return test_server_.ShutdownAndWaitUntilComplete();
}
ScopedJavaLocalRef<jstring> EmbeddedTestServerAndroid::GetURL(
JNIEnv* env,
const JavaParamRef<jstring>& jrelative_url) const {
const GURL gurl(test_server_.GetURL(
base::android::ConvertJavaStringToUTF8(env, jrelative_url)));
return base::android::ConvertUTF8ToJavaString(env, gurl.spec());
}
ScopedJavaLocalRef<jstring> EmbeddedTestServerAndroid::GetURLWithHostName(
JNIEnv* env,
const JavaParamRef<jstring>& jhostname,
const JavaParamRef<jstring>& jrelative_url) const {
const GURL gurl(test_server_.GetURL(
base::android::ConvertJavaStringToUTF8(env, jhostname),
base::android::ConvertJavaStringToUTF8(env, jrelative_url)));
return base::android::ConvertUTF8ToJavaString(env, gurl.spec());
}
std::vector<std::string> EmbeddedTestServerAndroid::GetRequestHeadersForUrl(
JNIEnv* env,
const base::android::JavaParamRef<jstring>& jrelative_url) {
base::AutoLock auto_lock(lock_);
std::string path = base::android::ConvertJavaStringToUTF8(env, jrelative_url);
CHECK(requests_by_path_.contains(path)) << path;
// Copy headers from HttpRequest::HeaderMap to std::vector for passing them to
// Java. For the required SDK version in Cronet, std::map is not available
// (see the comment in IEmbeddedTestServerImpl.aidl for details). The vector
// alternates between header names (even indices) and their corresponding
// values (odd indices).
std::vector<std::string> headers;
for (auto [key, value] : requests_by_path_[path].headers) {
headers.push_back(key);
headers.push_back(value);
}
return headers;
}
int EmbeddedTestServerAndroid::GetRequestCountForUrl(
JNIEnv* env,
const base::android::JavaParamRef<jstring>& jrelative_url) {
base::AutoLock auto_lock(lock_);
std::string path = base::android::ConvertJavaStringToUTF8(env, jrelative_url);
auto it = requests_by_path_.find(path);
if (it == requests_by_path_.end()) {
return 0;
}
return it->second.count;
}
void EmbeddedTestServerAndroid::AddDefaultHandlers(
JNIEnv* env,
const JavaParamRef<jstring>& jdirectory_path) {
const base::FilePath directory(
base::android::ConvertJavaStringToUTF8(env, jdirectory_path));
test_server_.AddDefaultHandlers(directory);
}
void EmbeddedTestServerAndroid::SetSSLConfig(JNIEnv* jenv,
jint jserver_certificate) {
test_server_.SetSSLConfig(
static_cast<EmbeddedTestServer::ServerCertificate>(jserver_certificate));
}
typedef std::unique_ptr<HttpResponse> (*HandleRequestPtr)(
const HttpRequest& request);
void EmbeddedTestServerAndroid::RegisterRequestHandler(JNIEnv* env,
jlong handler) {
HandleRequestPtr handler_ptr = reinterpret_cast<HandleRequestPtr>(handler);
test_server_.RegisterRequestHandler(base::BindRepeating(handler_ptr));
}
void EmbeddedTestServerAndroid::ServeFilesFromDirectory(
JNIEnv* env,
const JavaParamRef<jstring>& jdirectory_path) {
const base::FilePath directory(
base::android::ConvertJavaStringToUTF8(env, jdirectory_path));
test_server_.ServeFilesFromDirectory(directory);
}
void EmbeddedTestServerAndroid::AcceptedSocket(const void* socket_id) {
JNIEnv* env = base::android::AttachCurrentThread();
Java_EmbeddedTestServerImpl_acceptedSocket(
env, weak_java_server_.get(env), reinterpret_cast<intptr_t>(socket_id));
}
void EmbeddedTestServerAndroid::ReadFromSocket(const void* socket_id) {
JNIEnv* env = base::android::AttachCurrentThread();
Java_EmbeddedTestServerImpl_readFromSocket(
env, weak_java_server_.get(env), reinterpret_cast<intptr_t>(socket_id));
}
void EmbeddedTestServerAndroid::Destroy(JNIEnv* env) {
delete this;
}
static void JNI_EmbeddedTestServerImpl_Init(
JNIEnv* env,
const JavaParamRef<jobject>& jobj,
const JavaParamRef<jstring>& jtest_data_dir,
jboolean jhttps) {
TRACE_EVENT0("native", "EmbeddedTestServerAndroid::Init");
base::FilePath test_data_dir(
base::android::ConvertJavaStringToUTF8(env, jtest_data_dir));
base::InitAndroidTestPaths(test_data_dir);
// Bare new does not leak here because the instance deletes itself when it
// receives a Destroy() call its Java counterpart. The Java counterpart owns
// the instance created here.
new EmbeddedTestServerAndroid(env, jobj, jhttps);
}
void EmbeddedTestServerAndroid::MonitorResourceRequest(
const net::test_server::HttpRequest& request) {
base::AutoLock auto_lock(lock_);
// Currently, when multiple requests are sent to the same URL, only the first
// request can record the headers.
std::string path = request.GetURL().PathForRequest();
auto it = requests_by_path_.find(path);
if (it != requests_by_path_.end()) {
it->second.count++;
return;
}
RequestInfoByPath info;
info.headers = request.headers;
info.count++;
requests_by_path_.emplace(path, std::move(info));
}
EmbeddedTestServerAndroid::RequestInfoByPath::RequestInfoByPath() = default;
EmbeddedTestServerAndroid::RequestInfoByPath::~RequestInfoByPath() = default;
EmbeddedTestServerAndroid::RequestInfoByPath::RequestInfoByPath(
EmbeddedTestServerAndroid::RequestInfoByPath&& other) = default;
EmbeddedTestServerAndroid::RequestInfoByPath&
EmbeddedTestServerAndroid::RequestInfoByPath::operator=(
EmbeddedTestServerAndroid::RequestInfoByPath&& other) = default;
EmbeddedTestServerAndroid::RequestInfoByPath::RequestInfoByPath(
const EmbeddedTestServerAndroid::RequestInfoByPath& other) = default;
EmbeddedTestServerAndroid::RequestInfoByPath&
EmbeddedTestServerAndroid::RequestInfoByPath::operator=(
const EmbeddedTestServerAndroid::RequestInfoByPath& other) = default;
} // namespace net::test_server
|