blob: 3b200f0f03b98eef55fd80d234591b16e808417b [file] [log] [blame]
// Copyright 2017 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 "garnet/lib/ui/gfx/tests/mocks.h"
#include "garnet/lib/ui/gfx/engine/default_frame_scheduler.h"
#include "garnet/lib/ui/gfx/tests/session_test.h"
#include "garnet/lib/ui/scenic/command_dispatcher.h"
namespace scenic_impl {
namespace gfx {
namespace test {
SessionForTest::SessionForTest(SessionId id, SessionContext context,
EventReporter* event_reporter,
ErrorReporter* error_reporter)
: Session(id, std::move(context), event_reporter, error_reporter) {}
SessionHandlerForTest::SessionHandlerForTest(SessionContext session_context,
SessionId session_id,
Scenic* scenic,
EventReporter* event_reporter,
ErrorReporter* error_reporter)
: SessionHandler(
CommandDispatcherContext(scenic, /* session = */ nullptr, session_id),
std::move(session_context), event_reporter, error_reporter),
command_count_(0),
present_count_(0) {}
SessionHandlerForTest::SessionHandlerForTest(
CommandDispatcherContext command_dispatcher_context,
SessionContext session_context, EventReporter* event_reporter,
ErrorReporter* error_reporter)
: SessionHandler(std::move(command_dispatcher_context),
std::move(session_context), event_reporter,
error_reporter),
command_count_(0),
present_count_(0) {}
void SessionHandlerForTest::DispatchCommand(
fuchsia::ui::scenic::Command command) {
SessionHandler::DispatchCommand(std::move(command));
++command_count_;
}
void SessionHandlerForTest::Present(
uint64_t presentation_time, ::std::vector<zx::event> acquire_fences,
::std::vector<zx::event> release_fences,
fuchsia::ui::scenic::Session::PresentCallback callback) {
SessionHandler::Present(presentation_time, std::move(acquire_fences),
std::move(release_fences), std::move(callback));
++present_count_;
}
ReleaseFenceSignallerForTest::ReleaseFenceSignallerForTest(
escher::impl::CommandBufferSequencer* command_buffer_sequencer)
: ReleaseFenceSignaller(command_buffer_sequencer) {}
void ReleaseFenceSignallerForTest::AddCPUReleaseFence(zx::event fence) {
num_calls_to_add_cpu_release_fence_++;
// Signal immediately for testing purposes.
fence.signal(0u, escher::kFenceSignalled);
}
SessionManagerForTest::SessionManagerForTest(EventReporter* event_reporter,
ErrorReporter* error_reporter)
: event_reporter_(event_reporter), error_reporter_(error_reporter) {}
std::unique_ptr<SessionHandler> SessionManagerForTest::CreateSessionHandler(
CommandDispatcherContext dispatcher_context, SessionContext session_context,
SessionId session_id, EventReporter* event_reporter,
ErrorReporter* error_reporter) {
return std::make_unique<SessionHandlerForTest>(
std::move(dispatcher_context), std::move(session_context),
event_reporter_ ? event_reporter_ : event_reporter,
error_reporter_ ? error_reporter_ : error_reporter);
}
EngineForTest::EngineForTest(sys::ComponentContext* component_context,
DisplayManager* display_manager,
std::unique_ptr<escher::ReleaseFenceSignaller> r,
EventReporter* event_reporter,
ErrorReporter* error_reporter)
: Engine(component_context,
std::make_unique<DefaultFrameScheduler>(
display_manager->default_display()),
display_manager, std::move(r),
std::make_unique<SessionManagerForTest>(event_reporter,
error_reporter),
escher::EscherWeakPtr()) {}
} // namespace test
} // namespace gfx
} // namespace scenic_impl