blob: 5a432cf1f48648f418cd3d3342c7e1b177c21ae8 [file] [log] [blame]
// Copyright 2020 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.
#include "src/developer/debug/zxdb/debug_adapter/context_test.h"
namespace zxdb {
constexpr uint64_t DebugAdapterContextTest::kProcessKoid;
constexpr uint64_t DebugAdapterContextTest::kThreadKoid;
void DebugAdapterContextTest::SetUp() {
RemoteAPITest::SetUp();
context_ = std::make_unique<DebugAdapterContext>(&session(), pipe_.end1());
client_ = dap::Session::create();
process_ = InjectProcess(kProcessKoid);
thread_ = InjectThread(kProcessKoid, kThreadKoid);
client_->connect(std::make_shared<DebugAdapterReader>(pipe_.end2()),
std::make_shared<DebugAdapterWriter>(pipe_.end2()));
// Eat the output from process attaching (this is asynchronously appended).
loop().RunUntilNoTasks();
}
void DebugAdapterContextTest::TearDown() {
thread_ = nullptr;
process_ = nullptr;
context_.reset();
client_.reset();
RemoteAPITest::TearDown();
}
} // namespace zxdb