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#include "runtime.h"
18
19#include "UniquePtr.h"
20#include "common_test.h"
21
22namespace art {
23
24class RuntimeTest : public CommonTest {};
25
26TEST_F(RuntimeTest, ParsedOptions) {
27  void* test_vfprintf = reinterpret_cast<void*>(0xa);
28  void* test_abort = reinterpret_cast<void*>(0xb);
29  void* test_exit = reinterpret_cast<void*>(0xc);
30  void* null = reinterpret_cast<void*>(NULL);
31
32  std::string lib_core(GetLibCoreDexFileName());
33
34  std::string boot_class_path;
35  boot_class_path += "-Xbootclasspath:";
36  boot_class_path += lib_core;
37
38  Runtime::Options options;
39  options.push_back(std::make_pair(boot_class_path.c_str(), null));
40  options.push_back(std::make_pair("-classpath", null));
41  options.push_back(std::make_pair(lib_core.c_str(), null));
42  options.push_back(std::make_pair("-cp", null));
43  options.push_back(std::make_pair(lib_core.c_str(), null));
44  options.push_back(std::make_pair("-Ximage:boot_image", null));
45  options.push_back(std::make_pair("-Xcheck:jni", null));
46  options.push_back(std::make_pair("-Xms2048", null));
47  options.push_back(std::make_pair("-Xmx4k", null));
48  options.push_back(std::make_pair("-Xss1m", null));
49  options.push_back(std::make_pair("-XX:HeapTargetUtilization=0.75", null));
50  options.push_back(std::make_pair("-Dfoo=bar", null));
51  options.push_back(std::make_pair("-Dbaz=qux", null));
52  options.push_back(std::make_pair("-verbose:gc,class,jni", null));
53  options.push_back(std::make_pair("host-prefix", "host_prefix"));
54  options.push_back(std::make_pair("vfprintf", test_vfprintf));
55  options.push_back(std::make_pair("abort", test_abort));
56  options.push_back(std::make_pair("exit", test_exit));
57  UniquePtr<Runtime::ParsedOptions> parsed(Runtime::ParsedOptions::Create(options, false));
58  ASSERT_TRUE(parsed.get() != NULL);
59
60  EXPECT_EQ(lib_core, parsed->boot_class_path_string_);
61  EXPECT_EQ(lib_core, parsed->class_path_string_);
62  EXPECT_EQ(std::string("boot_image"), parsed->image_);
63  EXPECT_EQ(true, parsed->check_jni_);
64  EXPECT_EQ(2048U, parsed->heap_initial_size_);
65  EXPECT_EQ(4 * KB, parsed->heap_maximum_size_);
66  EXPECT_EQ(1 * MB, parsed->stack_size_);
67  EXPECT_EQ(0.75, parsed->heap_target_utilization_);
68  EXPECT_EQ("host_prefix", parsed->host_prefix_);
69  EXPECT_TRUE(test_vfprintf == parsed->hook_vfprintf_);
70  EXPECT_TRUE(test_exit == parsed->hook_exit_);
71  EXPECT_TRUE(test_abort == parsed->hook_abort_);
72  EXPECT_TRUE(VLOG_IS_ON(class_linker));
73  EXPECT_FALSE(VLOG_IS_ON(compiler));
74  EXPECT_FALSE(VLOG_IS_ON(heap));
75  EXPECT_TRUE(VLOG_IS_ON(gc));
76  EXPECT_FALSE(VLOG_IS_ON(jdwp));
77  EXPECT_TRUE(VLOG_IS_ON(jni));
78  EXPECT_FALSE(VLOG_IS_ON(monitor));
79  EXPECT_FALSE(VLOG_IS_ON(startup));
80  EXPECT_FALSE(VLOG_IS_ON(third_party_jni));
81  EXPECT_FALSE(VLOG_IS_ON(threads));
82  ASSERT_EQ(2U, parsed->properties_.size());
83  EXPECT_EQ("foo=bar", parsed->properties_[0]);
84  EXPECT_EQ("baz=qux", parsed->properties_[1]);
85}
86
87}  // namespace art
88