blob: 09faf59b7e1027b3f84fd7bfe4f39f0544efc039 [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_TESTING_TARGET_H_
#define SRC_SYS_FUZZING_FRAMEWORK_TESTING_TARGET_H_
#include <lib/zx/channel.h>
#include <lib/zx/process.h>
#include <stdint.h>
#include "src/lib/fxl/macros.h"
#include "src/sys/fuzzing/common/async-types.h"
namespace fuzzing {
// This class encapsulates a fake target process. It simply launches and then waits to crash or
// exit.
class TestTarget final {
public:
explicit TestTarget(ExecutorPtr executor);
~TestTarget();
// Spawns the process, and returns a copy of the spawned process handle.
zx::process Launch();
// Returns a promise that asks the spawned process to crash and completes when it terminates.
ZxPromise<> Crash();
// Returns a promise that asks the spawned process to exit with the given |exitcode| and completes
// when it terminates.
ZxPromise<> Exit(int32_t exitcode);
private:
// Waits for the spawned process to completely terminate.
ZxPromise<> AwaitTermination();
void Reset();
ExecutorPtr executor_;
zx::process process_;
zx::channel local_;
Scope scope_;
FXL_DISALLOW_COPY_ASSIGN_AND_MOVE(TestTarget);
};
} // namespace fuzzing
#endif // SRC_SYS_FUZZING_FRAMEWORK_TESTING_TARGET_H_