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

Unified Diff: ppapi/native_client/tests/ppapi_messaging/ppapi_messaging.html

Issue 7740013: Cloning a bunch of stuff from the native_client repository at r6528 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 4 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
Index: ppapi/native_client/tests/ppapi_messaging/ppapi_messaging.html
===================================================================
--- ppapi/native_client/tests/ppapi_messaging/ppapi_messaging.html (revision 0)
+++ ppapi/native_client/tests/ppapi_messaging/ppapi_messaging.html (revision 0)
@@ -0,0 +1,64 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html>
+ <!-- Copyright 2011 Google Inc. All rights reserved. -->
+ <head>
+ <META HTTP-EQUIV="Pragma" CONTENT="no-cache" />
+ <META HTTP-EQUIV="Expires" CONTENT="-1" />
+ <script type="text/javascript" src="nacltest.js"></script>
+ <script type="application/x-javascript">
+ //<![CDATA[
+ function setupTests(tester, plugin) {
+ function TestPostMessageAndOnMessage(status, messageToSend) {
+ var listener = status.wrap(function(message) {
+ plugin.removeEventListener("message", listener, false);
+ status.log('Received onmessage event: ' + message.data);
+ // Verify the message received against the message sent.
+ status.assertEqual(message.data, messageToSend);
+ status.assertEqual(typeof(message.data), typeof(messageToSend));
+ status.pass();
+ });
+
+ plugin.addEventListener("message", listener, false);
+ plugin.postMessage(messageToSend);
+ }
+
+ tester.addAsyncTest('PPB/PPP_Messaging:String', function(status) {
+ TestPostMessageAndOnMessage(status, 'Some String Value');
+ });
+ tester.addAsyncTest('PPB/PPP_Messaging:Double', function(status) {
+ TestPostMessageAndOnMessage(status, 3.14); // dummy double value
+ });
+ tester.addAsyncTest('PPB/PPP_Messaging:Int', function(status) {
+ TestPostMessageAndOnMessage(status, 8); // dummy integer value
+ });
+ tester.addAsyncTest('PPB/PPP_Messaging:Null', function(status) {
+ TestPostMessageAndOnMessage(status, null);
+ });
+ tester.addAsyncTest('PPB/PPP_Messaging:Undefined', function(status) {
+ TestPostMessageAndOnMessage(status, undefined);
+ });
+ // TODO(dspringer): Add tests for other types like object, array, etc.
+ }
+ //]]>
+ </script>
+ <title>PPAPI PPB_Messaging Test</title>
+ </head>
+ <body>
+ <h1>PPAPI PPB_Messaging Test</h1>
+
+ <embed type="application/x-nacl" id="test_nexe"
+ name="nacl_module"
+ src="ppapi_messaging.nmf"
+ width="0" height="0" />
+
+ <script type="text/javascript">
+ //<![CDATA[
+ var tester = new Tester();
+ setupTests(tester, $('test_nexe'));
+ tester.waitFor($('test_nexe'));
+ tester.run();
+ //]]>
+ </script>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698