// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_HEAP_PROFILING_MULTI_PROCESS_TEST_DRIVER_H_ #define COMPONENTS_HEAP_PROFILING_MULTI_PROCESS_TEST_DRIVER_H_ #include <vector> #include "base/memory/ref_counted_memory.h" #include "base/process/process_handle.h" #include "base/synchronization/waitable_event.h" #include "base/values.h" #include "components/services/heap_profiling/public/cpp/settings.h" #include "components/services/heap_profiling/public/mojom/heap_profiling_client.mojom.h" #include "partition_alloc/partition_alloc_for_testing.h" namespace heap_profiling { // This class runs tests for the Heap Profiling Service, a cross-platform, // multi-process component. // // Chrome on Android does not support browser_tests. It does support // content_browsertests, but those are not multi-process tests. On Android, // processes have to be started via the Activity mechanism, and the test // infrastructure does not support this. // // To avoid test-code duplication, all tests are pulled into this class. // browser_tests will directly call this class. The android // chrome_public_test_apk will invoke this class via a JNI shim. Since the // latter is not running within the gtest framework, this class cannot use // EXPECT* and ASSERT* macros. Instead, this class will return a bool indicating // success of the entire test. On failure, errors will be output via LOG(ERROR). // These will show up in the browser_tests output stream, and will be captured // by logcat [the Android logging facility]. The latter is already the canonical // mechanism for investigating test failures. // // Note: Outputting to stderr will not have the desired effect, since that is // not captured by logcat. class TestDriver { … }; } // namespace heap_profiling #endif // COMPONENTS_HEAP_PROFILING_MULTI_PROCESS_TEST_DRIVER_H_