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

Unified Diff: Source/core/dom/CrossThreadTaskTest.cpp

Issue 934963003: Apply WTF::ParamStorageTraits<> to CrossThreadTaskN. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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 | « Source/core/dom/CrossThreadTask.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/CrossThreadTaskTest.cpp
diff --git a/Source/core/dom/CrossThreadTaskTest.cpp b/Source/core/dom/CrossThreadTaskTest.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..57c18f5ff6e4b0eca71a253b5265108e9b6645e7
--- /dev/null
+++ b/Source/core/dom/CrossThreadTaskTest.cpp
@@ -0,0 +1,69 @@
+// Copyright 2015 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 "config.h"
+#include "core/dom/CrossThreadTask.h"
+
+#include "platform/heap/Handle.h"
+#include <gtest/gtest.h>
+
+namespace blink {
+
+class GCObject : public GarbageCollectedFinalized<GCObject> {
+public:
+ static int s_counter;
+ GCObject() { ++s_counter; }
+ ~GCObject() { --s_counter; }
+ DEFINE_INLINE_TRACE() { }
+ void run(GCObject*) { }
+};
+
+int GCObject::s_counter = 0;
+
+static void functionWithGarbageCollected(GCObject*)
+{
+}
+
+static void functionWithExecutionContext(ExecutionContext*, GCObject*)
+{
+}
+
+class CrossThreadTaskTest : public testing::Test {
+protected:
+ void SetUp() override
+ {
+ GCObject::s_counter = 0;
+ }
+ void TearDown() override
+ {
+ Heap::collectGarbage(ThreadState::NoHeapPointersOnStack);
+ ASSERT_EQ(0, GCObject::s_counter);
+ }
+};
+
+TEST_F(CrossThreadTaskTest, CreateForGarbageCollectedMethod)
+{
+ OwnPtr<ExecutionContextTask> task1 = createCrossThreadTask(&GCObject::run, new GCObject, new GCObject);
+ OwnPtr<ExecutionContextTask> task2 = createCrossThreadTask(&GCObject::run, RawPtr<GCObject>(new GCObject), RawPtr<GCObject>(new GCObject));
+ Heap::collectGarbage(ThreadState::NoHeapPointersOnStack);
+ EXPECT_EQ(4, GCObject::s_counter);
+}
+
+TEST_F(CrossThreadTaskTest, CreateForFunctionWithGarbageCollected)
+{
+ OwnPtr<ExecutionContextTask> task1 = createCrossThreadTask(&functionWithGarbageCollected, new GCObject);
+ OwnPtr<ExecutionContextTask> task2 = createCrossThreadTask(&functionWithGarbageCollected, RawPtr<GCObject>(new GCObject));
+ Heap::collectGarbage(ThreadState::NoHeapPointersOnStack);
+ EXPECT_EQ(2, GCObject::s_counter);
+}
+
+TEST_F(CrossThreadTaskTest, CreateForFunctionWithExecutionContext)
+{
+ OwnPtr<ExecutionContextTask> task1 = createCrossThreadTask(&functionWithExecutionContext, new GCObject);
+ OwnPtr<ExecutionContextTask> task2 = createCrossThreadTask(&functionWithExecutionContext, RawPtr<GCObject>(new GCObject));
+ Heap::collectGarbage(ThreadState::NoHeapPointersOnStack);
+ EXPECT_EQ(2, GCObject::s_counter);
+}
+
+}
« no previous file with comments | « Source/core/dom/CrossThreadTask.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698