blob: 364fb2c5bd0eaa0235a02092521ec4ef26f3bdad [file] [log] [blame]
Andrew Top0d1858f2019-05-15 22:01:47 -07001// Copyright 2016 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef BASE_ANDROID_JAVA_HANDLER_THREAD_FOR_TESTING_H_
6#define BASE_ANDROID_JAVA_HANDLER_THREAD_FOR_TESTING_H_
7
8#include <jni.h>
9
10#include <memory>
11
12#include "base/android/scoped_java_ref.h"
13#include "starboard/types.h"
14
15namespace base {
16
17class WaitableEvent;
18
19namespace android {
20
21class JavaHandlerThread;
22
23// Test-only helpers for working with JavaHandlerThread.
24class JavaHandlerThreadHelpers {
25 public:
26 // Create the Java peer first and test that it works before connecting to the
27 // native object.
28 static std::unique_ptr<JavaHandlerThread> CreateJavaFirst();
29
30 static void ThrowExceptionAndAbort(WaitableEvent* event);
31
32 static bool IsExceptionTestException(
33 ScopedJavaLocalRef<jthrowable> exception);
34
35 private:
36 JavaHandlerThreadHelpers() = default;
37 ~JavaHandlerThreadHelpers() = default;
38};
39
40} // namespace android
41} // namespace base
42
43#endif // BASE_ANDROID_JAVA_HANDLER_THREAD_FOR_TESTING_H_