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

Unified Diff: base/task_scheduler/utils_unittest.cc

Issue 1708773002: TaskScheduler [7] SchedulerThreadPool (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@s_5_worker_thread
Patch Set: self review 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
« base/task_scheduler/utils.cc ('K') | « base/task_scheduler/utils.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/task_scheduler/utils_unittest.cc
diff --git a/base/task_scheduler/utils_unittest.cc b/base/task_scheduler/utils_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..6b3904b958d2e461d3d7e4ffac7b0f9ed70a1d54
--- /dev/null
+++ b/base/task_scheduler/utils_unittest.cc
@@ -0,0 +1,78 @@
+// Copyright 2016 The Chromium 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 "base/task_scheduler/utils.h"
+
+#include <memory>
+
+#include "base/bind.h"
+#include "base/bind_helpers.h"
+#include "base/memory/ptr_util.h"
+#include "base/memory/ref_counted.h"
+#include "base/task_scheduler/priority_queue.h"
+#include "base/task_scheduler/sequence.h"
+#include "base/task_scheduler/task.h"
+#include "base/task_scheduler/task_tracker.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace base {
+namespace internal {
+namespace {
+
+// Checks that when PostTaskHelper is called with an empty sequence, the task
+// is added to the sequence and the sequence is added to the priority queue.
+TEST(TaskSchedulerPostTaskHelperTest, PostTaskInEmptySequence) {
+ std::unique_ptr<Task> task(
+ new Task(FROM_HERE, Bind(&DoNothing), TaskTraits()));
+ const Task* task_raw = task.get();
+ scoped_refptr<Sequence> sequence(new Sequence);
+ PriorityQueue priority_queue(Bind(&DoNothing));
+ TaskTracker task_tracker;
+
+ // Post |task|.
+ EXPECT_TRUE(PostTaskHelper(std::move(task), sequence, &priority_queue,
+ &task_tracker));
+
+ // Expect to find the sequence in the priority queue.
+ EXPECT_EQ(sequence, priority_queue.BeginTransaction()->Peek().sequence);
+
+ // Expect to find |task| alone in |sequence|.
+ EXPECT_EQ(task_raw, sequence->PeekTask());
+ sequence->PopTask();
+ EXPECT_EQ(nullptr, sequence->PeekTask());
+}
+
+// Checks that when PostTaskHelper is called with a sequence that already
+// contains a task, the task is added to the sequence but the sequence is not
+// added to the priority queue.
+TEST(TaskSchedulerPostTaskHelperTest, PostTaskInNonEmptySequence) {
+ std::unique_ptr<Task> task(
+ new Task(FROM_HERE, Bind(&DoNothing), TaskTraits()));
+ const Task* task_raw = task.get();
+ scoped_refptr<Sequence> sequence(new Sequence);
+ PriorityQueue priority_queue(Bind(&DoNothing));
+ TaskTracker task_tracker;
+
+ // Add an initial task in |sequence|.
+ sequence->PushTask(
+ WrapUnique(new Task(FROM_HERE, Bind(&DoNothing), TaskTraits())));
+
+ // Post |task|.
+ EXPECT_TRUE(PostTaskHelper(std::move(task), sequence, &priority_queue,
+ &task_tracker));
+
+ // Expect to find the priority queue empty.
+ EXPECT_TRUE(priority_queue.BeginTransaction()->Peek().is_null());
+
+ // Expect to find |task| in |sequence| behind the initial task.
+ EXPECT_NE(task_raw, sequence->PeekTask());
+ sequence->PopTask();
+ EXPECT_EQ(task_raw, sequence->PeekTask());
+ sequence->PopTask();
+ EXPECT_EQ(nullptr, sequence->PeekTask());
+}
+
+} // namespace
+} // namespace internal
+} // namespace base
« base/task_scheduler/utils.cc ('K') | « base/task_scheduler/utils.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698