12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- // Copyright 2018 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.
- #ifndef BASE_FUCHSIA_SERVICE_DIRECTORY_TEST_BASE_H_
- #define BASE_FUCHSIA_SERVICE_DIRECTORY_TEST_BASE_H_
- #include <lib/sys/cpp/outgoing_directory.h>
- #include <lib/sys/cpp/service_directory.h>
- #include <zircon/types.h>
- #include <memory>
- #include "base/fuchsia/scoped_service_binding.h"
- #include "base/fuchsia/test_interface_impl.h"
- #include "base/test/scoped_run_loop_timeout.h"
- #include "base/test/task_environment.h"
- #include "base/testfidl/cpp/fidl.h"
- #include "testing/gtest/include/gtest/gtest.h"
- namespace base {
- namespace fuchsia {
- class ServiceDirectoryTestBase : public testing::Test {
- public:
- ServiceDirectoryTestBase();
- ~ServiceDirectoryTestBase() override;
- void VerifyTestInterface(fidl::InterfacePtr<testfidl::TestInterface>* stub,
- zx_status_t expected_error);
- protected:
- const test::ScopedRunLoopTimeout run_timeout_;
- base::test::SingleThreadTaskEnvironment task_environment_{
- base::test::SingleThreadTaskEnvironment::MainThreadType::IO};
- std::unique_ptr<sys::OutgoingDirectory> outgoing_directory_;
- TestInterfaceImpl test_service_;
- std::unique_ptr<ScopedServiceBinding<testfidl::TestInterface>>
- service_binding_;
- std::unique_ptr<sys::ServiceDirectory> public_service_directory_;
- std::unique_ptr<sys::ServiceDirectory> debug_service_directory_;
- std::unique_ptr<sys::ServiceDirectory> root_service_directory_;
- DISALLOW_COPY_AND_ASSIGN(ServiceDirectoryTestBase);
- };
- } // namespace fuchsia
- } // namespace base
- #endif // BASE_FUCHSIA_SERVICE_DIRECTORY_TEST_BASE_H_
|