blob: 85a1d532c9a659dc6611b2935c699cf4b56bc5b6 [file] [log] [blame]
Reid Kleckner74679a92013-04-22 19:03:55 +00001//===- unittest/Support/ProgramTest.cpp -----------------------------------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Reid Kleckner74679a92013-04-22 19:03:55 +00006//
7//===----------------------------------------------------------------------===//
8
Chandler Carruth9a67b072017-06-06 11:06:56 +00009#include "llvm/Support/Program.h"
Nico Weber432a3882018-04-30 14:59:11 +000010#include "llvm/Config/llvm-config.h"
Reid Kleckner74679a92013-04-22 19:03:55 +000011#include "llvm/Support/CommandLine.h"
Chandler Carruth9a67b072017-06-06 11:06:56 +000012#include "llvm/Support/ConvertUTF.h"
Rafael Espindolae03dfd92013-06-26 05:01:35 +000013#include "llvm/Support/FileSystem.h"
Reid Kleckner74679a92013-04-22 19:03:55 +000014#include "llvm/Support/Path.h"
Reid Kleckner74679a92013-04-22 19:03:55 +000015#include "gtest/gtest.h"
Duncan P. N. Exon Smith91d3cfe2016-04-05 20:45:04 +000016#include <stdlib.h>
Reid Kleckner206ddd02013-04-24 17:50:30 +000017#if defined(__APPLE__)
Reid Klecknerde0c2602013-04-23 13:15:51 +000018# include <crt_externs.h>
Reid Kleckner206ddd02013-04-24 17:50:30 +000019#elif !defined(_MSC_VER)
Reid Klecknerde0c2602013-04-23 13:15:51 +000020// Forward declare environ in case it's not provided by stdlib.h.
21extern char **environ;
22#endif
Reid Kleckner74679a92013-04-22 19:03:55 +000023
Tareq A. Sirajd88b9832013-10-01 14:28:18 +000024#if defined(LLVM_ON_UNIX)
25#include <unistd.h>
26void sleep_for(unsigned int seconds) {
27 sleep(seconds);
28}
Nico Weber712e8d22018-04-29 00:45:03 +000029#elif defined(_WIN32)
Tareq A. Sirajd88b9832013-10-01 14:28:18 +000030#include <windows.h>
31void sleep_for(unsigned int seconds) {
32 Sleep(seconds * 1000);
33}
34#else
35#error sleep_for is not implemented on your platform.
36#endif
37
Rafael Espindola9c359662014-09-03 20:02:00 +000038#define ASSERT_NO_ERROR(x) \
39 if (std::error_code ASSERT_NO_ERROR_ec = x) { \
40 SmallString<128> MessageStorage; \
41 raw_svector_ostream Message(MessageStorage); \
42 Message << #x ": did not return errc::success.\n" \
43 << "error number: " << ASSERT_NO_ERROR_ec.value() << "\n" \
44 << "error message: " << ASSERT_NO_ERROR_ec.message() << "\n"; \
45 GTEST_FATAL_FAILURE_(MessageStorage.c_str()); \
46 } else { \
47 }
Reid Kleckner95012aa2013-04-30 04:30:41 +000048// From TestMain.cpp.
49extern const char *TestMainArgv0;
50
Reid Kleckner74679a92013-04-22 19:03:55 +000051namespace {
52
53using namespace llvm;
54using namespace sys;
55
Duncan P. N. Exon Smith91d3cfe2016-04-05 20:45:04 +000056static cl::opt<std::string>
Reid Kleckner74679a92013-04-22 19:03:55 +000057ProgramTestStringArg1("program-test-string-arg1");
Duncan P. N. Exon Smith91d3cfe2016-04-05 20:45:04 +000058static cl::opt<std::string>
Reid Kleckner74679a92013-04-22 19:03:55 +000059ProgramTestStringArg2("program-test-string-arg2");
60
Pawel Bylica85ca2942015-11-04 08:25:20 +000061class ProgramEnvTest : public testing::Test {
Zachary Turner08426e12018-06-12 17:43:52 +000062 std::vector<StringRef> EnvTable;
Pawel Bylica85ca2942015-11-04 08:25:20 +000063 std::vector<std::string> EnvStorage;
64
65protected:
66 void SetUp() override {
67 auto EnvP = [] {
Nico Weber712e8d22018-04-29 00:45:03 +000068#if defined(_WIN32)
Pawel Bylica85ca2942015-11-04 08:25:20 +000069 _wgetenv(L"TMP"); // Populate _wenviron, initially is null
70 return _wenviron;
71#elif defined(__APPLE__)
72 return *_NSGetEnviron();
Reid Klecknerde0c2602013-04-23 13:15:51 +000073#else
Pawel Bylica85ca2942015-11-04 08:25:20 +000074 return environ;
Reid Klecknerde0c2602013-04-23 13:15:51 +000075#endif
Pawel Bylica85ca2942015-11-04 08:25:20 +000076 }();
77 ASSERT_TRUE(EnvP);
78
Zachary Turner08426e12018-06-12 17:43:52 +000079 auto prepareEnvVar = [this](decltype(*EnvP) Var) -> StringRef {
Nico Weber712e8d22018-04-29 00:45:03 +000080#if defined(_WIN32)
Pawel Bylica85ca2942015-11-04 08:25:20 +000081 // On Windows convert UTF16 encoded variable to UTF8
82 auto Len = wcslen(Var);
83 ArrayRef<char> Ref{reinterpret_cast<char const *>(Var),
84 Len * sizeof(*Var)};
85 EnvStorage.emplace_back();
86 auto convStatus = convertUTF16ToUTF8String(Ref, EnvStorage.back());
87 EXPECT_TRUE(convStatus);
Zachary Turner08426e12018-06-12 17:43:52 +000088 return EnvStorage.back();
Pawel Bylica85ca2942015-11-04 08:25:20 +000089#else
Malcolm Parsons17d266b2017-01-13 17:12:16 +000090 (void)this;
Zachary Turner08426e12018-06-12 17:43:52 +000091 return StringRef(Var);
Pawel Bylica85ca2942015-11-04 08:25:20 +000092#endif
93 };
94
95 while (*EnvP != nullptr) {
96 EnvTable.emplace_back(prepareEnvVar(*EnvP));
97 ++EnvP;
98 }
Reid Klecknerde0c2602013-04-23 13:15:51 +000099 }
Pawel Bylica85ca2942015-11-04 08:25:20 +0000100
101 void TearDown() override {
102 EnvTable.clear();
103 EnvStorage.clear();
104 }
105
Zachary Turner08426e12018-06-12 17:43:52 +0000106 void addEnvVar(StringRef Var) { EnvTable.emplace_back(Var); }
Pawel Bylica85ca2942015-11-04 08:25:20 +0000107
Zachary Turner08426e12018-06-12 17:43:52 +0000108 ArrayRef<StringRef> getEnviron() const { return EnvTable; }
Pawel Bylica85ca2942015-11-04 08:25:20 +0000109};
Reid Klecknerde0c2602013-04-23 13:15:51 +0000110
Nico Weber712e8d22018-04-29 00:45:03 +0000111#ifdef _WIN32
Pawel Bylica85ca2942015-11-04 08:25:20 +0000112TEST_F(ProgramEnvTest, CreateProcessLongPath) {
Paul Robinsonc38deee2014-11-24 18:05:29 +0000113 if (getenv("LLVM_PROGRAM_TEST_LONG_PATH"))
114 exit(0);
115
116 // getMainExecutable returns an absolute path; prepend the long-path prefix.
117 std::string MyAbsExe =
118 sys::fs::getMainExecutable(TestMainArgv0, &ProgramTestStringArg1);
119 std::string MyExe;
120 if (!StringRef(MyAbsExe).startswith("\\\\?\\"))
121 MyExe.append("\\\\?\\");
122 MyExe.append(MyAbsExe);
123
Zachary Turner08426e12018-06-12 17:43:52 +0000124 StringRef ArgV[] = {MyExe,
125 "--gtest_filter=ProgramEnvTest.CreateProcessLongPath"};
Paul Robinsonc38deee2014-11-24 18:05:29 +0000126
127 // Add LLVM_PROGRAM_TEST_LONG_PATH to the environment of the child.
Pawel Bylica85ca2942015-11-04 08:25:20 +0000128 addEnvVar("LLVM_PROGRAM_TEST_LONG_PATH=1");
Paul Robinsonc38deee2014-11-24 18:05:29 +0000129
130 // Redirect stdout to a long path.
131 SmallString<128> TestDirectory;
132 ASSERT_NO_ERROR(
133 fs::createUniqueDirectory("program-redirect-test", TestDirectory));
134 SmallString<256> LongPath(TestDirectory);
135 LongPath.push_back('\\');
136 // MAX_PATH = 260
137 LongPath.append(260 - TestDirectory.size(), 'a');
Paul Robinsonc38deee2014-11-24 18:05:29 +0000138
139 std::string Error;
140 bool ExecutionFailed;
Alexander Kornienko208eecd2017-09-13 17:03:37 +0000141 Optional<StringRef> Redirects[] = {None, LongPath.str(), None};
Pawel Bylica85ca2942015-11-04 08:25:20 +0000142 int RC = ExecuteAndWait(MyExe, ArgV, getEnviron(), Redirects,
Paul Robinsonc38deee2014-11-24 18:05:29 +0000143 /*secondsToWait=*/ 10, /*memoryLimit=*/ 0, &Error,
144 &ExecutionFailed);
145 EXPECT_FALSE(ExecutionFailed) << Error;
146 EXPECT_EQ(0, RC);
147
148 // Remove the long stdout.
149 ASSERT_NO_ERROR(fs::remove(Twine(LongPath)));
150 ASSERT_NO_ERROR(fs::remove(Twine(TestDirectory)));
151}
152#endif
153
Pawel Bylica85ca2942015-11-04 08:25:20 +0000154TEST_F(ProgramEnvTest, CreateProcessTrailingSlash) {
Reid Kleckner74679a92013-04-22 19:03:55 +0000155 if (getenv("LLVM_PROGRAM_TEST_CHILD")) {
156 if (ProgramTestStringArg1 == "has\\\\ trailing\\" &&
157 ProgramTestStringArg2 == "has\\\\ trailing\\") {
158 exit(0); // Success! The arguments were passed and parsed.
159 }
160 exit(1);
161 }
162
Rafael Espindolae03dfd92013-06-26 05:01:35 +0000163 std::string my_exe =
164 sys::fs::getMainExecutable(TestMainArgv0, &ProgramTestStringArg1);
Zachary Turner08426e12018-06-12 17:43:52 +0000165 StringRef argv[] = {
166 my_exe,
167 "--gtest_filter=ProgramEnvTest.CreateProcessTrailingSlash",
168 "-program-test-string-arg1",
169 "has\\\\ trailing\\",
170 "-program-test-string-arg2",
171 "has\\\\ trailing\\"};
Reid Klecknerde0c2602013-04-23 13:15:51 +0000172
173 // Add LLVM_PROGRAM_TEST_CHILD to the environment of the child.
Pawel Bylica85ca2942015-11-04 08:25:20 +0000174 addEnvVar("LLVM_PROGRAM_TEST_CHILD=1");
Reid Klecknerde0c2602013-04-23 13:15:51 +0000175
Reid Kleckner74679a92013-04-22 19:03:55 +0000176 std::string error;
177 bool ExecutionFailed;
178 // Redirect stdout and stdin to NUL, but let stderr through.
Nico Weber712e8d22018-04-29 00:45:03 +0000179#ifdef _WIN32
Rafael Espindola7c1023a2013-06-13 20:25:38 +0000180 StringRef nul("NUL");
Reid Kleckner74679a92013-04-22 19:03:55 +0000181#else
Rafael Espindola7c1023a2013-06-13 20:25:38 +0000182 StringRef nul("/dev/null");
Reid Kleckner74679a92013-04-22 19:03:55 +0000183#endif
Alexander Kornienko208eecd2017-09-13 17:03:37 +0000184 Optional<StringRef> redirects[] = { nul, nul, None };
Pawel Bylica85ca2942015-11-04 08:25:20 +0000185 int rc = ExecuteAndWait(my_exe, argv, getEnviron(), redirects,
Rafael Espindola7c1023a2013-06-13 20:25:38 +0000186 /*secondsToWait=*/ 10, /*memoryLimit=*/ 0, &error,
187 &ExecutionFailed);
Reid Kleckner74679a92013-04-22 19:03:55 +0000188 EXPECT_FALSE(ExecutionFailed) << error;
189 EXPECT_EQ(0, rc);
190}
191
Pawel Bylica85ca2942015-11-04 08:25:20 +0000192TEST_F(ProgramEnvTest, TestExecuteNoWait) {
Tareq A. Sirajd88b9832013-10-01 14:28:18 +0000193 using namespace llvm::sys;
194
195 if (getenv("LLVM_PROGRAM_TEST_EXECUTE_NO_WAIT")) {
196 sleep_for(/*seconds*/ 1);
197 exit(0);
198 }
199
200 std::string Executable =
201 sys::fs::getMainExecutable(TestMainArgv0, &ProgramTestStringArg1);
Zachary Turner08426e12018-06-12 17:43:52 +0000202 StringRef argv[] = {Executable,
203 "--gtest_filter=ProgramEnvTest.TestExecuteNoWait"};
Tareq A. Sirajd88b9832013-10-01 14:28:18 +0000204
205 // Add LLVM_PROGRAM_TEST_EXECUTE_NO_WAIT to the environment of the child.
Pawel Bylica85ca2942015-11-04 08:25:20 +0000206 addEnvVar("LLVM_PROGRAM_TEST_EXECUTE_NO_WAIT=1");
Tareq A. Sirajd88b9832013-10-01 14:28:18 +0000207
208 std::string Error;
209 bool ExecutionFailed;
Alexander Kornienko208eecd2017-09-13 17:03:37 +0000210 ProcessInfo PI1 = ExecuteNoWait(Executable, argv, getEnviron(), {}, 0, &Error,
211 &ExecutionFailed);
Tareq A. Sirajd88b9832013-10-01 14:28:18 +0000212 ASSERT_FALSE(ExecutionFailed) << Error;
Reid Klecknerc2e23112016-02-03 21:41:12 +0000213 ASSERT_NE(PI1.Pid, ProcessInfo::InvalidPid) << "Invalid process id";
Tareq A. Sirajd88b9832013-10-01 14:28:18 +0000214
215 unsigned LoopCount = 0;
216
217 // Test that Wait() with WaitUntilTerminates=true works. In this case,
218 // LoopCount should only be incremented once.
219 while (true) {
220 ++LoopCount;
Zachary Turner07670b32016-06-29 21:48:26 +0000221 ProcessInfo WaitResult = llvm::sys::Wait(PI1, 0, true, &Error);
Tareq A. Sirajd88b9832013-10-01 14:28:18 +0000222 ASSERT_TRUE(Error.empty());
223 if (WaitResult.Pid == PI1.Pid)
224 break;
225 }
226
227 EXPECT_EQ(LoopCount, 1u) << "LoopCount should be 1";
228
Alexander Kornienko208eecd2017-09-13 17:03:37 +0000229 ProcessInfo PI2 = ExecuteNoWait(Executable, argv, getEnviron(), {}, 0, &Error,
230 &ExecutionFailed);
Tareq A. Sirajd88b9832013-10-01 14:28:18 +0000231 ASSERT_FALSE(ExecutionFailed) << Error;
Reid Klecknerc2e23112016-02-03 21:41:12 +0000232 ASSERT_NE(PI2.Pid, ProcessInfo::InvalidPid) << "Invalid process id";
Tareq A. Sirajd88b9832013-10-01 14:28:18 +0000233
234 // Test that Wait() with SecondsToWait=0 performs a non-blocking wait. In this
235 // cse, LoopCount should be greater than 1 (more than one increment occurs).
236 while (true) {
237 ++LoopCount;
Zachary Turner07670b32016-06-29 21:48:26 +0000238 ProcessInfo WaitResult = llvm::sys::Wait(PI2, 0, false, &Error);
Tareq A. Sirajd88b9832013-10-01 14:28:18 +0000239 ASSERT_TRUE(Error.empty());
240 if (WaitResult.Pid == PI2.Pid)
241 break;
242 }
243
244 ASSERT_GT(LoopCount, 1u) << "LoopCount should be >1";
245}
246
Pawel Bylica85ca2942015-11-04 08:25:20 +0000247TEST_F(ProgramEnvTest, TestExecuteAndWaitTimeout) {
Peter Collingbourneec1aaca2014-05-31 01:36:02 +0000248 using namespace llvm::sys;
249
250 if (getenv("LLVM_PROGRAM_TEST_TIMEOUT")) {
251 sleep_for(/*seconds*/ 10);
252 exit(0);
253 }
254
255 std::string Executable =
256 sys::fs::getMainExecutable(TestMainArgv0, &ProgramTestStringArg1);
Zachary Turner08426e12018-06-12 17:43:52 +0000257 StringRef argv[] = {
258 Executable, "--gtest_filter=ProgramEnvTest.TestExecuteAndWaitTimeout"};
Peter Collingbourneec1aaca2014-05-31 01:36:02 +0000259
260 // Add LLVM_PROGRAM_TEST_TIMEOUT to the environment of the child.
Pawel Bylica85ca2942015-11-04 08:25:20 +0000261 addEnvVar("LLVM_PROGRAM_TEST_TIMEOUT=1");
Peter Collingbourneec1aaca2014-05-31 01:36:02 +0000262
263 std::string Error;
264 bool ExecutionFailed;
265 int RetCode =
Alexander Kornienko208eecd2017-09-13 17:03:37 +0000266 ExecuteAndWait(Executable, argv, getEnviron(), {}, /*secondsToWait=*/1, 0,
Peter Collingbourneec1aaca2014-05-31 01:36:02 +0000267 &Error, &ExecutionFailed);
268 ASSERT_EQ(-2, RetCode);
269}
270
Tareq A. Sirajd88b9832013-10-01 14:28:18 +0000271TEST(ProgramTest, TestExecuteNegative) {
272 std::string Executable = "i_dont_exist";
Zachary Turner08426e12018-06-12 17:43:52 +0000273 StringRef argv[] = {Executable};
Tareq A. Sirajd88b9832013-10-01 14:28:18 +0000274
275 {
276 std::string Error;
277 bool ExecutionFailed;
Zachary Turner08426e12018-06-12 17:43:52 +0000278 int RetCode = ExecuteAndWait(Executable, argv, llvm::None, {}, 0, 0, &Error,
Alexander Kornienko208eecd2017-09-13 17:03:37 +0000279 &ExecutionFailed);
Tareq A. Sirajd88b9832013-10-01 14:28:18 +0000280 ASSERT_TRUE(RetCode < 0) << "On error ExecuteAndWait should return 0 or "
281 "positive value indicating the result code";
282 ASSERT_TRUE(ExecutionFailed);
283 ASSERT_FALSE(Error.empty());
284 }
285
286 {
287 std::string Error;
288 bool ExecutionFailed;
Zachary Turner08426e12018-06-12 17:43:52 +0000289 ProcessInfo PI = ExecuteNoWait(Executable, argv, llvm::None, {}, 0, &Error,
Alexander Kornienko208eecd2017-09-13 17:03:37 +0000290 &ExecutionFailed);
Reid Klecknerc2e23112016-02-03 21:41:12 +0000291 ASSERT_EQ(PI.Pid, ProcessInfo::InvalidPid)
Tareq A. Sirajd88b9832013-10-01 14:28:18 +0000292 << "On error ExecuteNoWait should return an invalid ProcessInfo";
293 ASSERT_TRUE(ExecutionFailed);
294 ASSERT_FALSE(Error.empty());
295 }
Duncan P. N. Exon Smith91d3cfe2016-04-05 20:45:04 +0000296
Tareq A. Sirajd88b9832013-10-01 14:28:18 +0000297}
298
Nico Weber712e8d22018-04-29 00:45:03 +0000299#ifdef _WIN32
Rafael Espindola9c359662014-09-03 20:02:00 +0000300const char utf16le_text[] =
301 "\x6c\x00\x69\x00\x6e\x00\x67\x00\xfc\x00\x69\x00\xe7\x00\x61\x00";
302const char utf16be_text[] =
303 "\x00\x6c\x00\x69\x00\x6e\x00\x67\x00\xfc\x00\x69\x00\xe7\x00\x61";
304#endif
305const char utf8_text[] = "\x6c\x69\x6e\x67\xc3\xbc\x69\xc3\xa7\x61";
306
307TEST(ProgramTest, TestWriteWithSystemEncoding) {
308 SmallString<128> TestDirectory;
309 ASSERT_NO_ERROR(fs::createUniqueDirectory("program-test", TestDirectory));
310 errs() << "Test Directory: " << TestDirectory << '\n';
311 errs().flush();
312 SmallString<128> file_pathname(TestDirectory);
313 path::append(file_pathname, "international-file.txt");
314 // Only on Windows we should encode in UTF16. For other systems, use UTF8
315 ASSERT_NO_ERROR(sys::writeFileWithEncoding(file_pathname.c_str(), utf8_text,
316 sys::WEM_UTF16));
317 int fd = 0;
318 ASSERT_NO_ERROR(fs::openFileForRead(file_pathname.c_str(), fd));
Nico Weber712e8d22018-04-29 00:45:03 +0000319#if defined(_WIN32)
Rafael Espindola9c359662014-09-03 20:02:00 +0000320 char buf[18];
321 ASSERT_EQ(::read(fd, buf, 18), 18);
322 if (strncmp(buf, "\xfe\xff", 2) == 0) { // UTF16-BE
323 ASSERT_EQ(strncmp(&buf[2], utf16be_text, 16), 0);
324 } else if (strncmp(buf, "\xff\xfe", 2) == 0) { // UTF16-LE
325 ASSERT_EQ(strncmp(&buf[2], utf16le_text, 16), 0);
326 } else {
327 FAIL() << "Invalid BOM in UTF-16 file";
328 }
329#else
330 char buf[10];
331 ASSERT_EQ(::read(fd, buf, 10), 10);
332 ASSERT_EQ(strncmp(buf, utf8_text, 10), 0);
333#endif
334 ::close(fd);
335 ASSERT_NO_ERROR(fs::remove(file_pathname.str()));
336 ASSERT_NO_ERROR(fs::remove(TestDirectory.str()));
337}
338
Reid Kleckner74679a92013-04-22 19:03:55 +0000339} // end anonymous namespace