| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef SERVICES_SERVICE_MANAGER_PUBLIC_CPP_SERVICE_TEST_H_ | 5 #ifndef SERVICES_SERVICE_MANAGER_PUBLIC_CPP_SERVICE_TEST_H_ |
| 6 #define SERVICES_SERVICE_MANAGER_PUBLIC_CPP_SERVICE_TEST_H_ | 6 #define SERVICES_SERVICE_MANAGER_PUBLIC_CPP_SERVICE_TEST_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "services/service_manager/public/cpp/connector.h" | 11 #include "services/service_manager/public/cpp/connector.h" |
| 12 #include "services/service_manager/public/cpp/service.h" | 12 #include "services/service_manager/public/cpp/service.h" |
| 13 #include "services/service_manager/public/cpp/service_context.h" | |
| 14 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
| 15 | 14 |
| 16 namespace base { | 15 namespace base { |
| 17 class MessageLoop; | 16 class MessageLoop; |
| 18 } | 17 } |
| 19 | 18 |
| 20 namespace service_manager { | 19 namespace service_manager { |
| 21 | 20 |
| 22 class BackgroundServiceManager; | 21 class BackgroundServiceManager; |
| 22 class ServiceContext; |
| 23 | 23 |
| 24 namespace test { | 24 namespace test { |
| 25 | 25 |
| 26 class ServiceTest; | 26 class ServiceTest; |
| 27 | 27 |
| 28 // A default implementation of Service for use in ServiceTests. Tests wishing | 28 // A default implementation of Service for use in ServiceTests. Tests wishing |
| 29 // to customize this should subclass this class instead of Service, | 29 // to customize this should subclass this class instead of Service, |
| 30 // otherwise they will have to call ServiceTest::OnStartCalled() to forward | 30 // otherwise they will have to call ServiceTest::OnStartCalled() to forward |
| 31 // metadata from OnStart() to the test. | 31 // metadata from OnStart() to the test. |
| 32 class ServiceTestClient : public Service { | 32 class ServiceTestClient : public Service { |
| 33 public: | 33 public: |
| 34 explicit ServiceTestClient(ServiceTest* test); | 34 explicit ServiceTestClient(ServiceTest* test); |
| 35 ~ServiceTestClient() override; | 35 ~ServiceTestClient() override; |
| 36 | 36 |
| 37 protected: | 37 protected: |
| 38 void OnStart(const ServiceInfo& info) override; | 38 void OnStart(ServiceContext* context) override; |
| 39 bool OnConnect(const ServiceInfo& remote_info, |
| 40 InterfaceRegistry* registry) override; |
| 39 | 41 |
| 40 private: | 42 private: |
| 41 ServiceTest* test_; | 43 ServiceTest* test_; |
| 42 | 44 |
| 43 DISALLOW_COPY_AND_ASSIGN(ServiceTestClient); | 45 DISALLOW_COPY_AND_ASSIGN(ServiceTestClient); |
| 44 }; | 46 }; |
| 45 | 47 |
| 46 class ServiceTest : public testing::Test { | 48 class ServiceTest : public testing::Test { |
| 47 public: | 49 public: |
| 48 ServiceTest(); | 50 ServiceTest(); |
| (...skipping 28 matching lines...) Expand all Loading... |
| 77 const std::string& name, | 79 const std::string& name, |
| 78 const std::string& userid); | 80 const std::string& userid); |
| 79 | 81 |
| 80 // testing::Test: | 82 // testing::Test: |
| 81 void SetUp() override; | 83 void SetUp() override; |
| 82 void TearDown() override; | 84 void TearDown() override; |
| 83 | 85 |
| 84 private: | 86 private: |
| 85 friend ServiceTestClient; | 87 friend ServiceTestClient; |
| 86 | 88 |
| 87 std::unique_ptr<Service> service_; | 89 std::unique_ptr<ServiceContext> context_; |
| 88 | |
| 89 std::unique_ptr<base::MessageLoop> message_loop_; | 90 std::unique_ptr<base::MessageLoop> message_loop_; |
| 90 std::unique_ptr<BackgroundServiceManager> background_service_manager_; | 91 std::unique_ptr<BackgroundServiceManager> background_service_manager_; |
| 91 std::unique_ptr<ServiceContext> service_context_; | |
| 92 | 92 |
| 93 // See constructor. | 93 // See constructor. |
| 94 std::string test_name_; | 94 std::string test_name_; |
| 95 | 95 |
| 96 Connector* connector_ = nullptr; | 96 Connector* connector_ = nullptr; |
| 97 std::string initialize_name_; | 97 std::string initialize_name_; |
| 98 std::string initialize_userid_ = service_manager::mojom::kInheritUserID; | 98 std::string initialize_userid_ = service_manager::mojom::kInheritUserID; |
| 99 uint32_t initialize_instance_id_ = service_manager::mojom::kInvalidInstanceID; | 99 uint32_t initialize_instance_id_ = service_manager::mojom::kInvalidInstanceID; |
| 100 | 100 |
| 101 base::Closure initialize_called_; | 101 base::Closure initialize_called_; |
| 102 | 102 |
| 103 DISALLOW_COPY_AND_ASSIGN(ServiceTest); | 103 DISALLOW_COPY_AND_ASSIGN(ServiceTest); |
| 104 }; | 104 }; |
| 105 | 105 |
| 106 } // namespace test | 106 } // namespace test |
| 107 } // namespace service_manager | 107 } // namespace service_manager |
| 108 | 108 |
| 109 #endif // SERVICES_SERVICE_MANAGER_PUBLIC_CPP_SERVICE_TEST_H_ | 109 #endif // SERVICES_SERVICE_MANAGER_PUBLIC_CPP_SERVICE_TEST_H_ |
| OLD | NEW |