blob: 81dcd70a9b9c3c97115b1a72b671abc02e246d16 [file] [log] [blame]
morrita373af03b2014-09-09 19:35:241// Copyright 2014 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.
4
5#include "base/lazy_instance.h"
6#include "ipc/ipc_perftest_support.h"
7#include "ipc/mojo/ipc_channel_mojo.h"
morrita54f6f80c2014-09-23 21:16:008#include "ipc/mojo/ipc_channel_mojo_host.h"
morrita373af03b2014-09-09 19:35:249#include "mojo/embedder/test_embedder.h"
10
11namespace {
12
13// This is needed because we rely on //base/test:test_support_perf and
14// it provides main() which doesn't have Mojo initialization. We need
15// some way to call InitWithSimplePlatformSupport() only once before
16// using Mojo.
17struct MojoInitialier {
18 MojoInitialier() {
19 mojo::embedder::test::InitWithSimplePlatformSupport();
20 }
21};
22
23base::LazyInstance<MojoInitialier> g_mojo_initializer
24 = LAZY_INSTANCE_INITIALIZER;
25
26class MojoChannelPerfTest : public IPC::test::IPCChannelPerfTestBase {
27public:
28 typedef IPC::test::IPCChannelPerfTestBase Super;
29
30 MojoChannelPerfTest();
31
32 virtual scoped_ptr<IPC::ChannelFactory> CreateChannelFactory(
33 const IPC::ChannelHandle& handle,
34 base::TaskRunner* runner) OVERRIDE {
morrita54f6f80c2014-09-23 21:16:0035 host_.reset(new IPC::ChannelMojoHost(task_runner()));
morritae9453ea2014-09-26 03:20:4836 return IPC::ChannelMojo::CreateServerFactory(host_->channel_delegate(),
37 handle);
morrita54f6f80c2014-09-23 21:16:0038 }
39
40 virtual bool DidStartClient() OVERRIDE {
41 bool ok = IPCTestBase::DidStartClient();
42 DCHECK(ok);
43 host_->OnClientLaunched(client_process());
44 return ok;
morrita373af03b2014-09-09 19:35:2445 }
46
47 void set_io_thread_task_runner(base::TaskRunner* runner) {
48 io_thread_task_runner_ = runner;
49 }
50
51 private:
52 base::TaskRunner* io_thread_task_runner_;
morrita54f6f80c2014-09-23 21:16:0053 scoped_ptr<IPC::ChannelMojoHost> host_;
morrita373af03b2014-09-09 19:35:2454};
55
56MojoChannelPerfTest::MojoChannelPerfTest()
57 : io_thread_task_runner_() {
58 g_mojo_initializer.Get();
59}
60
61
62TEST_F(MojoChannelPerfTest, ChannelPingPong) {
63 RunTestChannelPingPong(GetDefaultTestParams());
64}
65
66TEST_F(MojoChannelPerfTest, ChannelProxyPingPong) {
67 RunTestChannelProxyPingPong(GetDefaultTestParams());
68}
69
70class MojoTestClient : public IPC::test::PingPongTestClient {
71 public:
72 typedef IPC::test::PingPongTestClient SuperType;
73
74 MojoTestClient();
75
76 virtual scoped_ptr<IPC::Channel> CreateChannel(
77 IPC::Listener* listener) OVERRIDE;
78};
79
80MojoTestClient::MojoTestClient() {
81 g_mojo_initializer.Get();
82}
83
84scoped_ptr<IPC::Channel> MojoTestClient::CreateChannel(
85 IPC::Listener* listener) {
morrita54f6f80c2014-09-23 21:16:0086 return scoped_ptr<IPC::Channel>(
87 IPC::ChannelMojo::Create(NULL,
88 IPCTestBase::GetChannelName("PerformanceClient"),
89 IPC::Channel::MODE_CLIENT,
90 listener));
morrita373af03b2014-09-09 19:35:2491}
92
93MULTIPROCESS_IPC_TEST_CLIENT_MAIN(PerformanceClient) {
94 MojoTestClient client;
95 return client.RunMain();
96}
97
98} // namespace