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

Unified Diff: testing/android/native_test_launcher.cc

Issue 12213035: Android: Refactor native test setup in a util class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
Index: testing/android/native_test_launcher.cc
diff --git a/testing/android/native_test_launcher.cc b/testing/android/native_test_launcher.cc
index e3cf59eeca79582c9149f1f07d22e573ff910b90..07296c5e0b8fa709984d7d0052d1d7378941c523 100644
--- a/testing/android/native_test_launcher.cc
+++ b/testing/android/native_test_launcher.cc
@@ -11,27 +11,23 @@
#include <android/log.h>
#include <signal.h>
-#include <stdarg.h>
-#include <stdio.h>
#include "base/android/base_jni_registrar.h"
#include "base/android/jni_android.h"
#include "base/android/jni_string.h"
-#include "base/android/locale_utils.h"
-#include "base/android/path_utils.h"
#include "base/android/scoped_java_ref.h"
#include "base/at_exit.h"
#include "base/base_switches.h"
#include "base/command_line.h"
#include "base/file_path.h"
-#include "base/file_util.h"
#include "base/logging.h"
-#include "base/string_util.h"
#include "base/stringprintf.h"
-#include "base/strings/string_tokenizer.h"
#include "gtest/gtest.h"
+#include "testing/android/native_test_util.h"
#include "testing/jni/ChromeNativeTestActivity_jni.h"
+using testing::NativeTestUtil;
+
// The main function of the program to be wrapped as a test apk.
extern int main(int argc, char** argv);
@@ -42,16 +38,14 @@ namespace {
const char kSeparateStderrFifo[] = "separate-stderr-fifo";
const char kCreateStdinFifo[] = "create-stdin-fifo";
+// The test runner script writes the command line file in
+// "/data/local/tmp".
+static const char kCommandLineFilePath[] =
+ "/data/local/tmp/chrome-native-tests-command-line";
+
const char kLogTag[] = "chromium";
const char kCrashedMarker[] = "[ CRASHED ]\n";
-void AndroidLogError(const char* format, ...) {
- va_list args;
- va_start(args, format);
- __android_log_vprint(ANDROID_LOG_ERROR, kLogTag, format, args);
- va_end(args);
-}
-
// The list of signals which are considered to be crashes.
const int kExceptionSignals[] = {
SIGSEGV, SIGABRT, SIGFPE, SIGILL, SIGBUS, -1
@@ -80,73 +74,6 @@ void InstallHandlers() {
}
}
-void ParseArgsFromString(const std::string& command_line,
- std::vector<std::string>* args) {
- base::StringTokenizer tokenizer(command_line, kWhitespaceASCII);
- tokenizer.set_quote_chars("\"");
- while (tokenizer.GetNext()) {
- std::string token;
- RemoveChars(tokenizer.token(), "\"", &token);
- args->push_back(token);
- }
-}
-
-void ParseArgsFromCommandLineFile(std::vector<std::string>* args) {
- // The test runner script writes the command line file in
- // "/data/local/tmp".
- static const char kCommandLineFilePath[] =
- "/data/local/tmp/chrome-native-tests-command-line";
- FilePath command_line(kCommandLineFilePath);
- std::string command_line_string;
- if (file_util::ReadFileToString(command_line, &command_line_string)) {
- ParseArgsFromString(command_line_string, args);
- }
-}
-
-int ArgsToArgv(const std::vector<std::string>& args,
- std::vector<char*>* argv) {
- // We need to pass in a non-const char**.
- int argc = args.size();
-
- argv->resize(argc + 1);
- for (int i = 0; i < argc; ++i)
- (*argv)[i] = const_cast<char*>(args[i].c_str());
- (*argv)[argc] = NULL; // argv must be NULL terminated.
-
- return argc;
-}
-
-void CreateFIFO(const char* fifo_path) {
- unlink(fifo_path);
- // Default permissions for mkfifo is ignored, chmod is required.
- if (mkfifo(fifo_path, 0666) || chmod(fifo_path, 0666)) {
- AndroidLogError("Failed to create fifo %s: %s\n",
- fifo_path, strerror(errno));
- exit(EXIT_FAILURE);
- }
-}
-
-void Redirect(FILE* stream, const char* path, const char* mode) {
- if (!freopen(path, mode, stream)) {
- AndroidLogError("Failed to redirect stream to file: %s: %s\n",
- path, strerror(errno));
- exit(EXIT_FAILURE);
- }
-}
-
-class ScopedMainEntryLogger {
- public:
- ScopedMainEntryLogger() {
- printf(">>ScopedMainEntryLogger\n");
- }
-
- ~ScopedMainEntryLogger() {
- printf("<<ScopedMainEntryLogger\n");
- fflush(stdout);
- fflush(stderr);
- }
-};
-
} // namespace
// This method is called on a separate java thread so that we won't trigger
@@ -168,11 +95,10 @@ static void RunTests(JNIEnv* env,
base::android::RegisterJni(env);
std::vector<std::string> args;
- ParseArgsFromCommandLineFile(&args);
+ NativeTestUtil::ParseArgsFromCommandLineFile(kCommandLineFilePath, &args);
- // We need to pass in a non-const char**.
std::vector<char*> argv;
- int argc = ArgsToArgv(args, &argv);
+ int argc = NativeTestUtil::ArgsToArgv(args, &argv);
// Fully initialize command line with arguments.
CommandLine::ForCurrentProcess()->AppendArguments(
@@ -184,7 +110,7 @@ static void RunTests(JNIEnv* env,
// A few options, such "--gtest_list_tests", will just use printf directly
// Always redirect stdout to a known file.
FilePath fifo_path(files_dir.Append(FilePath("test.fifo")));
- CreateFIFO(fifo_path.value().c_str());
+ NativeTestUtil::CreateFIFO(fifo_path.value().c_str());
FilePath stderr_fifo_path, stdin_fifo_path;
@@ -192,21 +118,22 @@ static void RunTests(JNIEnv* env,
// other tests, insert stderr content to the same fifo we use for stdout.
if (command_line.HasSwitch(kSeparateStderrFifo)) {
stderr_fifo_path = files_dir.Append(FilePath("stderr.fifo"));
- CreateFIFO(stderr_fifo_path.value().c_str());
+ NativeTestUtil::CreateFIFO(stderr_fifo_path.value().c_str());
}
// DumpRenderTree uses stdin to receive input about which test to run.
if (command_line.HasSwitch(kCreateStdinFifo)) {
stdin_fifo_path = files_dir.Append(FilePath("stdin.fifo"));
- CreateFIFO(stdin_fifo_path.value().c_str());
+ NativeTestUtil::CreateFIFO(stdin_fifo_path.value().c_str());
}
// Only redirect the streams after all fifos have been created.
- Redirect(stdout, fifo_path.value().c_str(), "w");
+ NativeTestUtil::RedirectStream(stdout, fifo_path.value().c_str(), "w");
if (!stdin_fifo_path.empty())
- Redirect(stdin, stdin_fifo_path.value().c_str(), "r");
+ NativeTestUtil::RedirectStream(stdin, stdin_fifo_path.value().c_str(), "r");
if (!stderr_fifo_path.empty())
- Redirect(stderr, stderr_fifo_path.value().c_str(), "w");
+ NativeTestUtil::RedirectStream(
+ stderr, stderr_fifo_path.value().c_str(), "w");
else
dup2(STDOUT_FILENO, STDERR_FILENO);
@@ -218,7 +145,7 @@ static void RunTests(JNIEnv* env,
base::debug::WaitForDebugger(24 * 60 * 60, false);
}
- ScopedMainEntryLogger scoped_main_entry_logger;
+ NativeTestUtil::ScopedMainEntryLogger scoped_main_entry_logger;
main(argc, &argv[0]);
}

Powered by Google App Engine
This is Rietveld 408576698