| Index: services/shell/tests/connect/connect_test_app.cc
|
| diff --git a/services/shell/tests/connect/connect_test_app.cc b/services/shell/tests/connect/connect_test_app.cc
|
| deleted file mode 100644
|
| index 50b7887b453e79213ef9c95f4471b50b77f95b1e..0000000000000000000000000000000000000000
|
| --- a/services/shell/tests/connect/connect_test_app.cc
|
| +++ /dev/null
|
| @@ -1,223 +0,0 @@
|
| -// Copyright 2016 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 <memory>
|
| -
|
| -#include "base/bind.h"
|
| -#include "base/guid.h"
|
| -#include "base/macros.h"
|
| -#include "base/message_loop/message_loop.h"
|
| -#include "base/run_loop.h"
|
| -#include "mojo/public/cpp/bindings/binding_set.h"
|
| -#include "services/shell/public/c/main.h"
|
| -#include "services/shell/public/cpp/connector.h"
|
| -#include "services/shell/public/cpp/interface_factory.h"
|
| -#include "services/shell/public/cpp/interface_registry.h"
|
| -#include "services/shell/public/cpp/service.h"
|
| -#include "services/shell/public/cpp/service_runner.h"
|
| -#include "services/shell/public/interfaces/connector.mojom.h"
|
| -#include "services/shell/tests/connect/connect_test.mojom.h"
|
| -
|
| -namespace shell {
|
| -
|
| -namespace {
|
| -
|
| -void QuitLoop(base::RunLoop* loop) {
|
| - loop->Quit();
|
| -}
|
| -
|
| -void ReceiveString(std::string* string,
|
| - base::RunLoop* loop,
|
| - const std::string& response) {
|
| - *string = response;
|
| - loop->Quit();
|
| -}
|
| -
|
| -} // namespace
|
| -
|
| -using GetTitleCallback = test::mojom::ConnectTestService::GetTitleCallback;
|
| -
|
| -class ConnectTestApp : public Service,
|
| - public InterfaceFactory<test::mojom::ConnectTestService>,
|
| - public InterfaceFactory<test::mojom::StandaloneApp>,
|
| - public InterfaceFactory<test::mojom::BlockedInterface>,
|
| - public InterfaceFactory<test::mojom::UserIdTest>,
|
| - public test::mojom::ConnectTestService,
|
| - public test::mojom::StandaloneApp,
|
| - public test::mojom::BlockedInterface,
|
| - public test::mojom::UserIdTest {
|
| - public:
|
| - ConnectTestApp() {}
|
| - ~ConnectTestApp() override {}
|
| -
|
| - private:
|
| - // shell::Service:
|
| - void OnStart(const Identity& identity) override {
|
| - identity_ = identity;
|
| - bindings_.set_connection_error_handler(
|
| - base::Bind(&ConnectTestApp::OnConnectionError,
|
| - base::Unretained(this)));
|
| - standalone_bindings_.set_connection_error_handler(
|
| - base::Bind(&ConnectTestApp::OnConnectionError,
|
| - base::Unretained(this)));
|
| - }
|
| - bool OnConnect(const Identity& remote_identity,
|
| - InterfaceRegistry* registry) override {
|
| - registry->AddInterface<test::mojom::ConnectTestService>(this);
|
| - registry->AddInterface<test::mojom::StandaloneApp>(this);
|
| - registry->AddInterface<test::mojom::BlockedInterface>(this);
|
| - registry->AddInterface<test::mojom::UserIdTest>(this);
|
| -
|
| - test::mojom::ConnectionStatePtr state(test::mojom::ConnectionState::New());
|
| - state->connection_remote_name = remote_identity.name();
|
| - state->connection_remote_userid = remote_identity.user_id();
|
| - state->initialize_local_name = identity_.name();
|
| - state->initialize_userid = identity_.user_id();
|
| -
|
| - connector()->ConnectToInterface(remote_identity, &caller_);
|
| - caller_->ConnectionAccepted(std::move(state));
|
| -
|
| - return true;
|
| - }
|
| -
|
| - // InterfaceFactory<test::mojom::ConnectTestService>:
|
| - void Create(const Identity& remote_identity,
|
| - test::mojom::ConnectTestServiceRequest request) override {
|
| - bindings_.AddBinding(this, std::move(request));
|
| - }
|
| -
|
| - // InterfaceFactory<test::mojom::StandaloneApp>:
|
| - void Create(const Identity& remote_identity,
|
| - test::mojom::StandaloneAppRequest request) override {
|
| - standalone_bindings_.AddBinding(this, std::move(request));
|
| - }
|
| -
|
| - // InterfaceFactory<test::mojom::BlockedInterface>:
|
| - void Create(const Identity& remote_identity,
|
| - test::mojom::BlockedInterfaceRequest request) override {
|
| - blocked_bindings_.AddBinding(this, std::move(request));
|
| - }
|
| -
|
| - // InterfaceFactory<test::mojom::UserIdTest>:
|
| - void Create(const Identity& remote_identity,
|
| - test::mojom::UserIdTestRequest request) override {
|
| - user_id_test_bindings_.AddBinding(this, std::move(request));
|
| - }
|
| -
|
| - // test::mojom::ConnectTestService:
|
| - void GetTitle(const GetTitleCallback& callback) override {
|
| - callback.Run("APP");
|
| - }
|
| - void GetInstance(const GetInstanceCallback& callback) override {
|
| - callback.Run(identity_.instance());
|
| - }
|
| -
|
| - // test::mojom::StandaloneApp:
|
| - void ConnectToAllowedAppInBlockedPackage(
|
| - const ConnectToAllowedAppInBlockedPackageCallback& callback) override {
|
| - base::RunLoop run_loop;
|
| - std::unique_ptr<Connection> connection =
|
| - connector()->Connect("service:connect_test_a");
|
| - connection->SetConnectionLostClosure(
|
| - base::Bind(&ConnectTestApp::OnConnectionBlocked,
|
| - base::Unretained(this), callback, &run_loop));
|
| - test::mojom::ConnectTestServicePtr test_service;
|
| - connection->GetInterface(&test_service);
|
| - test_service->GetTitle(
|
| - base::Bind(&ConnectTestApp::OnGotTitle, base::Unretained(this),
|
| - callback, &run_loop));
|
| - {
|
| - // This message is dispatched as a task on the same run loop, so we need
|
| - // to allow nesting in order to pump additional signals.
|
| - base::MessageLoop::ScopedNestableTaskAllower allow(
|
| - base::MessageLoop::current());
|
| - run_loop.Run();
|
| - }
|
| - }
|
| - void ConnectToClassInterface(
|
| - const ConnectToClassInterfaceCallback& callback) override {
|
| - std::unique_ptr<Connection> connection =
|
| - connector()->Connect("service:connect_test_class_app");
|
| - test::mojom::ClassInterfacePtr class_interface;
|
| - connection->GetInterface(&class_interface);
|
| - std::string ping_response;
|
| - {
|
| - base::RunLoop loop;
|
| - class_interface->Ping(base::Bind(&ReceiveString, &ping_response, &loop));
|
| - base::MessageLoop::ScopedNestableTaskAllower allow(
|
| - base::MessageLoop::current());
|
| - loop.Run();
|
| - }
|
| - test::mojom::ConnectTestServicePtr service;
|
| - connection->GetInterface(&service);
|
| - std::string title_response;
|
| - {
|
| - base::RunLoop loop;
|
| - service->GetTitle(base::Bind(&ReceiveString, &title_response, &loop));
|
| - base::MessageLoop::ScopedNestableTaskAllower allow(
|
| - base::MessageLoop::current());
|
| - loop.Run();
|
| - }
|
| - callback.Run(ping_response, title_response);
|
| - }
|
| -
|
| - // test::mojom::BlockedInterface:
|
| - void GetTitleBlocked(const GetTitleBlockedCallback& callback) override {
|
| - callback.Run("Called Blocked Interface!");
|
| - }
|
| -
|
| - // test::mojom::UserIdTest:
|
| - void ConnectToClassAppAsDifferentUser(
|
| - const shell::Identity& target,
|
| - const ConnectToClassAppAsDifferentUserCallback& callback) override {
|
| - Connector::ConnectParams params(target);
|
| - std::unique_ptr<Connection> connection =
|
| - connector()->Connect(¶ms);
|
| - {
|
| - base::RunLoop loop;
|
| - connection->AddConnectionCompletedClosure(base::Bind(&QuitLoop, &loop));
|
| - base::MessageLoop::ScopedNestableTaskAllower allow(
|
| - base::MessageLoop::current());
|
| - loop.Run();
|
| - }
|
| - callback.Run(static_cast<int32_t>(connection->GetResult()),
|
| - connection->GetRemoteIdentity());
|
| - }
|
| -
|
| - void OnConnectionBlocked(
|
| - const ConnectToAllowedAppInBlockedPackageCallback& callback,
|
| - base::RunLoop* run_loop) {
|
| - callback.Run("uninitialized");
|
| - run_loop->Quit();
|
| - }
|
| -
|
| - void OnGotTitle(
|
| - const ConnectToAllowedAppInBlockedPackageCallback& callback,
|
| - base::RunLoop* run_loop,
|
| - const std::string& title) {
|
| - callback.Run(title);
|
| - run_loop->Quit();
|
| - }
|
| -
|
| - void OnConnectionError() {
|
| - if (bindings_.empty() && standalone_bindings_.empty())
|
| - base::MessageLoop::current()->QuitWhenIdle();
|
| - }
|
| -
|
| - Identity identity_;
|
| - mojo::BindingSet<test::mojom::ConnectTestService> bindings_;
|
| - mojo::BindingSet<test::mojom::StandaloneApp> standalone_bindings_;
|
| - mojo::BindingSet<test::mojom::BlockedInterface> blocked_bindings_;
|
| - mojo::BindingSet<test::mojom::UserIdTest> user_id_test_bindings_;
|
| - test::mojom::ExposedInterfacePtr caller_;
|
| -
|
| - DISALLOW_COPY_AND_ASSIGN(ConnectTestApp);
|
| -};
|
| -
|
| -} // namespace shell
|
| -
|
| -MojoResult ServiceMain(MojoHandle service_request_handle) {
|
| - shell::ServiceRunner runner(new shell::ConnectTestApp);
|
| - return runner.Run(service_request_handle);
|
| -}
|
|
|