blob: f53287112473f391b9fb3bb9309c72302842a262 [file] [log] [blame]
// 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.
package org.chromium.net;
import static com.google.common.truth.Truth.assertThat;
import android.content.Context;
import android.os.ConditionVariable;
import org.jni_zero.CalledByNative;
import org.jni_zero.JNINamespace;
import org.jni_zero.NativeClassQualifiedName;
import org.jni_zero.NativeMethods;
import org.chromium.net.impl.CronetUrlRequestContext;
/**
* A wrapper class on top of the native net::UploadDataStream. This class is
* used in tests to drive the native UploadDataStream directly.
*/
@JNINamespace("cronet")
public final class TestUploadDataStreamHandler {
private final CronetTestUtil.NetworkThreadTestConnector mNetworkThreadTestConnector;
private final CronetEngine mCronetEngine;
private long mTestUploadDataStreamHandler;
private ConditionVariable mWaitInitCalled = new ConditionVariable();
private ConditionVariable mWaitInitComplete = new ConditionVariable();
private ConditionVariable mWaitReadComplete = new ConditionVariable();
private ConditionVariable mWaitResetComplete = new ConditionVariable();
// Waits for checkIfInitCallbackInvoked() returns result asynchronously.
private ConditionVariable mWaitCheckInit = new ConditionVariable();
// Waits for checkIfReadCallbackInvoked() returns result asynchronously.
private ConditionVariable mWaitCheckRead = new ConditionVariable();
// If true, init completes synchronously.
private boolean mInitCompletedSynchronously;
private String mData = "";
public TestUploadDataStreamHandler(Context context, final long uploadDataStream) {
mCronetEngine = new CronetEngine.Builder(context).build();
mNetworkThreadTestConnector = new CronetTestUtil.NetworkThreadTestConnector(mCronetEngine);
CronetUrlRequestContext requestContext = (CronetUrlRequestContext) mCronetEngine;
mTestUploadDataStreamHandler =
TestUploadDataStreamHandlerJni.get()
.createTestUploadDataStreamHandler(
this,
uploadDataStream,
requestContext.getUrlRequestContextAdapter());
}
public void destroyNativeObjects() {
if (mTestUploadDataStreamHandler != 0) {
TestUploadDataStreamHandlerJni.get().destroy(mTestUploadDataStreamHandler);
mTestUploadDataStreamHandler = 0;
mNetworkThreadTestConnector.shutdown();
mCronetEngine.shutdown();
}
}
/** Init and returns whether init completes synchronously. */
public boolean init() {
mData = "";
TestUploadDataStreamHandlerJni.get().init(mTestUploadDataStreamHandler);
mWaitInitCalled.block();
mWaitInitCalled.close();
return mInitCompletedSynchronously;
}
public void read() {
TestUploadDataStreamHandlerJni.get().read(mTestUploadDataStreamHandler);
}
public void reset() {
mData = "";
TestUploadDataStreamHandlerJni.get().reset(mTestUploadDataStreamHandler);
mWaitResetComplete.block();
mWaitResetComplete.close();
}
/**
* Checks that {@link #onInitCompleted} has not invoked asynchronously
* by the native UploadDataStream.
*/
public void checkInitCallbackNotInvoked() {
TestUploadDataStreamHandlerJni.get()
.checkInitCallbackNotInvoked(mTestUploadDataStreamHandler);
mWaitCheckInit.block();
mWaitCheckInit.close();
}
/**
* Checks that {@link #onReadCompleted} has not been invoked asynchronously
* by the native UploadDataStream.
*/
public void checkReadCallbackNotInvoked() {
TestUploadDataStreamHandlerJni.get()
.checkReadCallbackNotInvoked(mTestUploadDataStreamHandler);
mWaitCheckRead.block();
mWaitCheckRead.close();
}
public String getData() {
return mData;
}
public void waitForReadComplete() {
mWaitReadComplete.block();
mWaitReadComplete.close();
}
public void waitForInitComplete() {
mWaitInitComplete.block();
mWaitInitComplete.close();
}
// Called on network thread.
@CalledByNative
private void onInitCalled(int res) {
if (res == 0) {
mInitCompletedSynchronously = true;
} else {
mInitCompletedSynchronously = false;
}
mWaitInitCalled.open();
}
// Called on network thread.
@CalledByNative
private void onReadCompleted(int bytesRead, String data) {
mData = data;
mWaitReadComplete.open();
}
// Called on network thread.
@CalledByNative
private void onInitCompleted(int res) {
// If init() completed synchronously, waitForInitComplete() will
// not be invoked in the test, so skip mWaitInitComplete.open().
if (!mInitCompletedSynchronously) {
mWaitInitComplete.open();
}
}
// Called on network thread.
@CalledByNative
private void onResetCompleted() {
mWaitResetComplete.open();
}
// Called on network thread.
@CalledByNative
private void onCheckInitCallbackNotInvoked(boolean initCallbackNotInvoked) {
assertThat(initCallbackNotInvoked).isTrue();
mWaitCheckInit.open();
}
// Called on network thread.
@CalledByNative
private void onCheckReadCallbackNotInvoked(boolean readCallbackNotInvoked) {
assertThat(readCallbackNotInvoked).isTrue();
mWaitCheckRead.open();
}
@NativeMethods("cronet_tests")
interface Natives {
@NativeClassQualifiedName("TestUploadDataStreamHandler")
void init(long nativePtr);
@NativeClassQualifiedName("TestUploadDataStreamHandler")
void read(long nativePtr);
@NativeClassQualifiedName("TestUploadDataStreamHandler")
void reset(long nativePtr);
@NativeClassQualifiedName("TestUploadDataStreamHandler")
void checkInitCallbackNotInvoked(long nativePtr);
@NativeClassQualifiedName("TestUploadDataStreamHandler")
void checkReadCallbackNotInvoked(long nativePtr);
@NativeClassQualifiedName("TestUploadDataStreamHandler")
void destroy(long nativePtr);
long createTestUploadDataStreamHandler(
TestUploadDataStreamHandler obj, long uploadDataStream, long contextAdapter);
}
}