-
Notifications
You must be signed in to change notification settings - Fork 6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added unit tests to the rasterizer (#22282)
- Loading branch information
Showing
3 changed files
with
137 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
// 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. | ||
|
||
#include "flutter/shell/common/rasterizer.h" | ||
|
||
#include "flutter/shell/common/thread_host.h" | ||
#include "flutter/testing/testing.h" | ||
#include "gmock/gmock.h" | ||
|
||
using testing::_; | ||
using testing::Return; | ||
using testing::ReturnRef; | ||
|
||
namespace flutter { | ||
namespace { | ||
class MockDelegate : public Rasterizer::Delegate { | ||
public: | ||
MOCK_METHOD1(OnFrameRasterized, void(const FrameTiming& frame_timing)); | ||
MOCK_METHOD0(GetFrameBudget, fml::Milliseconds()); | ||
MOCK_CONST_METHOD0(GetLatestFrameTargetTime, fml::TimePoint()); | ||
MOCK_CONST_METHOD0(GetTaskRunners, const TaskRunners&()); | ||
MOCK_CONST_METHOD0(GetIsGpuDisabledSyncSwitch, | ||
std::shared_ptr<fml::SyncSwitch>()); | ||
}; | ||
|
||
class MockSurface : public Surface { | ||
public: | ||
MOCK_METHOD0(IsValid, bool()); | ||
MOCK_METHOD1(AcquireFrame, | ||
std::unique_ptr<SurfaceFrame>(const SkISize& size)); | ||
MOCK_CONST_METHOD0(GetRootTransformation, SkMatrix()); | ||
MOCK_METHOD0(GetContext, GrDirectContext*()); | ||
MOCK_METHOD0(GetExternalViewEmbedder, ExternalViewEmbedder*()); | ||
MOCK_METHOD0(MakeRenderContextCurrent, std::unique_ptr<GLContextResult>()); | ||
MOCK_METHOD0(ClearRenderContext, bool()); | ||
}; | ||
|
||
class MockExternalViewEmbedder : public ExternalViewEmbedder { | ||
public: | ||
MOCK_METHOD0(GetRootCanvas, SkCanvas*()); | ||
MOCK_METHOD0(CancelFrame, void()); | ||
MOCK_METHOD4(BeginFrame, | ||
void(SkISize frame_size, | ||
GrDirectContext* context, | ||
double device_pixel_ratio, | ||
fml::RefPtr<fml::RasterThreadMerger> raster_thread_merger)); | ||
MOCK_METHOD2(PrerollCompositeEmbeddedView, | ||
void(int view_id, std::unique_ptr<EmbeddedViewParams> params)); | ||
MOCK_METHOD1(PostPrerollAction, | ||
PostPrerollResult( | ||
fml::RefPtr<fml::RasterThreadMerger> raster_thread_merger)); | ||
MOCK_METHOD0(GetCurrentCanvases, std::vector<SkCanvas*>()); | ||
MOCK_METHOD1(CompositeEmbeddedView, SkCanvas*(int view_id)); | ||
MOCK_METHOD2(SubmitFrame, | ||
void(GrDirectContext* context, | ||
std::unique_ptr<SurfaceFrame> frame)); | ||
MOCK_METHOD2(EndFrame, | ||
void(bool should_resubmit_frame, | ||
fml::RefPtr<fml::RasterThreadMerger> raster_thread_merger)); | ||
MOCK_METHOD0(SupportsDynamicThreadMerging, bool()); | ||
}; | ||
} // namespace | ||
|
||
TEST(RasterizerTest, create) { | ||
MockDelegate delegate; | ||
auto rasterizer = std::make_unique<Rasterizer>(delegate); | ||
EXPECT_TRUE(rasterizer != nullptr); | ||
} | ||
|
||
TEST(RasterizerTest, drawEmptyPipeline) { | ||
std::string test_name = | ||
::testing::UnitTest::GetInstance()->current_test_info()->name(); | ||
ThreadHost thread_host("io.flutter.test." + test_name + ".", | ||
ThreadHost::Type::Platform | ThreadHost::Type::GPU | | ||
ThreadHost::Type::IO | ThreadHost::Type::UI); | ||
TaskRunners task_runners("test", thread_host.platform_thread->GetTaskRunner(), | ||
thread_host.raster_thread->GetTaskRunner(), | ||
thread_host.ui_thread->GetTaskRunner(), | ||
thread_host.io_thread->GetTaskRunner()); | ||
MockDelegate delegate; | ||
ON_CALL(delegate, GetTaskRunners()).WillByDefault(ReturnRef(task_runners)); | ||
auto rasterizer = std::make_unique<Rasterizer>(delegate); | ||
auto surface = std::make_unique<MockSurface>(); | ||
rasterizer->Setup(std::move(surface)); | ||
fml::AutoResetWaitableEvent latch; | ||
thread_host.raster_thread->GetTaskRunner()->PostTask([&] { | ||
auto pipeline = fml::AdoptRef(new Pipeline<LayerTree>(/*depth=*/10)); | ||
rasterizer->Draw(pipeline, nullptr); | ||
latch.Signal(); | ||
}); | ||
latch.Wait(); | ||
} | ||
|
||
TEST(RasterizerTest, drawWithExternalViewEmbedder) { | ||
std::string test_name = | ||
::testing::UnitTest::GetInstance()->current_test_info()->name(); | ||
ThreadHost thread_host("io.flutter.test." + test_name + ".", | ||
ThreadHost::Type::Platform | ThreadHost::Type::GPU | | ||
ThreadHost::Type::IO | ThreadHost::Type::UI); | ||
TaskRunners task_runners("test", thread_host.platform_thread->GetTaskRunner(), | ||
thread_host.raster_thread->GetTaskRunner(), | ||
thread_host.ui_thread->GetTaskRunner(), | ||
thread_host.io_thread->GetTaskRunner()); | ||
MockDelegate delegate; | ||
EXPECT_CALL(delegate, GetTaskRunners()) | ||
.WillRepeatedly(ReturnRef(task_runners)); | ||
EXPECT_CALL(delegate, OnFrameRasterized(_)); | ||
auto rasterizer = std::make_unique<Rasterizer>(delegate); | ||
auto surface = std::make_unique<MockSurface>(); | ||
MockExternalViewEmbedder external_view_embedder; | ||
EXPECT_CALL(*surface, GetExternalViewEmbedder()) | ||
.WillRepeatedly(Return(&external_view_embedder)); | ||
EXPECT_CALL(external_view_embedder, | ||
BeginFrame(SkISize(), nullptr, 2.0, | ||
fml::RefPtr<fml::RasterThreadMerger>(nullptr))); | ||
EXPECT_CALL(external_view_embedder, | ||
EndFrame(false, fml::RefPtr<fml::RasterThreadMerger>(nullptr))); | ||
rasterizer->Setup(std::move(surface)); | ||
fml::AutoResetWaitableEvent latch; | ||
thread_host.raster_thread->GetTaskRunner()->PostTask([&] { | ||
auto pipeline = fml::AdoptRef(new Pipeline<LayerTree>(/*depth=*/10)); | ||
auto layer_tree = std::make_unique<LayerTree>(/*frame_size=*/SkISize(), | ||
/*device_pixel_ratio=*/2.0f); | ||
bool result = pipeline->Produce().Complete(std::move(layer_tree)); | ||
EXPECT_TRUE(result); | ||
std::function<bool(LayerTree&)> no_discard = [](LayerTree&) { | ||
return false; | ||
}; | ||
rasterizer->Draw(pipeline, no_discard); | ||
latch.Signal(); | ||
}); | ||
latch.Wait(); | ||
} | ||
} // namespace flutter |