| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "mojo/edk/embedder/platform_channel_pair.h" | 5 #include "mojo/embedder/platform_channel_pair.h" |
| 6 | 6 |
| 7 #include <errno.h> | 7 #include <errno.h> |
| 8 #include <poll.h> | 8 #include <poll.h> |
| 9 #include <signal.h> | 9 #include <signal.h> |
| 10 #include <stdio.h> | 10 #include <stdio.h> |
| 11 #include <sys/socket.h> | 11 #include <sys/socket.h> |
| 12 #include <sys/types.h> | 12 #include <sys/types.h> |
| 13 #include <sys/uio.h> | 13 #include <sys/uio.h> |
| 14 #include <unistd.h> | 14 #include <unistd.h> |
| 15 | 15 |
| 16 #include <deque> | 16 #include <deque> |
| 17 | 17 |
| 18 #include "base/files/file_path.h" | 18 #include "base/files/file_path.h" |
| 19 #include "base/files/file_util.h" | 19 #include "base/files/file_util.h" |
| 20 #include "base/files/scoped_file.h" | 20 #include "base/files/scoped_file.h" |
| 21 #include "base/files/scoped_temp_dir.h" | 21 #include "base/files/scoped_temp_dir.h" |
| 22 #include "base/logging.h" | 22 #include "base/logging.h" |
| 23 #include "base/macros.h" | 23 #include "base/macros.h" |
| 24 #include "mojo/edk/embedder/platform_channel_utils_posix.h" | 24 #include "mojo/common/test/test_utils.h" |
| 25 #include "mojo/edk/embedder/platform_handle.h" | 25 #include "mojo/embedder/platform_channel_utils_posix.h" |
| 26 #include "mojo/edk/embedder/platform_handle_vector.h" | 26 #include "mojo/embedder/platform_handle.h" |
| 27 #include "mojo/edk/embedder/scoped_platform_handle.h" | 27 #include "mojo/embedder/platform_handle_vector.h" |
| 28 #include "mojo/edk/test/test_utils.h" | 28 #include "mojo/embedder/scoped_platform_handle.h" |
| 29 #include "testing/gtest/include/gtest/gtest.h" | 29 #include "testing/gtest/include/gtest/gtest.h" |
| 30 | 30 |
| 31 namespace mojo { | 31 namespace mojo { |
| 32 namespace embedder { | 32 namespace embedder { |
| 33 namespace { | 33 namespace { |
| 34 | 34 |
| 35 void WaitReadable(PlatformHandle h) { | 35 void WaitReadable(PlatformHandle h) { |
| 36 struct pollfd pfds = {}; | 36 struct pollfd pfds = {}; |
| 37 pfds.fd = h.fd; | 37 pfds.fd = h.fd; |
| 38 pfds.events = POLLIN; | 38 pfds.events = POLLIN; |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 char read_buf[100]; | 246 char read_buf[100]; |
| 247 size_t bytes_read = fread(read_buf, 1, sizeof(read_buf), fp.get()); | 247 size_t bytes_read = fread(read_buf, 1, sizeof(read_buf), fp.get()); |
| 248 EXPECT_EQ(file_contents.size(), bytes_read); | 248 EXPECT_EQ(file_contents.size(), bytes_read); |
| 249 EXPECT_EQ(file_contents, std::string(read_buf, bytes_read)); | 249 EXPECT_EQ(file_contents, std::string(read_buf, bytes_read)); |
| 250 } | 250 } |
| 251 } | 251 } |
| 252 | 252 |
| 253 } // namespace | 253 } // namespace |
| 254 } // namespace embedder | 254 } // namespace embedder |
| 255 } // namespace mojo | 255 } // namespace mojo |
| OLD | NEW |