blob: d28ca2834e695599bd24f330ade8bf7dcc876b7e [file] [log] [blame]
Aart Bik69ae54a2015-07-01 14:52:26 -07001/*
2 * Copyright (C) 2015 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 <string>
18#include <vector>
19#include <sstream>
20
21#include <sys/types.h>
22#include <unistd.h>
23
24#include "base/stringprintf.h"
25#include "common_runtime_test.h"
26#include "runtime/arch/instruction_set.h"
Aart Bik69ae54a2015-07-01 14:52:26 -070027#include "runtime/os.h"
28#include "runtime/utils.h"
29#include "utils.h"
30
31namespace art {
32
33class DexDumpTest : public CommonRuntimeTest {
34 protected:
35 virtual void SetUp() {
36 CommonRuntimeTest::SetUp();
37 // Dogfood our own lib core dex file.
Przemyslaw Szczepaniak121b25e2015-11-20 11:24:33 +000038 dex_file_ = GetLibCoreDexFileNames()[0];
Aart Bik69ae54a2015-07-01 14:52:26 -070039 }
40
41 // Runs test with given arguments.
42 bool Exec(const std::vector<std::string>& args, std::string* error_msg) {
Aart Bik22c26f52015-07-08 21:20:13 +000043 // TODO(ajcbik): dexdump2 -> dexdump
Elliott Hughes5ed8b2d2015-09-23 23:01:31 -070044 std::string file_path = GetTestAndroidRoot() + "/bin/dexdump2";
Aart Bik69ae54a2015-07-01 14:52:26 -070045 EXPECT_TRUE(OS::FileExists(file_path.c_str())) << file_path << " should be a valid file path";
46 std::vector<std::string> exec_argv = { file_path };
47 exec_argv.insert(exec_argv.end(), args.begin(), args.end());
48 return ::art::Exec(exec_argv, error_msg);
49 }
50
51 std::string dex_file_;
52};
53
54
55TEST_F(DexDumpTest, NoInputFileGiven) {
56 std::string error_msg;
57 ASSERT_FALSE(Exec({}, &error_msg)) << error_msg;
58}
59
60TEST_F(DexDumpTest, CantOpenOutput) {
61 std::string error_msg;
62 ASSERT_FALSE(Exec({"-o", "/joho", dex_file_}, &error_msg)) << error_msg;
63}
64
65TEST_F(DexDumpTest, BadFlagCombination) {
66 std::string error_msg;
67 ASSERT_FALSE(Exec({"-c", "-i", dex_file_}, &error_msg)) << error_msg;
68}
69
70TEST_F(DexDumpTest, FullPlainOutput) {
71 std::string error_msg;
72 ASSERT_TRUE(Exec({"-d", "-f", "-h", "-l", "plain", "-o", "/dev/null",
73 dex_file_}, &error_msg)) << error_msg;
74}
75
76TEST_F(DexDumpTest, XMLOutput) {
77 std::string error_msg;
78 ASSERT_TRUE(Exec({"-l", "xml", "-o", "/dev/null",
79 dex_file_}, &error_msg)) << error_msg;
80}
81
82} // namespace art