Commit 5570dc0c authored by morrita's avatar morrita Committed by Commit bot

Mojo: add mojo_message_pipe_perftests

This is analogous to ipc_perftests. It measures roundtrip
time with various message sizes.

TEST=message_pipe_perftest.cc
R=viettrungluu@chromium.org
BUG=none

Review URL: https://codereview.chromium.org/501983003

Cr-Commit-Position: refs/heads/master@{#292024}
parent 7eef1763
...@@ -34,6 +34,7 @@ group("tests") { ...@@ -34,6 +34,7 @@ group("tests") {
"//mojo/public/js/bindings/tests:mojo_js_unittests", "//mojo/public/js/bindings/tests:mojo_js_unittests",
"//mojo/services/public/cpp/surfaces/tests:mojo_surfaces_lib_unittests", "//mojo/services/public/cpp/surfaces/tests:mojo_surfaces_lib_unittests",
"//mojo/shell:mojo_shell_tests", "//mojo/shell:mojo_shell_tests",
"//mojo/system:mojo_message_pipe_perftests",
"//mojo/system:mojo_system_unittests", "//mojo/system:mojo_system_unittests",
] ]
......
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
'mojo_js_bindings', 'mojo_js_bindings',
'mojo_js_unittests', 'mojo_js_unittests',
'mojo_message_generator', 'mojo_message_generator',
'mojo_message_pipe_perftests',
'mojo_public_application_unittests', 'mojo_public_application_unittests',
'mojo_public_test_utils', 'mojo_public_test_utils',
'mojo_public_bindings_unittests', 'mojo_public_bindings_unittests',
...@@ -207,6 +208,8 @@ ...@@ -207,6 +208,8 @@
'system/local_data_pipe_unittest.cc', 'system/local_data_pipe_unittest.cc',
'system/memory_unittest.cc', 'system/memory_unittest.cc',
'system/message_pipe_dispatcher_unittest.cc', 'system/message_pipe_dispatcher_unittest.cc',
'system/message_pipe_test_utils.h',
'system/message_pipe_test_utils.cc',
'system/message_pipe_unittest.cc', 'system/message_pipe_unittest.cc',
'system/multiprocess_message_pipe_unittest.cc', 'system/multiprocess_message_pipe_unittest.cc',
'system/options_validation_unittest.cc', 'system/options_validation_unittest.cc',
...@@ -224,6 +227,27 @@ ...@@ -224,6 +227,27 @@
'system/waiter_unittest.cc', 'system/waiter_unittest.cc',
], ],
}, },
{
# GN version: //mojo/system:mojo_message_pipe_perftests
'target_name': 'mojo_message_pipe_perftests',
'type': 'executable',
'dependencies': [
'../base/base.gyp:base',
'../base/base.gyp:test_support_base',
'../base/base.gyp:test_support_perf',
'../testing/gtest.gyp:gtest',
'mojo_common_test_support',
'mojo_environment_chromium',
'mojo_system_impl',
],
'sources': [
'system/message_pipe_perftest.cc',
'system/message_pipe_test_utils.h',
'system/message_pipe_test_utils.cc',
'system/test_utils.cc',
'system/test_utils.h',
],
},
{ {
# GN version: //mojo/common/test:test_support_impl # GN version: //mojo/common/test:test_support_impl
'target_name': 'mojo_test_support_impl', 'target_name': 'mojo_test_support_impl',
......
...@@ -103,6 +103,8 @@ test("mojo_system_unittests") { ...@@ -103,6 +103,8 @@ test("mojo_system_unittests") {
"local_data_pipe_unittest.cc", "local_data_pipe_unittest.cc",
"memory_unittest.cc", "memory_unittest.cc",
"message_pipe_dispatcher_unittest.cc", "message_pipe_dispatcher_unittest.cc",
"message_pipe_test_utils.h",
"message_pipe_test_utils.cc",
"message_pipe_unittest.cc", "message_pipe_unittest.cc",
"multiprocess_message_pipe_unittest.cc", "multiprocess_message_pipe_unittest.cc",
"options_validation_unittest.cc", "options_validation_unittest.cc",
...@@ -120,3 +122,23 @@ test("mojo_system_unittests") { ...@@ -120,3 +122,23 @@ test("mojo_system_unittests") {
"waiter_unittest.cc", "waiter_unittest.cc",
] ]
} }
# GYP version: mojo/mojo_base.gyp:mojo_message_pipe_perftests
test("mojo_message_pipe_perftests") {
deps = [
":system",
"//base",
"//base/test:test_support",
"//base/test:test_support_perf",
"//mojo/common/test:test_support",
"//testing/gtest",
]
sources = [
"message_pipe_perftest.cc",
"message_pipe_test_utils.h",
"message_pipe_test_utils.cc",
"test_utils.cc",
"test_utils.h",
]
}
// Copyright 2014 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 <stdint.h>
#include <stdio.h>
#include <string.h>
#include <string>
#include <vector>
#include "base/bind.h"
#include "base/location.h"
#include "base/logging.h"
#include "base/macros.h"
#include "base/pickle.h"
#include "base/strings/stringprintf.h"
#include "base/test/perf_time_logger.h"
#include "base/time/time.h"
#include "mojo/common/test/test_utils.h"
#include "mojo/embedder/scoped_platform_handle.h"
#include "mojo/system/channel.h"
#include "mojo/system/local_message_pipe_endpoint.h"
#include "mojo/system/message_pipe.h"
#include "mojo/system/message_pipe_test_utils.h"
#include "mojo/system/proxy_message_pipe_endpoint.h"
#include "mojo/system/raw_channel.h"
#include "mojo/system/test_utils.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace mojo {
namespace system {
namespace {
class MultiprocessMessagePipePerfTest
: public test::MultiprocessMessagePipeTestBase {
public:
MultiprocessMessagePipePerfTest() : message_count_(0), message_size_(0) {}
void SetUpMeasurement(int message_count, size_t message_size) {
message_count_ = message_count;
message_size_ = message_size;
payload_ = Pickle();
payload_.WriteString(std::string(message_size, '*'));
read_buffer_.resize(message_size * 2);
}
protected:
void WriteWaitThenRead(scoped_refptr<MessagePipe> mp) {
CHECK_EQ(mp->WriteMessage(0,
UserPointer<const void>(payload_.data()),
static_cast<uint32_t>(payload_.size()),
NULL,
MOJO_WRITE_MESSAGE_FLAG_NONE),
MOJO_RESULT_OK);
HandleSignalsState hss;
CHECK_EQ(test::WaitIfNecessary(mp, MOJO_HANDLE_SIGNAL_READABLE, &hss),
MOJO_RESULT_OK);
uint32_t read_buffer_size = static_cast<uint32_t>(read_buffer_.size());
CHECK_EQ(mp->ReadMessage(0,
UserPointer<void>(&read_buffer_[0]),
MakeUserPointer(&read_buffer_size),
NULL,
NULL,
MOJO_READ_MESSAGE_FLAG_NONE),
MOJO_RESULT_OK);
CHECK_EQ(read_buffer_size, static_cast<uint32_t>(payload_.size()));
}
void SendQuitMessage(scoped_refptr<MessagePipe> mp) {
CHECK_EQ(mp->WriteMessage(0,
UserPointer<const void>(""),
0,
NULL,
MOJO_WRITE_MESSAGE_FLAG_NONE),
MOJO_RESULT_OK);
}
void Measure(scoped_refptr<MessagePipe> mp) {
// Have one ping-pong to ensure channel being established.
WriteWaitThenRead(mp);
std::string test_name =
base::StringPrintf("IPC_Perf_%dx_%u",
message_count_,
static_cast<unsigned>(message_size_));
base::PerfTimeLogger logger(test_name.c_str());
for (int i = 0; i < message_count_; ++i)
WriteWaitThenRead(mp);
logger.Done();
}
private:
int message_count_;
size_t message_size_;
Pickle payload_;
std::string read_buffer_;
scoped_ptr<base::PerfTimeLogger> perf_logger_;
};
// For each message received, sends a reply message with the same contents
// repeated twice, until the other end is closed or it receives "quitquitquit"
// (which it doesn't reply to). It'll return the number of messages received,
// not including any "quitquitquit" message, modulo 100.
MOJO_MULTIPROCESS_TEST_CHILD_MAIN(PingPongClient) {
embedder::SimplePlatformSupport platform_support;
test::ChannelThread channel_thread(&platform_support);
embedder::ScopedPlatformHandle client_platform_handle =
mojo::test::MultiprocessTestHelper::client_platform_handle.Pass();
CHECK(client_platform_handle.is_valid());
scoped_refptr<MessagePipe> mp(new MessagePipe(
scoped_ptr<MessagePipeEndpoint>(new LocalMessagePipeEndpoint()),
scoped_ptr<MessagePipeEndpoint>(new ProxyMessagePipeEndpoint())));
channel_thread.Start(client_platform_handle.Pass(), mp);
std::string buffer(1000000, '\0');
int rv = 0;
while (true) {
// Wait for our end of the message pipe to be readable.
HandleSignalsState hss;
MojoResult result =
test::WaitIfNecessary(mp, MOJO_HANDLE_SIGNAL_READABLE, &hss);
if (result != MOJO_RESULT_OK) {
rv = result;
break;
}
uint32_t read_size = static_cast<uint32_t>(buffer.size());
CHECK_EQ(mp->ReadMessage(0,
UserPointer<void>(&buffer[0]),
MakeUserPointer(&read_size),
NULL,
NULL,
MOJO_READ_MESSAGE_FLAG_NONE),
MOJO_RESULT_OK);
// Empty message indicates quitting
if (0 == read_size)
break;
CHECK_EQ(mp->WriteMessage(0,
UserPointer<const void>(&buffer[0]),
static_cast<uint32_t>(read_size),
NULL,
MOJO_WRITE_MESSAGE_FLAG_NONE),
MOJO_RESULT_OK);
}
mp->Close(0);
return rv;
}
// Repeatedly sends messages as previous one got replied by the child.
// Waits for the child to close its end before quitting once specified
// number of messages has been sent.
TEST_F(MultiprocessMessagePipePerfTest, PingPong) {
helper()->StartChild("PingPongClient");
scoped_refptr<MessagePipe> mp(new MessagePipe(
scoped_ptr<MessagePipeEndpoint>(new LocalMessagePipeEndpoint()),
scoped_ptr<MessagePipeEndpoint>(new ProxyMessagePipeEndpoint())));
Init(mp);
// This values are set to align with one at ipc_pertests.cc for comparison.
const size_t kMsgSize[5] = {12, 144, 1728, 20736, 248832};
const int kMessageCount[5] = {50000, 50000, 50000, 12000, 1000};
for (size_t i = 0; i < 5; i++) {
SetUpMeasurement(kMessageCount[i], kMsgSize[i]);
Measure(mp);
}
SendQuitMessage(mp);
mp->Close(0);
EXPECT_EQ(0, helper()->WaitForChildShutdown());
}
} // namespace
} // namespace system
} // namespace mojo
// Copyright 2014 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 "mojo/system/message_pipe_test_utils.h"
#include "base/bind.h"
#include "base/threading/platform_thread.h" // For |Sleep()|.
#include "mojo/system/waiter.h"
namespace mojo {
namespace system {
namespace test {
MojoResult WaitIfNecessary(scoped_refptr<MessagePipe> mp,
MojoHandleSignals signals,
HandleSignalsState* signals_state) {
Waiter waiter;
waiter.Init();
MojoResult add_result = mp->AddWaiter(0, &waiter, signals, 0, signals_state);
if (add_result != MOJO_RESULT_OK) {
return (add_result == MOJO_RESULT_ALREADY_EXISTS) ? MOJO_RESULT_OK
: add_result;
}
MojoResult wait_result = waiter.Wait(MOJO_DEADLINE_INDEFINITE, NULL);
mp->RemoveWaiter(0, &waiter, signals_state);
return wait_result;
}
ChannelThread::ChannelThread(embedder::PlatformSupport* platform_support)
: platform_support_(platform_support),
test_io_thread_(test::TestIOThread::kManualStart) {
}
ChannelThread::~ChannelThread() {
Stop();
}
void ChannelThread::Start(embedder::ScopedPlatformHandle platform_handle,
scoped_refptr<MessagePipe> message_pipe) {
test_io_thread_.Start();
test_io_thread_.PostTaskAndWait(
FROM_HERE,
base::Bind(&ChannelThread::InitChannelOnIOThread,
base::Unretained(this),
base::Passed(&platform_handle),
message_pipe));
}
void ChannelThread::Stop() {
if (channel_.get()) {
// Hack to flush write buffers before quitting.
// TODO(vtl): Remove this once |Channel| has a
// |FlushWriteBufferAndShutdown()| (or whatever).
while (!channel_->IsWriteBufferEmpty())
base::PlatformThread::Sleep(base::TimeDelta::FromMilliseconds(20));
test_io_thread_.PostTaskAndWait(
FROM_HERE,
base::Bind(&ChannelThread::ShutdownChannelOnIOThread,
base::Unretained(this)));
}
test_io_thread_.Stop();
}
void ChannelThread::InitChannelOnIOThread(
embedder::ScopedPlatformHandle platform_handle,
scoped_refptr<MessagePipe> message_pipe) {
CHECK_EQ(base::MessageLoop::current(), test_io_thread_.message_loop());
CHECK(platform_handle.is_valid());
// Create and initialize |Channel|.
channel_ = new Channel(platform_support_);
CHECK(channel_->Init(RawChannel::Create(platform_handle.Pass())));
// Attach the message pipe endpoint.
// Note: On the "server" (parent process) side, we need not attach the
// message pipe endpoint immediately. However, on the "client" (child
// process) side, this *must* be done here -- otherwise, the |Channel| may
// receive/process messages (which it can do as soon as it's hooked up to
// the IO thread message loop, and that message loop runs) before the
// message pipe endpoint is attached.
CHECK_EQ(channel_->AttachMessagePipeEndpoint(message_pipe, 1),
Channel::kBootstrapEndpointId);
CHECK(channel_->RunMessagePipeEndpoint(Channel::kBootstrapEndpointId,
Channel::kBootstrapEndpointId));
}
void ChannelThread::ShutdownChannelOnIOThread() {
CHECK(channel_.get());
channel_->Shutdown();
channel_ = NULL;
}
MultiprocessMessagePipeTestBase::MultiprocessMessagePipeTestBase()
: channel_thread_(&platform_support_) {
}
MultiprocessMessagePipeTestBase::~MultiprocessMessagePipeTestBase() {
}
void MultiprocessMessagePipeTestBase::Init(scoped_refptr<MessagePipe> mp) {
channel_thread_.Start(helper_.server_platform_handle.Pass(), mp);
}
} // namespace test
} // namespace system
} // namespace mojo
// Copyright 2014 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.
#ifndef MOJO_SYSTEM_MESSAGE_PIPE_TEST_UTILS_H_
#define MOJO_SYSTEM_MESSAGE_PIPE_TEST_UTILS_H_
#include "mojo/common/test/multiprocess_test_helper.h"
#include "mojo/embedder/simple_platform_support.h"
#include "mojo/system/channel.h"
#include "mojo/system/message_pipe.h"
#include "mojo/system/test_utils.h"
namespace mojo {
namespace system {
namespace test {
MojoResult WaitIfNecessary(scoped_refptr<MessagePipe> mp,
MojoHandleSignals signals,
HandleSignalsState* signals_state);
class ChannelThread {
public:
explicit ChannelThread(embedder::PlatformSupport* platform_support);
~ChannelThread();
void Start(embedder::ScopedPlatformHandle platform_handle,
scoped_refptr<MessagePipe> message_pipe);
void Stop();
private:
void InitChannelOnIOThread(embedder::ScopedPlatformHandle platform_handle,
scoped_refptr<MessagePipe> message_pipe);
void ShutdownChannelOnIOThread();
embedder::PlatformSupport* const platform_support_;
TestIOThread test_io_thread_;
scoped_refptr<Channel> channel_;
DISALLOW_COPY_AND_ASSIGN(ChannelThread);
};
class MultiprocessMessagePipeTestBase : public testing::Test {
public:
MultiprocessMessagePipeTestBase();
virtual ~MultiprocessMessagePipeTestBase();
protected:
void Init(scoped_refptr<MessagePipe> mp);
embedder::PlatformSupport* platform_support() { return &platform_support_; }
mojo::test::MultiprocessTestHelper* helper() { return &helper_; }
private:
embedder::SimplePlatformSupport platform_support_;
ChannelThread channel_thread_;
mojo::test::MultiprocessTestHelper helper_;
DISALLOW_COPY_AND_ASSIGN(MultiprocessMessagePipeTestBase);
};
} // namespace test
} // namespace system
} // namespace mojo
#endif // MOJO_SYSTEM_MESSAGE_PIPE_TEST_HELPER_H_
...@@ -17,134 +17,26 @@ ...@@ -17,134 +17,26 @@
#include "base/location.h" #include "base/location.h"
#include "base/logging.h" #include "base/logging.h"
#include "base/macros.h" #include "base/macros.h"
#include "base/threading/platform_thread.h" // For |Sleep()|.
#include "build/build_config.h" // TODO(vtl): Remove this. #include "build/build_config.h" // TODO(vtl): Remove this.
#include "mojo/common/test/multiprocess_test_helper.h"
#include "mojo/common/test/test_utils.h" #include "mojo/common/test/test_utils.h"
#include "mojo/embedder/platform_shared_buffer.h" #include "mojo/embedder/platform_shared_buffer.h"
#include "mojo/embedder/scoped_platform_handle.h" #include "mojo/embedder/scoped_platform_handle.h"
#include "mojo/embedder/simple_platform_support.h"
#include "mojo/system/channel.h" #include "mojo/system/channel.h"
#include "mojo/system/dispatcher.h" #include "mojo/system/dispatcher.h"
#include "mojo/system/message_pipe.h" #include "mojo/system/message_pipe.h"
#include "mojo/system/message_pipe_test_utils.h"
#include "mojo/system/platform_handle_dispatcher.h" #include "mojo/system/platform_handle_dispatcher.h"
#include "mojo/system/raw_channel.h" #include "mojo/system/raw_channel.h"
#include "mojo/system/shared_buffer_dispatcher.h" #include "mojo/system/shared_buffer_dispatcher.h"
#include "mojo/system/test_utils.h" #include "mojo/system/test_utils.h"
#include "mojo/system/waiter.h"
#include "testing/gtest/include/gtest/gtest.h" #include "testing/gtest/include/gtest/gtest.h"
namespace mojo { namespace mojo {
namespace system { namespace system {
namespace { namespace {
class ChannelThread { class MultiprocessMessagePipeTest
public: : public test::MultiprocessMessagePipeTestBase {};
explicit ChannelThread(embedder::PlatformSupport* platform_support)
: platform_support_(platform_support),
test_io_thread_(test::TestIOThread::kManualStart) {}
~ChannelThread() { Stop(); }
void Start(embedder::ScopedPlatformHandle platform_handle,
scoped_refptr<MessagePipe> message_pipe) {
test_io_thread_.Start();
test_io_thread_.PostTaskAndWait(
FROM_HERE,
base::Bind(&ChannelThread::InitChannelOnIOThread,
base::Unretained(this),
base::Passed(&platform_handle),
message_pipe));
}
void Stop() {
if (channel_.get()) {
// Hack to flush write buffers before quitting.
// TODO(vtl): Remove this once |Channel| has a
// |FlushWriteBufferAndShutdown()| (or whatever).
while (!channel_->IsWriteBufferEmpty())
base::PlatformThread::Sleep(base::TimeDelta::FromMilliseconds(20));
test_io_thread_.PostTaskAndWait(
FROM_HERE,
base::Bind(&ChannelThread::ShutdownChannelOnIOThread,
base::Unretained(this)));
}
test_io_thread_.Stop();
}
private:
void InitChannelOnIOThread(embedder::ScopedPlatformHandle platform_handle,
scoped_refptr<MessagePipe> message_pipe) {
CHECK_EQ(base::MessageLoop::current(), test_io_thread_.message_loop());
CHECK(platform_handle.is_valid());
// Create and initialize |Channel|.
channel_ = new Channel(platform_support_);
CHECK(channel_->Init(RawChannel::Create(platform_handle.Pass())));
// Attach the message pipe endpoint.
// Note: On the "server" (parent process) side, we need not attach the
// message pipe endpoint immediately. However, on the "client" (child
// process) side, this *must* be done here -- otherwise, the |Channel| may
// receive/process messages (which it can do as soon as it's hooked up to
// the IO thread message loop, and that message loop runs) before the
// message pipe endpoint is attached.
CHECK_EQ(channel_->AttachMessagePipeEndpoint(message_pipe, 1),
Channel::kBootstrapEndpointId);
CHECK(channel_->RunMessagePipeEndpoint(Channel::kBootstrapEndpointId,
Channel::kBootstrapEndpointId));
}
void ShutdownChannelOnIOThread() {
CHECK(channel_.get());
channel_->Shutdown();
channel_ = NULL;
}
embedder::PlatformSupport* const platform_support_;
test::TestIOThread test_io_thread_;
scoped_refptr<Channel> channel_;
DISALLOW_COPY_AND_ASSIGN(ChannelThread);
};
class MultiprocessMessagePipeTest : public testing::Test {
public:
MultiprocessMessagePipeTest() : channel_thread_(&platform_support_) {}
virtual ~MultiprocessMessagePipeTest() {}
protected:
void Init(scoped_refptr<MessagePipe> mp) {
channel_thread_.Start(helper_.server_platform_handle.Pass(), mp);
}
embedder::PlatformSupport* platform_support() { return &platform_support_; }
mojo::test::MultiprocessTestHelper* helper() { return &helper_; }
private:
embedder::SimplePlatformSupport platform_support_;
ChannelThread channel_thread_;
mojo::test::MultiprocessTestHelper helper_;
DISALLOW_COPY_AND_ASSIGN(MultiprocessMessagePipeTest);
};
MojoResult WaitIfNecessary(scoped_refptr<MessagePipe> mp,
MojoHandleSignals signals,
HandleSignalsState* signals_state) {
Waiter waiter;
waiter.Init();
MojoResult add_result = mp->AddWaiter(0, &waiter, signals, 0, signals_state);
if (add_result != MOJO_RESULT_OK) {
return (add_result == MOJO_RESULT_ALREADY_EXISTS) ? MOJO_RESULT_OK
: add_result;
}
MojoResult wait_result = waiter.Wait(MOJO_DEADLINE_INDEFINITE, NULL);
mp->RemoveWaiter(0, &waiter, signals_state);
return wait_result;
}
// For each message received, sends a reply message with the same contents // For each message received, sends a reply message with the same contents
// repeated twice, until the other end is closed or it receives "quitquitquit" // repeated twice, until the other end is closed or it receives "quitquitquit"
...@@ -152,7 +44,7 @@ MojoResult WaitIfNecessary(scoped_refptr<MessagePipe> mp, ...@@ -152,7 +44,7 @@ MojoResult WaitIfNecessary(scoped_refptr<MessagePipe> mp,
// not including any "quitquitquit" message, modulo 100. // not including any "quitquitquit" message, modulo 100.
MOJO_MULTIPROCESS_TEST_CHILD_MAIN(EchoEcho) { MOJO_MULTIPROCESS_TEST_CHILD_MAIN(EchoEcho) {
embedder::SimplePlatformSupport platform_support; embedder::SimplePlatformSupport platform_support;
ChannelThread channel_thread(&platform_support); test::ChannelThread channel_thread(&platform_support);
embedder::ScopedPlatformHandle client_platform_handle = embedder::ScopedPlatformHandle client_platform_handle =
mojo::test::MultiprocessTestHelper::client_platform_handle.Pass(); mojo::test::MultiprocessTestHelper::client_platform_handle.Pass();
CHECK(client_platform_handle.is_valid()); CHECK(client_platform_handle.is_valid());
...@@ -164,7 +56,8 @@ MOJO_MULTIPROCESS_TEST_CHILD_MAIN(EchoEcho) { ...@@ -164,7 +56,8 @@ MOJO_MULTIPROCESS_TEST_CHILD_MAIN(EchoEcho) {
for (;; rv = (rv + 1) % 100) { for (;; rv = (rv + 1) % 100) {
// Wait for our end of the message pipe to be readable. // Wait for our end of the message pipe to be readable.
HandleSignalsState hss; HandleSignalsState hss;
MojoResult result = WaitIfNecessary(mp, MOJO_HANDLE_SIGNAL_READABLE, &hss); MojoResult result =
test::WaitIfNecessary(mp, MOJO_HANDLE_SIGNAL_READABLE, &hss);
if (result != MOJO_RESULT_OK) { if (result != MOJO_RESULT_OK) {
// It was closed, probably. // It was closed, probably.
CHECK_EQ(result, MOJO_RESULT_FAILED_PRECONDITION); CHECK_EQ(result, MOJO_RESULT_FAILED_PRECONDITION);
...@@ -223,7 +116,7 @@ TEST_F(MultiprocessMessagePipeTest, Basic) { ...@@ -223,7 +116,7 @@ TEST_F(MultiprocessMessagePipeTest, Basic) {
HandleSignalsState hss; HandleSignalsState hss;
EXPECT_EQ(MOJO_RESULT_OK, EXPECT_EQ(MOJO_RESULT_OK,
WaitIfNecessary(mp, MOJO_HANDLE_SIGNAL_READABLE, &hss)); test::WaitIfNecessary(mp, MOJO_HANDLE_SIGNAL_READABLE, &hss));
// The child may or may not have closed its end of the message pipe and died // The child may or may not have closed its end of the message pipe and died
// (and we may or may not know it yet), so our end may or may not appear as // (and we may or may not know it yet), so our end may or may not appear as
// writable. // writable.
...@@ -279,7 +172,7 @@ TEST_F(MultiprocessMessagePipeTest, QueueMessages) { ...@@ -279,7 +172,7 @@ TEST_F(MultiprocessMessagePipeTest, QueueMessages) {
for (size_t i = 0; i < kNumMessages; i++) { for (size_t i = 0; i < kNumMessages; i++) {
HandleSignalsState hss; HandleSignalsState hss;
EXPECT_EQ(MOJO_RESULT_OK, EXPECT_EQ(MOJO_RESULT_OK,
WaitIfNecessary(mp, MOJO_HANDLE_SIGNAL_READABLE, &hss)); test::WaitIfNecessary(mp, MOJO_HANDLE_SIGNAL_READABLE, &hss));
// The child may or may not have closed its end of the message pipe and died // The child may or may not have closed its end of the message pipe and died
// (and we may or may not know it yet), so our end may or may not appear as // (and we may or may not know it yet), so our end may or may not appear as
// writable. // writable.
...@@ -304,7 +197,7 @@ TEST_F(MultiprocessMessagePipeTest, QueueMessages) { ...@@ -304,7 +197,7 @@ TEST_F(MultiprocessMessagePipeTest, QueueMessages) {
// "quitquitquit"). // "quitquitquit").
HandleSignalsState hss; HandleSignalsState hss;
EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION, EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION,
WaitIfNecessary(mp, MOJO_HANDLE_SIGNAL_READABLE, &hss)); test::WaitIfNecessary(mp, MOJO_HANDLE_SIGNAL_READABLE, &hss));
EXPECT_EQ(0u, hss.satisfied_signals); EXPECT_EQ(0u, hss.satisfied_signals);
EXPECT_EQ(0u, hss.satisfiable_signals); EXPECT_EQ(0u, hss.satisfiable_signals);
...@@ -316,7 +209,7 @@ TEST_F(MultiprocessMessagePipeTest, QueueMessages) { ...@@ -316,7 +209,7 @@ TEST_F(MultiprocessMessagePipeTest, QueueMessages) {
MOJO_MULTIPROCESS_TEST_CHILD_MAIN(CheckSharedBuffer) { MOJO_MULTIPROCESS_TEST_CHILD_MAIN(CheckSharedBuffer) {
embedder::SimplePlatformSupport platform_support; embedder::SimplePlatformSupport platform_support;
ChannelThread channel_thread(&platform_support); test::ChannelThread channel_thread(&platform_support);
embedder::ScopedPlatformHandle client_platform_handle = embedder::ScopedPlatformHandle client_platform_handle =
mojo::test::MultiprocessTestHelper::client_platform_handle.Pass(); mojo::test::MultiprocessTestHelper::client_platform_handle.Pass();
CHECK(client_platform_handle.is_valid()); CHECK(client_platform_handle.is_valid());
...@@ -325,7 +218,7 @@ MOJO_MULTIPROCESS_TEST_CHILD_MAIN(CheckSharedBuffer) { ...@@ -325,7 +218,7 @@ MOJO_MULTIPROCESS_TEST_CHILD_MAIN(CheckSharedBuffer) {
// Wait for the first message from our parent. // Wait for the first message from our parent.
HandleSignalsState hss; HandleSignalsState hss;
CHECK_EQ(WaitIfNecessary(mp, MOJO_HANDLE_SIGNAL_READABLE, &hss), CHECK_EQ(test::WaitIfNecessary(mp, MOJO_HANDLE_SIGNAL_READABLE, &hss),
MOJO_RESULT_OK); MOJO_RESULT_OK);
// In this test, the parent definitely doesn't close its end of the message // In this test, the parent definitely doesn't close its end of the message
// pipe before we do. // pipe before we do.
...@@ -381,7 +274,7 @@ MOJO_MULTIPROCESS_TEST_CHILD_MAIN(CheckSharedBuffer) { ...@@ -381,7 +274,7 @@ MOJO_MULTIPROCESS_TEST_CHILD_MAIN(CheckSharedBuffer) {
// Now wait for our parent to send us a message. // Now wait for our parent to send us a message.
hss = HandleSignalsState(); hss = HandleSignalsState();
CHECK_EQ(WaitIfNecessary(mp, MOJO_HANDLE_SIGNAL_READABLE, &hss), CHECK_EQ(test::WaitIfNecessary(mp, MOJO_HANDLE_SIGNAL_READABLE, &hss),
MOJO_RESULT_OK); MOJO_RESULT_OK);
CHECK_EQ(hss.satisfied_signals, CHECK_EQ(hss.satisfied_signals,
MOJO_HANDLE_SIGNAL_READABLE | MOJO_HANDLE_SIGNAL_WRITABLE); MOJO_HANDLE_SIGNAL_READABLE | MOJO_HANDLE_SIGNAL_WRITABLE);
...@@ -462,7 +355,7 @@ TEST_F(MultiprocessMessagePipeTest, MAYBE_SharedBufferPassing) { ...@@ -462,7 +355,7 @@ TEST_F(MultiprocessMessagePipeTest, MAYBE_SharedBufferPassing) {
// Wait for a message from the child. // Wait for a message from the child.
HandleSignalsState hss; HandleSignalsState hss;
EXPECT_EQ(MOJO_RESULT_OK, EXPECT_EQ(MOJO_RESULT_OK,
WaitIfNecessary(mp, MOJO_HANDLE_SIGNAL_READABLE, &hss)); test::WaitIfNecessary(mp, MOJO_HANDLE_SIGNAL_READABLE, &hss));
EXPECT_TRUE((hss.satisfied_signals & MOJO_HANDLE_SIGNAL_READABLE)); EXPECT_TRUE((hss.satisfied_signals & MOJO_HANDLE_SIGNAL_READABLE));
EXPECT_TRUE((hss.satisfiable_signals & MOJO_HANDLE_SIGNAL_READABLE)); EXPECT_TRUE((hss.satisfiable_signals & MOJO_HANDLE_SIGNAL_READABLE));
...@@ -499,7 +392,7 @@ TEST_F(MultiprocessMessagePipeTest, MAYBE_SharedBufferPassing) { ...@@ -499,7 +392,7 @@ TEST_F(MultiprocessMessagePipeTest, MAYBE_SharedBufferPassing) {
// Wait for |mp| to become readable, which should fail. // Wait for |mp| to become readable, which should fail.
hss = HandleSignalsState(); hss = HandleSignalsState();
EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION, EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION,
WaitIfNecessary(mp, MOJO_HANDLE_SIGNAL_READABLE, &hss)); test::WaitIfNecessary(mp, MOJO_HANDLE_SIGNAL_READABLE, &hss));
EXPECT_EQ(0u, hss.satisfied_signals); EXPECT_EQ(0u, hss.satisfied_signals);
EXPECT_EQ(0u, hss.satisfiable_signals); EXPECT_EQ(0u, hss.satisfiable_signals);
...@@ -510,7 +403,7 @@ TEST_F(MultiprocessMessagePipeTest, MAYBE_SharedBufferPassing) { ...@@ -510,7 +403,7 @@ TEST_F(MultiprocessMessagePipeTest, MAYBE_SharedBufferPassing) {
MOJO_MULTIPROCESS_TEST_CHILD_MAIN(CheckPlatformHandleFile) { MOJO_MULTIPROCESS_TEST_CHILD_MAIN(CheckPlatformHandleFile) {
embedder::SimplePlatformSupport platform_support; embedder::SimplePlatformSupport platform_support;
ChannelThread channel_thread(&platform_support); test::ChannelThread channel_thread(&platform_support);
embedder::ScopedPlatformHandle client_platform_handle = embedder::ScopedPlatformHandle client_platform_handle =
mojo::test::MultiprocessTestHelper::client_platform_handle.Pass(); mojo::test::MultiprocessTestHelper::client_platform_handle.Pass();
CHECK(client_platform_handle.is_valid()); CHECK(client_platform_handle.is_valid());
...@@ -518,7 +411,7 @@ MOJO_MULTIPROCESS_TEST_CHILD_MAIN(CheckPlatformHandleFile) { ...@@ -518,7 +411,7 @@ MOJO_MULTIPROCESS_TEST_CHILD_MAIN(CheckPlatformHandleFile) {
channel_thread.Start(client_platform_handle.Pass(), mp); channel_thread.Start(client_platform_handle.Pass(), mp);
HandleSignalsState hss; HandleSignalsState hss;
CHECK_EQ(WaitIfNecessary(mp, MOJO_HANDLE_SIGNAL_READABLE, &hss), CHECK_EQ(test::WaitIfNecessary(mp, MOJO_HANDLE_SIGNAL_READABLE, &hss),
MOJO_RESULT_OK); MOJO_RESULT_OK);
CHECK_EQ(hss.satisfied_signals, CHECK_EQ(hss.satisfied_signals,
MOJO_HANDLE_SIGNAL_READABLE | MOJO_HANDLE_SIGNAL_WRITABLE); MOJO_HANDLE_SIGNAL_READABLE | MOJO_HANDLE_SIGNAL_WRITABLE);
...@@ -609,7 +502,7 @@ TEST_F(MultiprocessMessagePipeTest, MAYBE_PlatformHandlePassing) { ...@@ -609,7 +502,7 @@ TEST_F(MultiprocessMessagePipeTest, MAYBE_PlatformHandlePassing) {
// Wait for it to become readable, which should fail. // Wait for it to become readable, which should fail.
HandleSignalsState hss; HandleSignalsState hss;
EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION, EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION,
WaitIfNecessary(mp, MOJO_HANDLE_SIGNAL_READABLE, &hss)); test::WaitIfNecessary(mp, MOJO_HANDLE_SIGNAL_READABLE, &hss));
EXPECT_EQ(0u, hss.satisfied_signals); EXPECT_EQ(0u, hss.satisfied_signals);
EXPECT_EQ(0u, hss.satisfiable_signals); EXPECT_EQ(0u, hss.satisfiable_signals);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment