Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1529)

Unified Diff: cc/tiles/gpu_image_decode_controller_unittest.cc

Issue 1910663002: Fix ImageUploadTaskImpl with null dependencies. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@skskp
Patch Set: sk_sp rebase Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/tiles/gpu_image_decode_controller.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/tiles/gpu_image_decode_controller_unittest.cc
diff --git a/cc/tiles/gpu_image_decode_controller_unittest.cc b/cc/tiles/gpu_image_decode_controller_unittest.cc
index 6868f35a8ff1ffc7c6991cd6bac5e88bc49caa87..e62426a4a823b387e8156dadda244f88220fcaf1 100644
--- a/cc/tiles/gpu_image_decode_controller_unittest.cc
+++ b/cc/tiles/gpu_image_decode_controller_unittest.cc
@@ -130,7 +130,101 @@ TEST(GpuImageDecodeControllerTest, GetTaskForImageDifferentImage) {
controller.UnrefImage(second_draw_image);
}
-TEST(GpuImageDecodeControllerTest, GetTaskForImageAlreadyDecoded) {
+TEST(GpuImageDecodeControllerTest, GetTaskForImageAlreadyDecodedAndLocked) {
+ auto context_provider = TestContextProvider::Create();
+ context_provider->BindToCurrentThread();
+ GpuImageDecodeController controller(context_provider.get(),
+ ResourceFormat::RGBA_8888);
+ bool is_decomposable = true;
+ uint64_t prepare_tiles_id = 1;
+ SkFilterQuality quality = kHigh_SkFilterQuality;
+
+ sk_sp<SkImage> image = CreateImage(100, 100);
+ DrawImage draw_image(image, SkIRect::MakeWH(image->width(), image->height()),
+ quality,
+ CreateMatrix(SkSize::Make(0.5f, 0.5f), is_decomposable));
+ scoped_refptr<TileTask> task;
+ bool need_unref =
+ controller.GetTaskForImageAndRef(draw_image, prepare_tiles_id, &task);
+ EXPECT_TRUE(need_unref);
+ EXPECT_TRUE(task);
+ EXPECT_EQ(task->dependencies().size(), 1u);
+ EXPECT_TRUE(task->dependencies()[0]);
+
+ // Run the decode but don't complete it (this will keep the decode locked).
+ ScheduleTask(task->dependencies()[0].get());
+ RunTask(task->dependencies()[0].get());
+
+ // Cancel the upload.
+ ScheduleTask(task.get());
+ CompleteTask(task.get());
+
+ // Get the image again - we should have an upload task, but no dependent
+ // decode task, as the decode was already locked.
+ scoped_refptr<TileTask> another_task;
+ need_unref = controller.GetTaskForImageAndRef(draw_image, prepare_tiles_id,
+ &another_task);
+ EXPECT_TRUE(need_unref);
+ EXPECT_TRUE(another_task);
+ EXPECT_EQ(another_task->dependencies().size(), 0u);
+
+ ProcessTask(another_task.get());
+
+ // Finally, complete the original decode task.
+ CompleteTask(task->dependencies()[0].get());
+
+ controller.UnrefImage(draw_image);
+ controller.UnrefImage(draw_image);
+}
+
+TEST(GpuImageDecodeControllerTest, GetTaskForImageAlreadyDecodedNotLocked) {
+ auto context_provider = TestContextProvider::Create();
+ context_provider->BindToCurrentThread();
+ GpuImageDecodeController controller(context_provider.get(),
+ ResourceFormat::RGBA_8888);
+ bool is_decomposable = true;
+ uint64_t prepare_tiles_id = 1;
+ SkFilterQuality quality = kHigh_SkFilterQuality;
+
+ sk_sp<SkImage> image = CreateImage(100, 100);
+ DrawImage draw_image(image, SkIRect::MakeWH(image->width(), image->height()),
+ quality,
+ CreateMatrix(SkSize::Make(0.5f, 0.5f), is_decomposable));
+ scoped_refptr<TileTask> task;
+ bool need_unref =
+ controller.GetTaskForImageAndRef(draw_image, prepare_tiles_id, &task);
+ EXPECT_TRUE(need_unref);
+ EXPECT_TRUE(task);
+ EXPECT_EQ(task->dependencies().size(), 1u);
+ EXPECT_TRUE(task->dependencies()[0]);
+
+ // Run the decode.
+ ProcessTask(task->dependencies()[0].get());
+
+ // Cancel the upload.
+ ScheduleTask(task.get());
+ CompleteTask(task.get());
+
+ // Unref the image.
+ controller.UnrefImage(draw_image);
+
+ // Get the image again - we should have an upload task and a dependent decode
+ // task - this dependent task will typically just re-lock the image.
+ scoped_refptr<TileTask> another_task;
+ need_unref = controller.GetTaskForImageAndRef(draw_image, prepare_tiles_id,
+ &another_task);
+ EXPECT_TRUE(need_unref);
+ EXPECT_TRUE(another_task);
+ EXPECT_EQ(another_task->dependencies().size(), 1u);
+ EXPECT_TRUE(task->dependencies()[0]);
+
+ ProcessTask(another_task->dependencies()[0].get());
+ ProcessTask(another_task.get());
+
+ controller.UnrefImage(draw_image);
+}
+
+TEST(GpuImageDecodeControllerTest, GetTaskForImageAlreadyUploaded) {
auto context_provider = TestContextProvider::Create();
context_provider->BindToCurrentThread();
GpuImageDecodeController controller(context_provider.get(),
« no previous file with comments | « cc/tiles/gpu_image_decode_controller.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698