Enable ClickListenerTest.
[chromium-blink-merge.git] / chromeos / process_proxy / process_output_watcher_unittest.cc
blobb45d137d36510d68ded601e0b362f79c84c8993e
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include <gtest/gtest.h>
7 #include <queue>
8 #include <string>
9 #include <vector>
11 #include <sys/wait.h>
13 #include "base/bind.h"
14 #include "base/file_util.h"
15 #include "base/posix/eintr_wrapper.h"
16 #include "base/synchronization/waitable_event.h"
17 #include "base/threading/thread.h"
18 #include "chromeos/process_proxy/process_output_watcher.h"
20 namespace chromeos {
22 struct TestCase {
23 std::string str;
24 bool should_send_terminating_null;
26 TestCase(const std::string& expected_string,
27 bool send_terminating_null)
28 : str(expected_string),
29 should_send_terminating_null(send_terminating_null) {
33 class ProcessWatcherExpectations {
34 public:
35 ProcessWatcherExpectations() {}
37 void Init(const std::vector<TestCase>& expectations) {
38 received_from_out_ = 0;
40 for (size_t i = 0; i < expectations.size(); i++) {
41 out_expectations_.append(expectations[i].str);
42 if (expectations[i].should_send_terminating_null)
43 out_expectations_.append(std::string("", 1));
47 bool CheckExpectations(const std::string& data, ProcessOutputType type) {
48 EXPECT_EQ(PROCESS_OUTPUT_TYPE_OUT, type);
49 if (type != PROCESS_OUTPUT_TYPE_OUT)
50 return false;
52 EXPECT_LT(received_from_out_, out_expectations_.length());
53 if (received_from_out_ >= out_expectations_.length())
54 return false;
56 EXPECT_EQ(received_from_out_,
57 out_expectations_.find(data, received_from_out_));
59 received_from_out_ += data.length();
60 return true;
63 bool IsDone() {
64 return received_from_out_ >= out_expectations_.length();
67 private:
68 std::string out_expectations_;
69 size_t received_from_out_;
72 class ProcessOutputWatcherTest : public testing::Test {
73 public:
74 void StartWatch(int pt, int stop,
75 const std::vector<TestCase>& expectations) {
76 expectations_.Init(expectations);
78 // This will delete itself.
79 ProcessOutputWatcher* crosh_watcher = new ProcessOutputWatcher(pt, stop,
80 base::Bind(&ProcessOutputWatcherTest::OnRead, base::Unretained(this)));
81 crosh_watcher->Start();
84 void OnRead(ProcessOutputType type, const std::string& output) {
85 bool success = expectations_.CheckExpectations(output, type);
86 if (!success || expectations_.IsDone())
87 all_data_received_->Signal();
90 protected:
91 std::string VeryLongString() {
92 std::string result = "0123456789";
93 for (int i = 0; i < 8; i++)
94 result = result.append(result);
95 return result;
98 void RunTest(const std::vector<TestCase>& test_cases) {
99 all_data_received_.reset(new base::WaitableEvent(true, false));
101 base::Thread output_watch_thread("ProcessOutpuWatchThread");
102 ASSERT_TRUE(output_watch_thread.Start());
104 int pt_pipe[2], stop_pipe[2];
105 ASSERT_FALSE(HANDLE_EINTR(pipe(pt_pipe)));
106 ASSERT_FALSE(HANDLE_EINTR(pipe(stop_pipe)));
108 output_watch_thread.message_loop()->PostTask(FROM_HERE,
109 base::Bind(&ProcessOutputWatcherTest::StartWatch,
110 base::Unretained(this),
111 pt_pipe[0], stop_pipe[0], test_cases));
113 for (size_t i = 0; i < test_cases.size(); i++) {
114 const std::string& test_str = test_cases[i].str;
115 // Let's make inputs not NULL terminated, unless other is specified in
116 // the test case.
117 ssize_t test_size = test_str.length() * sizeof(*test_str.c_str());
118 if (test_cases[i].should_send_terminating_null)
119 test_size += sizeof(*test_str.c_str());
120 EXPECT_EQ(test_size,
121 file_util::WriteFileDescriptor(pt_pipe[1], test_str.c_str(),
122 test_size));
125 all_data_received_->Wait();
127 // Send stop signal. It is not important which string we send.
128 EXPECT_EQ(1, file_util::WriteFileDescriptor(stop_pipe[1], "q", 1));
130 EXPECT_NE(-1, IGNORE_EINTR(close(stop_pipe[1])));
131 EXPECT_NE(-1, IGNORE_EINTR(close(pt_pipe[1])));
133 output_watch_thread.Stop();
136 scoped_ptr<base::WaitableEvent> all_data_received_;
138 private:
139 ProcessWatcherExpectations expectations_;
140 std::vector<TestCase> exp;
144 TEST_F(ProcessOutputWatcherTest, OutputWatcher) {
145 std::vector<TestCase> test_cases;
146 test_cases.push_back(TestCase("testing output\n", false));
147 test_cases.push_back(TestCase("testing error\n", false));
148 test_cases.push_back(TestCase("testing error1\n", false));
149 test_cases.push_back(TestCase("testing output1\n", false));
150 test_cases.push_back(TestCase("testing output2\n", false));
151 test_cases.push_back(TestCase("testing output3\n", false));
152 test_cases.push_back(TestCase(VeryLongString(), false));
153 test_cases.push_back(TestCase("testing error2\n", false));
155 RunTest(test_cases);
158 // Verifies that sending '\0' generates PROCESS_OUTPUT_TYPE_OUT event and does
159 // not terminate output watcher.
160 TEST_F(ProcessOutputWatcherTest, SendNull) {
161 std::vector<TestCase> test_cases;
162 // This will send '\0' to output wathcer.
163 test_cases.push_back(TestCase("", true));
164 // Let's verify that next input also gets detected (i.e. output watcher does
165 // not exit after seeing '\0' from previous test case).
166 test_cases.push_back(TestCase("a", true));
168 RunTest(test_cases);
171 } // namespace chromeos