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

Unified Diff: tests/MessageBusTest.cpp

Issue 26734003: Proactive SkPixelRef invalidation (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: drop the check Created 7 years, 2 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 | « src/gpu/SkGr.cpp ('k') | tests/PixelRefTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/MessageBusTest.cpp
diff --git a/tests/MessageBusTest.cpp b/tests/MessageBusTest.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..0e718cbebdc6e696e29d8b6b36b74576ad2d6747
--- /dev/null
+++ b/tests/MessageBusTest.cpp
@@ -0,0 +1,57 @@
+/*
+ * Copyright 2013 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#include "SkMessageBus.h"
+#include "Test.h"
+#include "TestClassDef.h"
+
+namespace {
+
+struct TestMessage {
+ int x;
+ float y;
+};
+
+} // namespace
+
+DEF_TEST(MessageBus, r) {
+ // Register two inboxes to receive all TestMessages.
+ SkMessageBus<TestMessage>::Inbox inbox1, inbox2;
+
+ // Send two messages.
+ const TestMessage m1 = { 5, 4.2f };
+ const TestMessage m2 = { 6, 4.3f };
+ SkMessageBus<TestMessage>::Post(m1);
+ SkMessageBus<TestMessage>::Post(m2);
+
+ // Make sure we got two.
+ SkTDArray<TestMessage> messages;
+ inbox1.poll(&messages);
+ REPORTER_ASSERT(r, 2 == messages.count());
+ REPORTER_ASSERT(r, 5 == messages[0].x);
+ REPORTER_ASSERT(r, 6 == messages[1].x);
+
+ // Send another; check we get just that one.
+ const TestMessage m3 = { 1, 0.3f };
+ SkMessageBus<TestMessage>::Post(m3);
+ inbox1.poll(&messages);
+ REPORTER_ASSERT(r, 1 == messages.count());
+ REPORTER_ASSERT(r, 1 == messages[0].x);
+
+ // Nothing was sent since the last read.
+ inbox1.poll(&messages);
+ REPORTER_ASSERT(r, 0 == messages.count());
+
+ // Over all this time, inbox2 should have piled up 3 messages.
+ inbox2.poll(&messages);
+ REPORTER_ASSERT(r, 3 == messages.count());
+ REPORTER_ASSERT(r, 5 == messages[0].x);
+ REPORTER_ASSERT(r, 6 == messages[1].x);
+ REPORTER_ASSERT(r, 1 == messages[2].x);
+}
+
+// Multithreaded tests tbd.
« no previous file with comments | « src/gpu/SkGr.cpp ('k') | tests/PixelRefTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698