summaryrefslogtreecommitdiffstats
path: root/base/process_util_unittest.cc
diff options
context:
space:
mode:
authorviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-16 04:11:45 +0000
committerviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-16 04:11:45 +0000
commit5743490811d02ea8e9a828a92bcbc8fc442a3b18 (patch)
tree2dde838bddeb501270a0e8d985a9e790414f71bb /base/process_util_unittest.cc
parentc4e1cf8cc32fe095137a23e6d895d169982abf10 (diff)
downloadchromium_src-5743490811d02ea8e9a828a92bcbc8fc442a3b18.zip
chromium_src-5743490811d02ea8e9a828a92bcbc8fc442a3b18.tar.gz
chromium_src-5743490811d02ea8e9a828a92bcbc8fc442a3b18.tar.bz2
Add and alternative GetAppOutput() to process_util that takes a timeout.
Contributed by tessamac@chromium.org TEST=none BUG=47356 Review URL: http://codereview.chromium.org/2810014 Patch from Tessa MacDuff <tessamac@chromium.org>. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52608 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/process_util_unittest.cc')
-rw-r--r--base/process_util_unittest.cc82
1 files changed, 74 insertions, 8 deletions
diff --git a/base/process_util_unittest.cc b/base/process_util_unittest.cc
index 481c759..675f38f 100644
--- a/base/process_util_unittest.cc
+++ b/base/process_util_unittest.cc
@@ -436,19 +436,85 @@ TEST_F(ProcessUtilTest, AlterEnvironment) {
delete[] e;
}
-TEST_F(ProcessUtilTest, GetAppOutput) {
+TEST_F(ProcessUtilTest, GetAppOutput_Success) {
+ std::string output;
+ EXPECT_TRUE(base::GetAppOutput(CommandLine(FilePath(
+ FILE_PATH_LITERAL("true"))), &output));
+ EXPECT_STREQ("", output.c_str());
+
+ CommandLine command_line(FilePath(FILE_PATH_LITERAL("echo")));
+ command_line.AppendLooseValue(L"foobar42");
+ EXPECT_TRUE(base::GetAppOutput(command_line, &output));
+ EXPECT_STREQ("foobar42\n", output.c_str());
+}
+
+TEST_F(ProcessUtilTest, GetAppOutput_Failure) {
std::string output;
- EXPECT_TRUE(base::GetAppOutput(CommandLine(FilePath("true")), &output));
+ EXPECT_FALSE(base::GetAppOutput(CommandLine(FilePath(
+ FILE_PATH_LITERAL("false"))), &output));
EXPECT_STREQ("", output.c_str());
- EXPECT_FALSE(base::GetAppOutput(CommandLine(FilePath("false")), &output));
+ // Make sure we capture output in case of failure.
+ std::vector<std::string> argv;
+ argv.push_back("/bin/sh");
+ argv.push_back("-c");
+ argv.push_back("echo hello && false");
+ EXPECT_FALSE(base::GetAppOutput(CommandLine(argv), &output));
+ EXPECT_STREQ("hello\n", output.c_str());
+}
+
+TEST_F(ProcessUtilTest, GetAppOutputWithTimeout_SuccessWithinTimeout) {
+ CommandLine command_line(FilePath(FILE_PATH_LITERAL("echo")));
+ command_line.AppendLooseValue(L"hello");
+ std::string output;
+ bool timed_out;
+
+ EXPECT_TRUE(base::GetAppOutputWithTimeout(
+ command_line, &output, &timed_out,
+ std::numeric_limits<int>::max()));
+ EXPECT_EQ("hello\n", output);
+ EXPECT_FALSE(timed_out);
+}
+TEST_F(ProcessUtilTest, GetAppOutputWithTimeout_FailureWithinTimeout) {
std::vector<std::string> argv;
- argv.push_back("/bin/echo");
- argv.push_back("-n");
- argv.push_back("foobar42");
- EXPECT_TRUE(base::GetAppOutput(CommandLine(argv), &output));
- EXPECT_STREQ("foobar42", output.c_str());
+ argv.push_back("/bin/sh");
+ argv.push_back("-c");
+ argv.push_back("echo hello && false");
+ std::string output;
+ bool timed_out;
+
+ EXPECT_FALSE(base::GetAppOutputWithTimeout(
+ CommandLine(argv), &output, &timed_out,
+ std::numeric_limits<int>::max()));
+ EXPECT_EQ("hello\n", output);
+ EXPECT_FALSE(timed_out);
+}
+
+TEST_F(ProcessUtilTest, WaitForExitCodeWithTimeout) {
+ CommandLine command_line(FilePath(FILE_PATH_LITERAL("sleep")));
+ command_line.AppendLooseValue(L"10000");
+
+ base::ProcessHandle process_handle;
+ EXPECT_TRUE(base::LaunchApp(command_line, false, false,
+ &process_handle));
+ int exit_code = 42;
+ EXPECT_FALSE(base::WaitForExitCodeWithTimeout(process_handle, &exit_code, 1));
+ EXPECT_EQ(42, exit_code); // exit_code is unchanged if timeout triggers.
+}
+
+TEST_F(ProcessUtilTest, GetAppOutputWithTimeout_TimedOutWhileOutputing) {
+ std::vector<std::string> argv;
+ argv.push_back("/bin/sh");
+ argv.push_back("-c");
+ argv.push_back("echo asleep && sleep 10 && echo awake");
+ std::string output;
+ bool timed_out;
+
+ EXPECT_FALSE(base::GetAppOutputWithTimeout(CommandLine(argv), &output,
+ &timed_out, 1000));
+ EXPECT_EQ("asleep\n", output); // Timed out before printing "awake".
+ EXPECT_TRUE(timed_out);
}
TEST_F(ProcessUtilTest, GetAppOutputRestricted) {