blob: af8f716c801c61b66bb03fae01f8003ac5054649 [file] [log] [blame]
// Copyright 2021 The Fuchsia 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 SRC_SYS_FUZZING_FRAMEWORK_ENGINE_PROCESS_PROXY_TEST_H_
#define SRC_SYS_FUZZING_FRAMEWORK_ENGINE_PROCESS_PROXY_TEST_H_
#include <fuchsia/fuzzer/cpp/fidl.h>
#include <stdint.h>
#include <memory>
#include <gtest/gtest.h>
#include "src/sys/fuzzing/common/options.h"
#include "src/sys/fuzzing/common/testing/async-test.h"
#include "src/sys/fuzzing/framework/engine/module-pool.h"
#include "src/sys/fuzzing/framework/engine/process-proxy.h"
#include "src/sys/fuzzing/framework/testing/process.h"
#include "src/sys/fuzzing/framework/testing/target.h"
namespace fuzzing {
// Base class for ProcessProxy unit tests. This is in its own compilation unit so it can be used by
// both the normal unit tests, and the unit tests that produce fatal logs.
//
// The |Ignore...| methods and functions are useful for creating objects needed to make FIDL calls
// but that are otherwise irrelevant to a particular tests.
class ProcessProxyTest : public AsyncTest {
protected:
void SetUp() override;
ModulePoolPtr pool() const { return pool_; }
std::unique_ptr<ProcessProxy> MakeProcessProxy();
static OptionsPtr DefaultOptions();
InstrumentedProcess IgnoreSentSignals(zx::process&& process);
InstrumentedProcess IgnoreTarget(zx::eventpair&& eventpair);
InstrumentedProcess IgnoreAll();
private:
ModulePoolPtr pool_;
std::unique_ptr<FakeProcess> process_;
};
void IgnoreReceivedSignals();
void IgnoreErrors(uint64_t ignored);
} // namespace fuzzing
#endif // SRC_SYS_FUZZING_FRAMEWORK_ENGINE_PROCESS_PROXY_TEST_H_