Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #ifndef ART_RUNTIME_COMMON_RUNTIME_TEST_H_ |
| 18 | #define ART_RUNTIME_COMMON_RUNTIME_TEST_H_ |
| 19 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 20 | #include <gtest/gtest.h> |
| 21 | #include <jni.h> |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 22 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 23 | #include <string> |
| 24 | |
| 25 | #include "base/mutex.h" |
| 26 | #include "globals.h" |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 27 | #include "os.h" |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 28 | |
| 29 | namespace art { |
| 30 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 31 | class ClassLinker; |
| 32 | class CompilerCallbacks; |
| 33 | class DexFile; |
| 34 | class JavaVMExt; |
| 35 | class Runtime; |
| 36 | typedef std::vector<std::pair<std::string, const void*>> RuntimeOptions; |
| 37 | |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 38 | class ScratchFile { |
| 39 | public: |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 40 | ScratchFile(); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 41 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 42 | ScratchFile(const ScratchFile& other, const char* suffix); |
Nicolas Geoffray | 9583fbc | 2014-02-28 15:21:07 +0000 | [diff] [blame] | 43 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 44 | explicit ScratchFile(File* file); |
Brian Carlstrom | 0e12bdc | 2014-05-14 17:44:28 -0700 | [diff] [blame] | 45 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 46 | ~ScratchFile(); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 47 | |
| 48 | const std::string& GetFilename() const { |
| 49 | return filename_; |
| 50 | } |
| 51 | |
| 52 | File* GetFile() const { |
| 53 | return file_.get(); |
| 54 | } |
| 55 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 56 | int GetFd() const; |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 57 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 58 | void Unlink(); |
Brian Carlstrom | 0e12bdc | 2014-05-14 17:44:28 -0700 | [diff] [blame] | 59 | |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 60 | private: |
| 61 | std::string filename_; |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 62 | std::unique_ptr<File> file_; |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 63 | }; |
| 64 | |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 65 | class CommonRuntimeTest : public testing::Test { |
| 66 | public: |
Andreas Gampe | 7747c8d | 2014-08-06 14:53:03 -0700 | [diff] [blame^] | 67 | static void SetUpAndroidRoot(); |
| 68 | |
| 69 | // Note: setting up ANDROID_DATA may create a temporary directory. If this is used in a |
| 70 | // non-derived class, be sure to also call the corresponding tear-down below. |
| 71 | static void SetUpAndroidData(std::string& android_data); |
| 72 | |
| 73 | static void TearDownAndroidData(const std::string& android_data, bool fail_on_error); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 74 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 75 | CommonRuntimeTest(); |
| 76 | ~CommonRuntimeTest(); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 77 | |
| 78 | protected: |
| 79 | static bool IsHost() { |
| 80 | return !kIsTargetBuild; |
| 81 | } |
| 82 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 83 | const DexFile* LoadExpectSingleDexFile(const char* location); |
Andreas Gampe | 833a485 | 2014-05-21 18:46:59 -0700 | [diff] [blame] | 84 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 85 | virtual void SetUp(); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 86 | |
| 87 | // Allow subclases such as CommonCompilerTest to add extra options. |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 88 | virtual void SetUpRuntimeOptions(RuntimeOptions* options) {} |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 89 | |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 90 | void ClearDirectory(const char* dirpath); |
| 91 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 92 | virtual void TearDown(); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 93 | |
Jeff Hao | f0a3f09 | 2014-07-24 16:26:09 -0700 | [diff] [blame] | 94 | // Gets the path of the libcore dex file. |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 95 | std::string GetLibCoreDexFileName(); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 96 | |
Jeff Hao | f0a3f09 | 2014-07-24 16:26:09 -0700 | [diff] [blame] | 97 | // Gets the path of the specified dex file for host or target. |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 98 | std::string GetDexFileName(const std::string& jar_prefix); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 99 | |
Jeff Hao | f0a3f09 | 2014-07-24 16:26:09 -0700 | [diff] [blame] | 100 | // Gets the path of the libcore oat file. |
| 101 | std::string GetLibCoreOatFileName(); |
| 102 | |
| 103 | // Gets the path of the specified oat file for host or target. |
| 104 | std::string GetOatFileName(const std::string& oat_prefix); |
| 105 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 106 | std::string GetTestAndroidRoot(); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 107 | |
Andreas Gampe | 833a485 | 2014-05-21 18:46:59 -0700 | [diff] [blame] | 108 | std::vector<const DexFile*> OpenTestDexFiles(const char* name) |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 109 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
Andreas Gampe | 833a485 | 2014-05-21 18:46:59 -0700 | [diff] [blame] | 110 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 111 | const DexFile* OpenTestDexFile(const char* name) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 112 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 113 | jobject LoadDex(const char* dex_name) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 114 | |
| 115 | std::string android_data_; |
| 116 | std::string dalvik_cache_; |
| 117 | const DexFile* java_lang_dex_file_; // owned by runtime_ |
| 118 | std::vector<const DexFile*> boot_class_path_; |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 119 | std::unique_ptr<Runtime> runtime_; |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 120 | // Owned by the runtime |
| 121 | ClassLinker* class_linker_; |
| 122 | |
| 123 | private: |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 124 | std::unique_ptr<CompilerCallbacks> callbacks_; |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 125 | std::vector<const DexFile*> opened_dex_files_; |
| 126 | }; |
| 127 | |
| 128 | // Sets a CheckJni abort hook to catch failures. Note that this will cause CheckJNI to carry on |
| 129 | // rather than aborting, so be careful! |
| 130 | class CheckJniAbortCatcher { |
| 131 | public: |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 132 | CheckJniAbortCatcher(); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 133 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 134 | ~CheckJniAbortCatcher(); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 135 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 136 | void Check(const char* expected_text); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 137 | |
| 138 | private: |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 139 | static void Hook(void* data, const std::string& reason); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 140 | |
| 141 | JavaVMExt* vm_; |
| 142 | std::string actual_; |
| 143 | |
| 144 | DISALLOW_COPY_AND_ASSIGN(CheckJniAbortCatcher); |
| 145 | }; |
| 146 | |
| 147 | // TODO: These tests were disabled for portable when we went to having |
| 148 | // MCLinker link LLVM ELF output because we no longer just have code |
| 149 | // blobs in memory. We'll need to dlopen to load and relocate |
| 150 | // temporary output to resurrect these tests. |
| 151 | #define TEST_DISABLED_FOR_PORTABLE() \ |
| 152 | if (kUsePortableCompiler) { \ |
| 153 | printf("WARNING: TEST DISABLED FOR PORTABLE\n"); \ |
| 154 | return; \ |
| 155 | } |
| 156 | |
Hiroshi Yamauchi | 05b15d6 | 2014-03-19 12:57:56 -0700 | [diff] [blame] | 157 | // TODO: When heap reference poisoning works with the compiler, get rid of this. |
| 158 | #define TEST_DISABLED_FOR_HEAP_REFERENCE_POISONING() \ |
| 159 | if (kPoisonHeapReferences) { \ |
| 160 | printf("WARNING: TEST DISABLED FOR HEAP REFERENCE POISONING\n"); \ |
| 161 | return; \ |
| 162 | } |
| 163 | |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 164 | } // namespace art |
| 165 | |
| 166 | namespace std { |
| 167 | |
| 168 | // TODO: isn't gtest supposed to be able to print STL types for itself? |
| 169 | template <typename T> |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 170 | std::ostream& operator<<(std::ostream& os, const std::vector<T>& rhs); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 171 | |
| 172 | } // namespace std |
| 173 | |
| 174 | #endif // ART_RUNTIME_COMMON_RUNTIME_TEST_H_ |