| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "components/nacl/loader/nacl_ipc_adapter.h" | 5 #include "components/nacl/loader/nacl_ipc_adapter.h" |
| 6 | 6 |
| 7 #include <string.h> | 7 #include <string.h> |
| 8 | 8 |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/message_loop/message_loop.h" | 10 #include "base/message_loop/message_loop.h" |
| 11 #include "base/message_loop/message_loop_proxy.h" | 11 #include "base/message_loop/message_loop_proxy.h" |
| 12 #include "base/threading/platform_thread.h" | 12 #include "base/threading/platform_thread.h" |
| 13 #include "base/threading/simple_thread.h" | 13 #include "base/threading/simple_thread.h" |
| 14 #include "ipc/ipc_test_sink.h" | 14 #include "ipc/ipc_test_sink.h" |
| 15 #include "native_client/src/trusted/desc/nacl_desc_custom.h" | 15 #include "native_client/src/trusted/desc/nacl_desc_custom.h" |
| 16 #include "native_client/src/trusted/service_runtime/include/sys/fcntl.h" | 16 #include "native_client/src/trusted/service_runtime/include/sys/fcntl.h" |
| 17 #include "ppapi/c/ppb_file_io.h" | 17 #include "ppapi/c/ppb_file_io.h" |
| 18 #include "testing/gtest/include/gtest/gtest.h" | 18 #include "testing/gtest/include/gtest/gtest.h" |
| 19 | 19 |
| 20 namespace { | 20 namespace { |
| 21 | 21 |
| 22 class NaClIPCAdapterTest : public testing::Test { | 22 class NaClIPCAdapterTest : public testing::Test { |
| 23 public: | 23 public: |
| 24 NaClIPCAdapterTest() {} | 24 NaClIPCAdapterTest() {} |
| 25 | 25 |
| 26 // testing::Test implementation. | 26 // testing::Test implementation. |
| 27 virtual void SetUp() override { | 27 void SetUp() override { |
| 28 sink_ = new IPC::TestSink; | 28 sink_ = new IPC::TestSink; |
| 29 | 29 |
| 30 // Takes ownership of the sink_ pointer. Note we provide the current message | 30 // Takes ownership of the sink_ pointer. Note we provide the current message |
| 31 // loop instead of using a real IO thread. This should work OK since we do | 31 // loop instead of using a real IO thread. This should work OK since we do |
| 32 // not need real IPC for the tests. | 32 // not need real IPC for the tests. |
| 33 adapter_ = new NaClIPCAdapter(scoped_ptr<IPC::Channel>(sink_), | 33 adapter_ = new NaClIPCAdapter(scoped_ptr<IPC::Channel>(sink_), |
| 34 base::MessageLoopProxy::current().get()); | 34 base::MessageLoopProxy::current().get()); |
| 35 } | 35 } |
| 36 virtual void TearDown() override { | 36 void TearDown() override { |
| 37 sink_ = NULL; // This pointer is actually owned by the IPCAdapter. | 37 sink_ = NULL; // This pointer is actually owned by the IPCAdapter. |
| 38 adapter_ = NULL; | 38 adapter_ = NULL; |
| 39 // The adapter destructor has to post a task to destroy the Channel on the | 39 // The adapter destructor has to post a task to destroy the Channel on the |
| 40 // IO thread. For the purposes of the test, we just need to make sure that | 40 // IO thread. For the purposes of the test, we just need to make sure that |
| 41 // task gets run, or it will appear as a leak. | 41 // task gets run, or it will appear as a leak. |
| 42 message_loop_.RunUntilIdle(); | 42 message_loop_.RunUntilIdle(); |
| 43 } | 43 } |
| 44 | 44 |
| 45 protected: | 45 protected: |
| 46 int BlockingReceive(void* buf, size_t buf_size) { | 46 int BlockingReceive(void* buf, size_t buf_size) { |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 EXPECT_EQ(NACL_ABI_O_RDONLY, | 348 EXPECT_EQ(NACL_ABI_O_RDONLY, |
| 349 TranslatePepperFileReadWriteOpenFlagsForTesting( | 349 TranslatePepperFileReadWriteOpenFlagsForTesting( |
| 350 PP_FILEOPENFLAG_CREATE)); | 350 PP_FILEOPENFLAG_CREATE)); |
| 351 EXPECT_EQ(NACL_ABI_O_RDONLY, | 351 EXPECT_EQ(NACL_ABI_O_RDONLY, |
| 352 TranslatePepperFileReadWriteOpenFlagsForTesting( | 352 TranslatePepperFileReadWriteOpenFlagsForTesting( |
| 353 PP_FILEOPENFLAG_TRUNCATE)); | 353 PP_FILEOPENFLAG_TRUNCATE)); |
| 354 EXPECT_EQ(NACL_ABI_O_RDONLY, | 354 EXPECT_EQ(NACL_ABI_O_RDONLY, |
| 355 TranslatePepperFileReadWriteOpenFlagsForTesting( | 355 TranslatePepperFileReadWriteOpenFlagsForTesting( |
| 356 PP_FILEOPENFLAG_EXCLUSIVE)); | 356 PP_FILEOPENFLAG_EXCLUSIVE)); |
| 357 } | 357 } |
| OLD | NEW |