Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Unified Diff: ipc/attachment_broker_unprivileged_win_unittest.cc

Issue 1493413004: ipc: Allow attachment brokering for shared memory handles. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@temp1
Patch Set: Fix more tests. Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ipc/attachment_broker_privileged_win_unittest.cc ('k') | ipc/handle_attachment_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/attachment_broker_unprivileged_win_unittest.cc
diff --git a/ipc/attachment_broker_unprivileged_win_unittest.cc b/ipc/attachment_broker_unprivileged_win_unittest.cc
deleted file mode 100644
index e67c54a61c7390d4ad16ac6c6c83be3d5913c709..0000000000000000000000000000000000000000
--- a/ipc/attachment_broker_unprivileged_win_unittest.cc
+++ /dev/null
@@ -1,51 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "build/build_config.h"
-
-#include <windows.h>
-
-#include "base/memory/ref_counted.h"
-#include "base/memory/scoped_ptr.h"
-#include "base/process/process.h"
-#include "ipc/attachment_broker_messages.h"
-#include "ipc/attachment_broker_unprivileged_win.h"
-#include "ipc/handle_attachment_win.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace IPC {
-
-TEST(AttachmentBrokerUnprivilegedWinTest, ReceiveValidMessage) {
- HANDLE handle = LongToHandle(8);
- base::ProcessId destination = base::Process::Current().Pid();
- scoped_refptr<internal::HandleAttachmentWin> attachment(
- new internal::HandleAttachmentWin(handle, HandleWin::DUPLICATE));
- AttachmentBrokerMsg_WinHandleHasBeenDuplicated msg(
- attachment->GetWireFormat(destination));
- AttachmentBrokerUnprivilegedWin attachment_broker;
- EXPECT_TRUE(attachment_broker.OnMessageReceived(msg));
- EXPECT_EQ(1u, attachment_broker.attachments_.size());
-
- scoped_refptr<BrokerableAttachment> received_attachment =
- attachment_broker.attachments_.front();
- EXPECT_EQ(BrokerableAttachment::WIN_HANDLE,
- received_attachment->GetBrokerableType());
- internal::HandleAttachmentWin* received_handle_attachment =
- static_cast<internal::HandleAttachmentWin*>(received_attachment.get());
- EXPECT_EQ(handle, received_handle_attachment->get_handle());
-}
-
-TEST(AttachmentBrokerUnprivilegedWinTest, ReceiveInvalidMessage) {
- HANDLE handle = LongToHandle(8);
- base::ProcessId destination = base::Process::Current().Pid() + 1;
- scoped_refptr<internal::HandleAttachmentWin> attachment(
- new internal::HandleAttachmentWin(handle, HandleWin::DUPLICATE));
- AttachmentBrokerMsg_WinHandleHasBeenDuplicated msg(
- attachment->GetWireFormat(destination));
- AttachmentBrokerUnprivilegedWin attachment_broker;
- EXPECT_TRUE(attachment_broker.OnMessageReceived(msg));
- EXPECT_EQ(0u, attachment_broker.attachments_.size());
-}
-
-} // namespace IPC
« no previous file with comments | « ipc/attachment_broker_privileged_win_unittest.cc ('k') | ipc/handle_attachment_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698