blob: 576f13eaa282ce685e86818f051756c078260763 [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()));
36 return IPC::ChannelMojo::CreateServerFactory(host_.get(), handle);
37 }
38
39 virtual bool DidStartClient() OVERRIDE {
40 bool ok = IPCTestBase::DidStartClient();
41 DCHECK(ok);
42 host_->OnClientLaunched(client_process());
43 return ok;
morrita373af03b2014-09-09 19:35:2444 }
45
46 void set_io_thread_task_runner(base::TaskRunner* runner) {
47 io_thread_task_runner_ = runner;
48 }
49
50 private:
51 base::TaskRunner* io_thread_task_runner_;
morrita54f6f80c2014-09-23 21:16:0052 scoped_ptr<IPC::ChannelMojoHost> host_;
morrita373af03b2014-09-09 19:35:2453};
54
55MojoChannelPerfTest::MojoChannelPerfTest()
56 : io_thread_task_runner_() {
57 g_mojo_initializer.Get();
58}
59
60
61TEST_F(MojoChannelPerfTest, ChannelPingPong) {
62 RunTestChannelPingPong(GetDefaultTestParams());
63}
64
65TEST_F(MojoChannelPerfTest, ChannelProxyPingPong) {
66 RunTestChannelProxyPingPong(GetDefaultTestParams());
67}
68
69class MojoTestClient : public IPC::test::PingPongTestClient {
70 public:
71 typedef IPC::test::PingPongTestClient SuperType;
72
73 MojoTestClient();
74
75 virtual scoped_ptr<IPC::Channel> CreateChannel(
76 IPC::Listener* listener) OVERRIDE;
77};
78
79MojoTestClient::MojoTestClient() {
80 g_mojo_initializer.Get();
81}
82
83scoped_ptr<IPC::Channel> MojoTestClient::CreateChannel(
84 IPC::Listener* listener) {
morrita54f6f80c2014-09-23 21:16:0085 return scoped_ptr<IPC::Channel>(
86 IPC::ChannelMojo::Create(NULL,
87 IPCTestBase::GetChannelName("PerformanceClient"),
88 IPC::Channel::MODE_CLIENT,
89 listener));
morrita373af03b2014-09-09 19:35:2490}
91
92MULTIPROCESS_IPC_TEST_CLIENT_MAIN(PerformanceClient) {
93 MojoTestClient client;
94 return client.RunMain();
95}
96
97} // namespace