Elliott Hughes | 3810445 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 1 | /* |
| 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 "adb_utils.h" |
| 18 | |
Spencer Low | c9ddd81 | 2015-05-24 15:36:28 -0700 | [diff] [blame] | 19 | #ifdef _WIN32 |
| 20 | #include <windows.h> |
| 21 | #include <userenv.h> |
| 22 | #endif |
| 23 | |
| 24 | #include <string> |
| 25 | |
Elliott Hughes | 3810445 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 26 | #include <gtest/gtest.h> |
| 27 | |
Alex Vallée | 28d1f8d | 2015-05-06 16:26:00 -0400 | [diff] [blame] | 28 | #include <stdlib.h> |
| 29 | #include <string.h> |
| 30 | |
| 31 | #include "sysdeps.h" |
| 32 | |
Elliott Hughes | f55ead9 | 2015-12-04 22:00:26 -0800 | [diff] [blame] | 33 | #include <android-base/macros.h> |
| 34 | #include <android-base/test_utils.h> |
Alex Vallée | 28d1f8d | 2015-05-06 16:26:00 -0400 | [diff] [blame] | 35 | |
Spencer Low | c9ddd81 | 2015-05-24 15:36:28 -0700 | [diff] [blame] | 36 | #ifdef _WIN32 |
| 37 | static std::string subdir(const char* parent, const char* child) { |
| 38 | std::string str(parent); |
| 39 | str += OS_PATH_SEPARATOR; |
| 40 | str += child; |
| 41 | return str; |
| 42 | } |
| 43 | #endif |
| 44 | |
Elliott Hughes | 3810445 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 45 | TEST(adb_utils, directory_exists) { |
Spencer Low | c9ddd81 | 2015-05-24 15:36:28 -0700 | [diff] [blame] | 46 | #ifdef _WIN32 |
| 47 | char profiles_dir[MAX_PATH]; |
| 48 | DWORD cch = arraysize(profiles_dir); |
| 49 | |
| 50 | // On typical Windows 7, returns C:\Users |
Spencer Low | f96845c | 2015-08-03 20:43:24 -0700 | [diff] [blame] | 51 | ASSERT_TRUE(GetProfilesDirectoryA(profiles_dir, &cch)); |
Spencer Low | c9ddd81 | 2015-05-24 15:36:28 -0700 | [diff] [blame] | 52 | |
| 53 | ASSERT_TRUE(directory_exists(profiles_dir)); |
| 54 | |
Spencer Low | c9ddd81 | 2015-05-24 15:36:28 -0700 | [diff] [blame] | 55 | ASSERT_FALSE(directory_exists(subdir(profiles_dir, "does-not-exist"))); |
| 56 | #else |
Elliott Hughes | 3810445 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 57 | ASSERT_TRUE(directory_exists("/proc")); |
Elliott Hughes | 3810445 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 58 | ASSERT_FALSE(directory_exists("/proc/does-not-exist")); |
Spencer Low | c9ddd81 | 2015-05-24 15:36:28 -0700 | [diff] [blame] | 59 | #endif |
Elliott Hughes | 3810445 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 60 | } |
| 61 | |
Josh Gao | cde85bf | 2016-07-28 18:30:46 -0700 | [diff] [blame] | 62 | #if defined(_WIN32) |
| 63 | TEST(adb_utils, directory_exists_win32_symlink_junction) { |
| 64 | char profiles_dir[MAX_PATH]; |
| 65 | DWORD cch = arraysize(profiles_dir); |
| 66 | |
| 67 | // On typical Windows 7, returns C:\Users |
| 68 | ASSERT_TRUE(GetProfilesDirectoryA(profiles_dir, &cch)); |
| 69 | |
| 70 | // On modern (English?) Windows, this is a directory symbolic link to |
| 71 | // C:\ProgramData. Symbolic links are rare on Windows and the user requires |
| 72 | // a special permission (by default granted to Administrative users) to |
| 73 | // create symbolic links. |
| 74 | EXPECT_FALSE(directory_exists(subdir(profiles_dir, "All Users"))); |
| 75 | |
| 76 | // On modern (English?) Windows, this is a directory junction to |
| 77 | // C:\Users\Default. Junctions are used throughout user profile directories |
| 78 | // for backwards compatibility and they don't require any special permissions |
| 79 | // to create. |
| 80 | EXPECT_FALSE(directory_exists(subdir(profiles_dir, "Default User"))); |
| 81 | } |
| 82 | #endif |
| 83 | |
Elliott Hughes | 3810445 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 84 | TEST(adb_utils, escape_arg) { |
Elliott Hughes | 48db87f | 2015-04-17 20:50:11 -0700 | [diff] [blame] | 85 | ASSERT_EQ(R"('')", escape_arg("")); |
Elliott Hughes | 3810445 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 86 | |
Elliott Hughes | 48db87f | 2015-04-17 20:50:11 -0700 | [diff] [blame] | 87 | ASSERT_EQ(R"('abc')", escape_arg("abc")); |
Elliott Hughes | 3810445 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 88 | |
Elliott Hughes | 48db87f | 2015-04-17 20:50:11 -0700 | [diff] [blame] | 89 | ASSERT_EQ(R"(' abc')", escape_arg(" abc")); |
Elliott Hughes | de52ce2 | 2015-05-15 12:06:00 -0700 | [diff] [blame] | 90 | ASSERT_EQ(R"(''\''abc')", escape_arg("'abc")); |
Elliott Hughes | 48db87f | 2015-04-17 20:50:11 -0700 | [diff] [blame] | 91 | ASSERT_EQ(R"('"abc')", escape_arg("\"abc")); |
| 92 | ASSERT_EQ(R"('\abc')", escape_arg("\\abc")); |
| 93 | ASSERT_EQ(R"('(abc')", escape_arg("(abc")); |
| 94 | ASSERT_EQ(R"(')abc')", escape_arg(")abc")); |
Elliott Hughes | 3810445 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 95 | |
Elliott Hughes | 48db87f | 2015-04-17 20:50:11 -0700 | [diff] [blame] | 96 | ASSERT_EQ(R"('abc abc')", escape_arg("abc abc")); |
Elliott Hughes | de52ce2 | 2015-05-15 12:06:00 -0700 | [diff] [blame] | 97 | ASSERT_EQ(R"('abc'\''abc')", escape_arg("abc'abc")); |
Elliott Hughes | 48db87f | 2015-04-17 20:50:11 -0700 | [diff] [blame] | 98 | ASSERT_EQ(R"('abc"abc')", escape_arg("abc\"abc")); |
| 99 | ASSERT_EQ(R"('abc\abc')", escape_arg("abc\\abc")); |
| 100 | ASSERT_EQ(R"('abc(abc')", escape_arg("abc(abc")); |
| 101 | ASSERT_EQ(R"('abc)abc')", escape_arg("abc)abc")); |
Elliott Hughes | 3810445 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 102 | |
Elliott Hughes | 48db87f | 2015-04-17 20:50:11 -0700 | [diff] [blame] | 103 | ASSERT_EQ(R"('abc ')", escape_arg("abc ")); |
Elliott Hughes | de52ce2 | 2015-05-15 12:06:00 -0700 | [diff] [blame] | 104 | ASSERT_EQ(R"('abc'\''')", escape_arg("abc'")); |
Elliott Hughes | 48db87f | 2015-04-17 20:50:11 -0700 | [diff] [blame] | 105 | ASSERT_EQ(R"('abc"')", escape_arg("abc\"")); |
| 106 | ASSERT_EQ(R"('abc\')", escape_arg("abc\\")); |
| 107 | ASSERT_EQ(R"('abc(')", escape_arg("abc(")); |
| 108 | ASSERT_EQ(R"('abc)')", escape_arg("abc)")); |
Elliott Hughes | 3810445 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 109 | } |
Elliott Hughes | 09ccf1f | 2015-07-18 12:21:30 -0700 | [diff] [blame] | 110 | |
Chih-Hung Hsieh | 90b40f6 | 2016-07-27 16:25:51 -0700 | [diff] [blame] | 111 | void test_mkdirs(const std::string& basepath) { |
Spencer Low | 1ec9ceb | 2016-02-10 15:03:50 -0800 | [diff] [blame] | 112 | // Test creating a directory hierarchy. |
Josh Gao | a4f9c17 | 2016-07-28 18:09:48 -0700 | [diff] [blame] | 113 | ASSERT_TRUE(mkdirs(basepath)); |
Spencer Low | 1ec9ceb | 2016-02-10 15:03:50 -0800 | [diff] [blame] | 114 | // Test finding an existing directory hierarchy. |
Josh Gao | a4f9c17 | 2016-07-28 18:09:48 -0700 | [diff] [blame] | 115 | ASSERT_TRUE(mkdirs(basepath)); |
| 116 | // Test mkdirs on an existing hierarchy with a trailing slash. |
| 117 | ASSERT_TRUE(mkdirs(basepath + '/')); |
| 118 | #if defined(_WIN32) |
| 119 | ASSERT_TRUE(mkdirs(basepath + '\\')); |
| 120 | #endif |
| 121 | |
Spencer Low | 1ec9ceb | 2016-02-10 15:03:50 -0800 | [diff] [blame] | 122 | const std::string filepath = basepath + "/file"; |
| 123 | // Verify that the hierarchy was created by trying to create a file in it. |
Josh Gao | a4f9c17 | 2016-07-28 18:09:48 -0700 | [diff] [blame] | 124 | ASSERT_NE(-1, adb_creat(filepath.c_str(), 0600)); |
Spencer Low | 1ec9ceb | 2016-02-10 15:03:50 -0800 | [diff] [blame] | 125 | // If a file exists where we want a directory, the operation should fail. |
Josh Gao | a4f9c17 | 2016-07-28 18:09:48 -0700 | [diff] [blame] | 126 | ASSERT_FALSE(mkdirs(filepath)); |
Spencer Low | 939d000 | 2015-08-01 17:29:23 -0700 | [diff] [blame] | 127 | } |
| 128 | |
Alex Vallée | 28d1f8d | 2015-05-06 16:26:00 -0400 | [diff] [blame] | 129 | TEST(adb_utils, mkdirs) { |
| 130 | TemporaryDir td; |
Spencer Low | 939d000 | 2015-08-01 17:29:23 -0700 | [diff] [blame] | 131 | |
| 132 | // Absolute paths. |
Spencer Low | 1ec9ceb | 2016-02-10 15:03:50 -0800 | [diff] [blame] | 133 | test_mkdirs(std::string(td.path) + "/dir/subdir"); |
Spencer Low | 939d000 | 2015-08-01 17:29:23 -0700 | [diff] [blame] | 134 | |
| 135 | // Relative paths. |
| 136 | ASSERT_EQ(0, chdir(td.path)) << strerror(errno); |
Spencer Low | 1ec9ceb | 2016-02-10 15:03:50 -0800 | [diff] [blame] | 137 | test_mkdirs(std::string("relative/subrel")); |
Alex Vallée | 28d1f8d | 2015-05-06 16:26:00 -0400 | [diff] [blame] | 138 | } |
Yabin Cui | 5fc2231 | 2015-10-06 15:10:05 -0700 | [diff] [blame] | 139 | |
| 140 | #if !defined(_WIN32) |
| 141 | TEST(adb_utils, set_file_block_mode) { |
| 142 | int fd = adb_open("/dev/null", O_RDWR | O_APPEND); |
| 143 | ASSERT_GE(fd, 0); |
| 144 | int flags = fcntl(fd, F_GETFL, 0); |
| 145 | ASSERT_EQ(O_RDWR | O_APPEND, (flags & (O_RDWR | O_APPEND))); |
| 146 | ASSERT_TRUE(set_file_block_mode(fd, false)); |
| 147 | int new_flags = fcntl(fd, F_GETFL, 0); |
| 148 | ASSERT_EQ(flags | O_NONBLOCK, new_flags); |
| 149 | ASSERT_TRUE(set_file_block_mode(fd, true)); |
| 150 | new_flags = fcntl(fd, F_GETFL, 0); |
| 151 | ASSERT_EQ(flags, new_flags); |
| 152 | ASSERT_EQ(0, adb_close(fd)); |
| 153 | } |
| 154 | #endif |
David Pursell | 19d0c23 | 2016-04-07 11:25:48 -0700 | [diff] [blame] | 155 | |
| 156 | TEST(adb_utils, test_forward_targets_are_valid) { |
| 157 | std::string error; |
| 158 | |
| 159 | // Source port can be >= 0. |
| 160 | EXPECT_FALSE(forward_targets_are_valid("tcp:-1", "tcp:9000", &error)); |
| 161 | EXPECT_TRUE(forward_targets_are_valid("tcp:0", "tcp:9000", &error)); |
| 162 | EXPECT_TRUE(forward_targets_are_valid("tcp:8000", "tcp:9000", &error)); |
| 163 | |
| 164 | // Destination port must be >0. |
| 165 | EXPECT_FALSE(forward_targets_are_valid("tcp:8000", "tcp:-1", &error)); |
| 166 | EXPECT_FALSE(forward_targets_are_valid("tcp:8000", "tcp:0", &error)); |
| 167 | |
| 168 | // Port must be a number. |
| 169 | EXPECT_FALSE(forward_targets_are_valid("tcp:", "tcp:9000", &error)); |
| 170 | EXPECT_FALSE(forward_targets_are_valid("tcp:a", "tcp:9000", &error)); |
| 171 | EXPECT_FALSE(forward_targets_are_valid("tcp:22x", "tcp:9000", &error)); |
| 172 | EXPECT_FALSE(forward_targets_are_valid("tcp:8000", "tcp:", &error)); |
| 173 | EXPECT_FALSE(forward_targets_are_valid("tcp:8000", "tcp:a", &error)); |
| 174 | EXPECT_FALSE(forward_targets_are_valid("tcp:8000", "tcp:22x", &error)); |
| 175 | } |