mirror of
https://github.com/encounter/engine.git
synced 2026-03-30 11:09:55 -07:00
f2dbeb8aa7
This reverts commit6ea69a0d43. On top of the revert, it reverted a commit in the PR: https://github.com/flutter/engine/pull/14024 This reverts commitea67e5b0b9.
144 lines
4.9 KiB
C++
144 lines
4.9 KiB
C++
// Copyright 2013 The Flutter 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 FLUTTER_SHELL_COMMON_SHELL_TEST_H_
|
|
#define FLUTTER_SHELL_COMMON_SHELL_TEST_H_
|
|
|
|
#include <memory>
|
|
|
|
#include "flutter/common/settings.h"
|
|
#include "flutter/flow/layers/container_layer.h"
|
|
#include "flutter/fml/macros.h"
|
|
#include "flutter/lib/ui/window/platform_message.h"
|
|
#include "flutter/shell/common/run_configuration.h"
|
|
#include "flutter/shell/common/shell.h"
|
|
#include "flutter/shell/common/thread_host.h"
|
|
#include "flutter/shell/common/vsync_waiters_test.h"
|
|
#include "flutter/shell/gpu/gpu_surface_gl_delegate.h"
|
|
#include "flutter/testing/test_dart_native_resolver.h"
|
|
#include "flutter/testing/test_gl_surface.h"
|
|
#include "flutter/testing/thread_test.h"
|
|
|
|
namespace flutter {
|
|
namespace testing {
|
|
|
|
class ShellTest : public ThreadTest {
|
|
public:
|
|
ShellTest();
|
|
|
|
Settings CreateSettingsForFixture();
|
|
std::unique_ptr<Shell> CreateShell(Settings settings,
|
|
bool simulate_vsync = false);
|
|
std::unique_ptr<Shell> CreateShell(Settings settings,
|
|
TaskRunners task_runners,
|
|
bool simulate_vsync = false);
|
|
void DestroyShell(std::unique_ptr<Shell> shell);
|
|
void DestroyShell(std::unique_ptr<Shell> shell, TaskRunners task_runners);
|
|
TaskRunners GetTaskRunnersForFixture();
|
|
|
|
void SendEnginePlatformMessage(Shell* shell,
|
|
fml::RefPtr<PlatformMessage> message);
|
|
|
|
void AddNativeCallback(std::string name, Dart_NativeFunction callback);
|
|
|
|
static void PlatformViewNotifyCreated(
|
|
Shell* shell); // This creates the surface
|
|
static void RunEngine(Shell* shell, RunConfiguration configuration);
|
|
static void RestartEngine(Shell* shell, RunConfiguration configuration);
|
|
|
|
/// Issue as many VSYNC as needed to flush the UI tasks so far, and reset
|
|
/// the `will_draw_new_frame` to true.
|
|
static void VSyncFlush(Shell* shell, bool& will_draw_new_frame);
|
|
|
|
/// Given the root layer, this callback builds the layer tree to be rasterized
|
|
/// in PumpOneFrame.
|
|
using LayerTreeBuilder =
|
|
std::function<void(std::shared_ptr<ContainerLayer> root)>;
|
|
static void PumpOneFrame(Shell* shell,
|
|
double width = 1,
|
|
double height = 1,
|
|
LayerTreeBuilder = {});
|
|
static void PumpOneFrame(Shell* shell,
|
|
flutter::ViewportMetrics viewport_metrics,
|
|
LayerTreeBuilder = {});
|
|
static void DispatchFakePointerData(Shell* shell);
|
|
static void DispatchPointerData(Shell* shell,
|
|
std::unique_ptr<PointerDataPacket> packet);
|
|
// Declare |UnreportedTimingsCount|, |GetNeedsReportTimings| and
|
|
// |SetNeedsReportTimings| inside |ShellTest| mainly for easier friend class
|
|
// declarations as shell unit tests and Shell are in different name spaces.
|
|
|
|
static bool GetNeedsReportTimings(Shell* shell);
|
|
static void SetNeedsReportTimings(Shell* shell, bool value);
|
|
|
|
std::shared_ptr<txt::FontCollection> GetFontCollection(Shell* shell);
|
|
|
|
// Do not assert |UnreportedTimingsCount| to be positive in any tests.
|
|
// Otherwise those tests will be flaky as the clearing of unreported timings
|
|
// is unpredictive.
|
|
static int UnreportedTimingsCount(Shell* shell);
|
|
|
|
private:
|
|
void SetSnapshotsAndAssets(Settings& settings);
|
|
|
|
std::shared_ptr<TestDartNativeResolver> native_resolver_;
|
|
ThreadHost thread_host_;
|
|
fml::UniqueFD assets_dir_;
|
|
|
|
FML_DISALLOW_COPY_AND_ASSIGN(ShellTest);
|
|
};
|
|
|
|
class ShellTestPlatformView : public PlatformView, public GPUSurfaceGLDelegate {
|
|
public:
|
|
ShellTestPlatformView(PlatformView::Delegate& delegate,
|
|
TaskRunners task_runners,
|
|
std::shared_ptr<ShellTestVsyncClock> vsync_clock,
|
|
CreateVsyncWaiter create_vsync_waiter);
|
|
|
|
~ShellTestPlatformView() override;
|
|
|
|
void SimulateVSync();
|
|
|
|
private:
|
|
TestGLSurface gl_surface_;
|
|
|
|
CreateVsyncWaiter create_vsync_waiter_;
|
|
|
|
std::shared_ptr<ShellTestVsyncClock> vsync_clock_;
|
|
|
|
// |PlatformView|
|
|
std::unique_ptr<Surface> CreateRenderingSurface() override;
|
|
|
|
// |PlatformView|
|
|
std::unique_ptr<VsyncWaiter> CreateVSyncWaiter() override;
|
|
|
|
// |PlatformView|
|
|
PointerDataDispatcherMaker GetDispatcherMaker() override;
|
|
|
|
// |GPUSurfaceGLDelegate|
|
|
bool GLContextMakeCurrent() override;
|
|
|
|
// |GPUSurfaceGLDelegate|
|
|
bool GLContextClearCurrent() override;
|
|
|
|
// |GPUSurfaceGLDelegate|
|
|
bool GLContextPresent() override;
|
|
|
|
// |GPUSurfaceGLDelegate|
|
|
intptr_t GLContextFBO() const override;
|
|
|
|
// |GPUSurfaceGLDelegate|
|
|
GLProcResolver GetGLProcResolver() const override;
|
|
|
|
// |GPUSurfaceGLDelegate|
|
|
ExternalViewEmbedder* GetExternalViewEmbedder() override;
|
|
|
|
FML_DISALLOW_COPY_AND_ASSIGN(ShellTestPlatformView);
|
|
};
|
|
|
|
} // namespace testing
|
|
} // namespace flutter
|
|
|
|
#endif // FLUTTER_SHELL_COMMON_SHELL_TEST_H_
|