Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(32)

Unified Diff: services/device/device_service_test_base.cc

Issue 2774783003: [DeviceService] Add service tests for VibrationManager. (Closed)
Patch Set: Address comments from blundell@ Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « services/device/device_service_test_base.h ('k') | services/device/unittest_manifest.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/device/device_service_test_base.cc
diff --git a/services/device/device_service_test_base.cc b/services/device/device_service_test_base.cc
new file mode 100644
index 0000000000000000000000000000000000000000..e967c1729d9294897b9246044b6dd7850855567b
--- /dev/null
+++ b/services/device/device_service_test_base.cc
@@ -0,0 +1,91 @@
+// Copyright 2017 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 "services/device/device_service_test_base.h"
+
+#include <memory>
+
+#include "base/memory/ptr_util.h"
+#include "base/threading/thread.h"
+#include "mojo/public/cpp/bindings/binding_set.h"
+#include "services/device/device_service.h"
+#include "services/device/public/interfaces/constants.mojom.h"
+#include "services/service_manager/public/cpp/interface_factory.h"
+#include "services/service_manager/public/cpp/interface_registry.h"
+#include "services/service_manager/public/cpp/service_context.h"
+#include "services/service_manager/public/interfaces/service_factory.mojom.h"
+
+namespace device {
+
+namespace {
+
+const char kTestServiceName[] = "device_unittests";
+
+// The test service responsible to package Device Service.
+class ServiceTestClient : public service_manager::test::ServiceTestClient,
+ public service_manager::mojom::ServiceFactory,
+ public service_manager::InterfaceFactory<
+ service_manager::mojom::ServiceFactory> {
+ public:
+ explicit ServiceTestClient(service_manager::test::ServiceTest* test)
+ : service_manager::test::ServiceTestClient(test),
+ io_thread_("DeviceServiceTestIOThread"),
+ file_thread_("DeviceServiceTestFileThread") {}
+ ~ServiceTestClient() override {}
+
+ protected:
+ bool OnConnect(const service_manager::ServiceInfo& remote_info,
+ service_manager::InterfaceRegistry* registry) override {
+ registry->AddInterface<service_manager::mojom::ServiceFactory>(this);
+ return true;
+ }
+
+ void CreateService(service_manager::mojom::ServiceRequest request,
+ const std::string& name) override {
+ if (name == device::mojom::kServiceName) {
+ io_thread_.Start();
+ file_thread_.Start();
+#if defined(OS_ANDROID)
+ device_service_context_.reset(new service_manager::ServiceContext(
+ CreateDeviceService(file_thread_.task_runner(),
+ io_thread_.task_runner(),
+ wake_lock_context_callback_),
+ std::move(request)));
+#else
+ device_service_context_.reset(new service_manager::ServiceContext(
+ CreateDeviceService(file_thread_.task_runner(),
+ io_thread_.task_runner()),
+ std::move(request)));
+#endif
+ }
+ }
+
+ void Create(const service_manager::Identity& remote_identity,
+ service_manager::mojom::ServiceFactoryRequest request) override {
+ service_factory_bindings_.AddBinding(this, std::move(request));
+ }
+
+ private:
+ base::Thread io_thread_;
+ base::Thread file_thread_;
+ mojo::BindingSet<service_manager::mojom::ServiceFactory>
+ service_factory_bindings_;
+ std::unique_ptr<service_manager::ServiceContext> device_service_context_;
+
+ WakeLockContextCallback wake_lock_context_callback_;
+};
+
+} // namespace
+
+DeviceServiceTestBase::DeviceServiceTestBase()
+ : ServiceTest(kTestServiceName) {}
+
+DeviceServiceTestBase::~DeviceServiceTestBase() {}
+
+std::unique_ptr<service_manager::Service>
+DeviceServiceTestBase::CreateService() {
+ return base::MakeUnique<ServiceTestClient>(this);
+}
+
+} // namespace device
« no previous file with comments | « services/device/device_service_test_base.h ('k') | services/device/unittest_manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698