1 //===- unittest/Support/ProgramTest.cpp -----------------------------------===//
3 // 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
7 //===----------------------------------------------------------------------===//
9 #include "llvm/Support/Program.h"
10 #include "llvm/Config/llvm-config.h"
11 #include "llvm/Support/CommandLine.h"
12 #include "llvm/Support/ConvertUTF.h"
13 #include "llvm/Support/FileSystem.h"
14 #include "llvm/Support/Path.h"
15 #include "gtest/gtest.h"
17 #if defined(__APPLE__)
18 # include <crt_externs.h>
19 #elif !defined(_MSC_VER)
20 // Forward declare environ in case it's not provided by stdlib.h.
21 extern char **environ
;
24 #if defined(LLVM_ON_UNIX)
26 void sleep_for(unsigned int seconds
) {
31 void sleep_for(unsigned int seconds
) {
32 Sleep(seconds
* 1000);
35 #error sleep_for is not implemented on your platform.
38 #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()); \
49 extern const char *TestMainArgv0
;
56 static cl::opt
<std::string
>
57 ProgramTestStringArg1("program-test-string-arg1");
58 static cl::opt
<std::string
>
59 ProgramTestStringArg2("program-test-string-arg2");
61 class ProgramEnvTest
: public testing::Test
{
62 std::vector
<StringRef
> EnvTable
;
63 std::vector
<std::string
> EnvStorage
;
66 void SetUp() override
{
69 _wgetenv(L
"TMP"); // Populate _wenviron, initially is null
71 #elif defined(__APPLE__)
72 return *_NSGetEnviron();
79 auto prepareEnvVar
= [this](decltype(*EnvP
) Var
) -> StringRef
{
81 // On Windows convert UTF16 encoded variable to UTF8
82 auto Len
= wcslen(Var
);
83 ArrayRef
<char> Ref
{reinterpret_cast<char const *>(Var
),
85 EnvStorage
.emplace_back();
86 auto convStatus
= convertUTF16ToUTF8String(Ref
, EnvStorage
.back());
87 EXPECT_TRUE(convStatus
);
88 return EnvStorage
.back();
91 return StringRef(Var
);
95 while (*EnvP
!= nullptr) {
96 EnvTable
.emplace_back(prepareEnvVar(*EnvP
));
101 void TearDown() override
{
106 void addEnvVar(StringRef Var
) { EnvTable
.emplace_back(Var
); }
108 ArrayRef
<StringRef
> getEnviron() const { return EnvTable
; }
112 TEST_F(ProgramEnvTest
, CreateProcessLongPath
) {
113 if (getenv("LLVM_PROGRAM_TEST_LONG_PATH"))
116 // getMainExecutable returns an absolute path; prepend the long-path prefix.
117 std::string MyAbsExe
=
118 sys::fs::getMainExecutable(TestMainArgv0
, &ProgramTestStringArg1
);
120 if (!StringRef(MyAbsExe
).startswith("\\\\?\\"))
121 MyExe
.append("\\\\?\\");
122 MyExe
.append(MyAbsExe
);
124 StringRef ArgV
[] = {MyExe
,
125 "--gtest_filter=ProgramEnvTest.CreateProcessLongPath"};
127 // Add LLVM_PROGRAM_TEST_LONG_PATH to the environment of the child.
128 addEnvVar("LLVM_PROGRAM_TEST_LONG_PATH=1");
130 // Redirect stdout to a long path.
131 SmallString
<128> TestDirectory
;
133 fs::createUniqueDirectory("program-redirect-test", TestDirectory
));
134 SmallString
<256> LongPath(TestDirectory
);
135 LongPath
.push_back('\\');
137 LongPath
.append(260 - TestDirectory
.size(), 'a');
140 bool ExecutionFailed
;
141 Optional
<StringRef
> Redirects
[] = {None
, LongPath
.str(), None
};
142 int RC
= ExecuteAndWait(MyExe
, ArgV
, getEnviron(), Redirects
,
143 /*secondsToWait=*/ 10, /*memoryLimit=*/ 0, &Error
,
145 EXPECT_FALSE(ExecutionFailed
) << Error
;
148 // Remove the long stdout.
149 ASSERT_NO_ERROR(fs::remove(Twine(LongPath
)));
150 ASSERT_NO_ERROR(fs::remove(Twine(TestDirectory
)));
154 TEST_F(ProgramEnvTest
, CreateProcessTrailingSlash
) {
155 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.
164 sys::fs::getMainExecutable(TestMainArgv0
, &ProgramTestStringArg1
);
167 "--gtest_filter=ProgramEnvTest.CreateProcessTrailingSlash",
168 "-program-test-string-arg1",
169 "has\\\\ trailing\\",
170 "-program-test-string-arg2",
171 "has\\\\ trailing\\"};
173 // Add LLVM_PROGRAM_TEST_CHILD to the environment of the child.
174 addEnvVar("LLVM_PROGRAM_TEST_CHILD=1");
177 bool ExecutionFailed
;
178 // Redirect stdout and stdin to NUL, but let stderr through.
180 StringRef
nul("NUL");
182 StringRef
nul("/dev/null");
184 Optional
<StringRef
> redirects
[] = { nul
, nul
, None
};
185 int rc
= ExecuteAndWait(my_exe
, argv
, getEnviron(), redirects
,
186 /*secondsToWait=*/ 10, /*memoryLimit=*/ 0, &error
,
188 EXPECT_FALSE(ExecutionFailed
) << error
;
192 TEST_F(ProgramEnvTest
, TestExecuteNoWait
) {
193 using namespace llvm::sys
;
195 if (getenv("LLVM_PROGRAM_TEST_EXECUTE_NO_WAIT")) {
196 sleep_for(/*seconds*/ 1);
200 std::string Executable
=
201 sys::fs::getMainExecutable(TestMainArgv0
, &ProgramTestStringArg1
);
202 StringRef argv
[] = {Executable
,
203 "--gtest_filter=ProgramEnvTest.TestExecuteNoWait"};
205 // Add LLVM_PROGRAM_TEST_EXECUTE_NO_WAIT to the environment of the child.
206 addEnvVar("LLVM_PROGRAM_TEST_EXECUTE_NO_WAIT=1");
209 bool ExecutionFailed
;
210 ProcessInfo PI1
= ExecuteNoWait(Executable
, argv
, getEnviron(), {}, 0, &Error
,
212 ASSERT_FALSE(ExecutionFailed
) << Error
;
213 ASSERT_NE(PI1
.Pid
, ProcessInfo::InvalidPid
) << "Invalid process id";
215 unsigned LoopCount
= 0;
217 // Test that Wait() with WaitUntilTerminates=true works. In this case,
218 // LoopCount should only be incremented once.
221 ProcessInfo WaitResult
= llvm::sys::Wait(PI1
, 0, true, &Error
);
222 ASSERT_TRUE(Error
.empty());
223 if (WaitResult
.Pid
== PI1
.Pid
)
227 EXPECT_EQ(LoopCount
, 1u) << "LoopCount should be 1";
229 ProcessInfo PI2
= ExecuteNoWait(Executable
, argv
, getEnviron(), {}, 0, &Error
,
231 ASSERT_FALSE(ExecutionFailed
) << Error
;
232 ASSERT_NE(PI2
.Pid
, ProcessInfo::InvalidPid
) << "Invalid process id";
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).
238 ProcessInfo WaitResult
= llvm::sys::Wait(PI2
, 0, false, &Error
);
239 ASSERT_TRUE(Error
.empty());
240 if (WaitResult
.Pid
== PI2
.Pid
)
244 ASSERT_GT(LoopCount
, 1u) << "LoopCount should be >1";
247 TEST_F(ProgramEnvTest
, TestExecuteAndWaitTimeout
) {
248 using namespace llvm::sys
;
250 if (getenv("LLVM_PROGRAM_TEST_TIMEOUT")) {
251 sleep_for(/*seconds*/ 10);
255 std::string Executable
=
256 sys::fs::getMainExecutable(TestMainArgv0
, &ProgramTestStringArg1
);
258 Executable
, "--gtest_filter=ProgramEnvTest.TestExecuteAndWaitTimeout"};
260 // Add LLVM_PROGRAM_TEST_TIMEOUT to the environment of the child.
261 addEnvVar("LLVM_PROGRAM_TEST_TIMEOUT=1");
264 bool ExecutionFailed
;
266 ExecuteAndWait(Executable
, argv
, getEnviron(), {}, /*secondsToWait=*/1, 0,
267 &Error
, &ExecutionFailed
);
268 ASSERT_EQ(-2, RetCode
);
271 TEST(ProgramTest
, TestExecuteNegative
) {
272 std::string Executable
= "i_dont_exist";
273 StringRef argv
[] = {Executable
};
277 bool ExecutionFailed
;
278 int RetCode
= ExecuteAndWait(Executable
, argv
, llvm::None
, {}, 0, 0, &Error
,
280 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());
288 bool ExecutionFailed
;
289 ProcessInfo PI
= ExecuteNoWait(Executable
, argv
, llvm::None
, {}, 0, &Error
,
291 ASSERT_EQ(PI
.Pid
, ProcessInfo::InvalidPid
)
292 << "On error ExecuteNoWait should return an invalid ProcessInfo";
293 ASSERT_TRUE(ExecutionFailed
);
294 ASSERT_FALSE(Error
.empty());
300 const char utf16le_text
[] =
301 "\x6c\x00\x69\x00\x6e\x00\x67\x00\xfc\x00\x69\x00\xe7\x00\x61\x00";
302 const char utf16be_text
[] =
303 "\x00\x6c\x00\x69\x00\x6e\x00\x67\x00\xfc\x00\x69\x00\xe7\x00\x61";
305 const char utf8_text
[] = "\x6c\x69\x6e\x67\xc3\xbc\x69\xc3\xa7\x61";
307 TEST(ProgramTest
, TestWriteWithSystemEncoding
) {
308 SmallString
<128> TestDirectory
;
309 ASSERT_NO_ERROR(fs::createUniqueDirectory("program-test", TestDirectory
));
310 errs() << "Test Directory: " << TestDirectory
<< '\n';
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
,
318 ASSERT_NO_ERROR(fs::openFileForRead(file_pathname
.c_str(), fd
));
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);
327 FAIL() << "Invalid BOM in UTF-16 file";
331 ASSERT_EQ(::read(fd
, buf
, 10), 10);
332 ASSERT_EQ(strncmp(buf
, utf8_text
, 10), 0);
335 ASSERT_NO_ERROR(fs::remove(file_pathname
.str()));
336 ASSERT_NO_ERROR(fs::remove(TestDirectory
.str()));
339 } // end anonymous namespace