blob: c3805f31ece10da239c47fe771826643a1f7b9c4 [file] [log] [blame]
// 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 "base/message_loop/message_loop.h"
#include "mojo/public/cpp/application/application.h"
#include "mojo/public/cpp/environment/environment.h"
#include "mojo/public/interfaces/service_provider/service_provider.mojom.h"
#include "mojo/service_manager/service_loader.h"
#include "mojo/service_manager/service_manager.h"
#include "mojo/service_manager/test.mojom.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace mojo {
namespace {
const char kTestURLString[] = "test:testService";
struct TestContext {
TestContext() : num_impls(0), num_loader_deletes(0) {}
std::string last_test_string;
int num_impls;
int num_loader_deletes;
};
class TestServiceImpl : public InterfaceImpl<TestService> {
public:
explicit TestServiceImpl(TestContext* context) : context_(context) {
++context_->num_impls;
}
virtual ~TestServiceImpl() {
--context_->num_impls;
}
// TestService implementation:
virtual void Test(const String& test_string) OVERRIDE {
context_->last_test_string = test_string;
client()->AckTest();
}
private:
TestContext* context_;
};
class TestClientImpl : public TestClient {
public:
explicit TestClientImpl(TestServicePtr service)
: service_(service.Pass()),
quit_after_ack_(false) {
service_.set_client(this);
}
virtual ~TestClientImpl() {}
virtual void AckTest() OVERRIDE {
if (quit_after_ack_)
base::MessageLoop::current()->Quit();
}
void Test(std::string test_string) {
quit_after_ack_ = true;
service_->Test(test_string);
}
private:
TestServicePtr service_;
bool quit_after_ack_;
DISALLOW_COPY_AND_ASSIGN(TestClientImpl);
};
class TestServiceLoader : public ServiceLoader {
public:
TestServiceLoader()
: context_(NULL),
num_loads_(0),
quit_after_error_(false) {
}
virtual ~TestServiceLoader() {
if (context_)
++context_->num_loader_deletes;
test_app_.reset(NULL);
}
void set_context(TestContext* context) { context_ = context; }
void set_quit_after_error(bool quit_after_error) {
quit_after_error_ = quit_after_error;
}
int num_loads() const { return num_loads_; }
private:
virtual void LoadService(
ServiceManager* manager,
const GURL& url,
ScopedMessagePipeHandle service_provider_handle) OVERRIDE {
++num_loads_;
test_app_.reset(new Application(service_provider_handle.Pass()));
test_app_->AddService<TestServiceImpl>(context_);
}
virtual void OnServiceError(ServiceManager* manager,
const GURL& url) OVERRIDE {
if (quit_after_error_) {
base::MessageLoop::current()->PostTask(FROM_HERE,
base::MessageLoop::QuitClosure());
}
}
scoped_ptr<Application> test_app_;
TestContext* context_;
int num_loads_;
bool quit_after_error_;
DISALLOW_COPY_AND_ASSIGN(TestServiceLoader);
};
class TestServiceInterceptor : public ServiceManager::Interceptor {
public:
TestServiceInterceptor() : call_count_(0) {}
virtual ScopedMessagePipeHandle OnConnectToClient(
const GURL& url, ScopedMessagePipeHandle handle) OVERRIDE {
++call_count_;
url_ = url;
return handle.Pass();
}
std::string url_spec() const {
if (!url_.is_valid())
return "invalid url";
return url_.spec();
}
int call_count() const {
return call_count_;
}
private:
int call_count_;
GURL url_;
DISALLOW_COPY_AND_ASSIGN(TestServiceInterceptor);
};
} // namespace
class ServiceManagerTest : public testing::Test {
public:
ServiceManagerTest() {}
virtual ~ServiceManagerTest() {}
virtual void SetUp() OVERRIDE {
GURL test_url(kTestURLString);
service_manager_.reset(new ServiceManager);
MessagePipe pipe;
TestServicePtr service_proxy = MakeProxy<TestService>(pipe.handle0.Pass());
test_client_.reset(new TestClientImpl(service_proxy.Pass()));
TestServiceLoader* default_loader = new TestServiceLoader;
default_loader->set_context(&context_);
default_loader->set_quit_after_error(true);
service_manager_->set_default_loader(
scoped_ptr<ServiceLoader>(default_loader));
service_manager_->ConnectToService(test_url, pipe.handle1.Pass());
}
virtual void TearDown() OVERRIDE {
test_client_.reset(NULL);
service_manager_.reset(NULL);
}
bool HasFactoryForTestURL() {
ServiceManager::TestAPI manager_test_api(service_manager_.get());
return manager_test_api.HasFactoryForURL(GURL(kTestURLString));
}
protected:
mojo::Environment env_;
base::MessageLoop loop_;
TestContext context_;
scoped_ptr<TestClientImpl> test_client_;
scoped_ptr<ServiceManager> service_manager_;
DISALLOW_COPY_AND_ASSIGN(ServiceManagerTest);
};
TEST_F(ServiceManagerTest, Basic) {
test_client_->Test("test");
loop_.Run();
EXPECT_EQ(std::string("test"), context_.last_test_string);
}
TEST_F(ServiceManagerTest, ClientError) {
test_client_->Test("test");
EXPECT_TRUE(HasFactoryForTestURL());
loop_.Run();
EXPECT_EQ(1, context_.num_impls);
test_client_.reset(NULL);
loop_.Run();
EXPECT_EQ(0, context_.num_impls);
EXPECT_FALSE(HasFactoryForTestURL());
}
TEST_F(ServiceManagerTest, Deletes) {
{
ServiceManager sm;
TestServiceLoader* default_loader = new TestServiceLoader;
default_loader->set_context(&context_);
TestServiceLoader* url_loader1 = new TestServiceLoader;
TestServiceLoader* url_loader2 = new TestServiceLoader;
url_loader1->set_context(&context_);
url_loader2->set_context(&context_);
TestServiceLoader* scheme_loader1 = new TestServiceLoader;
TestServiceLoader* scheme_loader2 = new TestServiceLoader;
scheme_loader1->set_context(&context_);
scheme_loader2->set_context(&context_);
sm.set_default_loader(scoped_ptr<ServiceLoader>(default_loader));
sm.SetLoaderForURL(scoped_ptr<ServiceLoader>(url_loader1),
GURL("test:test1"));
sm.SetLoaderForURL(scoped_ptr<ServiceLoader>(url_loader2),
GURL("test:test1"));
sm.SetLoaderForScheme(scoped_ptr<ServiceLoader>(scheme_loader1), "test");
sm.SetLoaderForScheme(scoped_ptr<ServiceLoader>(scheme_loader2), "test");
}
EXPECT_EQ(5, context_.num_loader_deletes);
}
// Confirm that both urls and schemes can have their loaders explicitly set.
TEST_F(ServiceManagerTest, SetLoaders) {
ServiceManager sm;
TestServiceLoader* default_loader = new TestServiceLoader;
TestServiceLoader* url_loader = new TestServiceLoader;
TestServiceLoader* scheme_loader = new TestServiceLoader;
sm.set_default_loader(scoped_ptr<ServiceLoader>(default_loader));
sm.SetLoaderForURL(scoped_ptr<ServiceLoader>(url_loader), GURL("test:test1"));
sm.SetLoaderForScheme(scoped_ptr<ServiceLoader>(scheme_loader), "test");
// test::test1 should go to url_loader.
MessagePipe pipe1;
sm.ConnectToService(GURL("test:test1"), pipe1.handle0.Pass());
EXPECT_EQ(1, url_loader->num_loads());
EXPECT_EQ(0, scheme_loader->num_loads());
EXPECT_EQ(0, default_loader->num_loads());
// test::test2 should go to scheme loader.
MessagePipe pipe2;
sm.ConnectToService(GURL("test:test2"), pipe2.handle0.Pass());
EXPECT_EQ(1, url_loader->num_loads());
EXPECT_EQ(1, scheme_loader->num_loads());
EXPECT_EQ(0, default_loader->num_loads());
// http::test1 should go to default loader.
MessagePipe pipe3;
sm.ConnectToService(GURL("http:test1"), pipe3.handle0.Pass());
EXPECT_EQ(1, url_loader->num_loads());
EXPECT_EQ(1, scheme_loader->num_loads());
EXPECT_EQ(1, default_loader->num_loads());
}
TEST_F(ServiceManagerTest, Interceptor) {
ServiceManager sm;
TestServiceInterceptor interceptor;
TestServiceLoader* default_loader = new TestServiceLoader;
sm.set_default_loader(scoped_ptr<ServiceLoader>(default_loader));
sm.SetInterceptor(&interceptor);
std::string url("test:test3");
MessagePipe pipe1;
sm.ConnectToService(GURL(url), pipe1.handle0.Pass());
EXPECT_EQ(1, interceptor.call_count());
EXPECT_EQ(url, interceptor.url_spec());
EXPECT_EQ(1, default_loader->num_loads());
}
} // namespace mojo