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

Unified Diff: ppapi/native_client/tests/ppapi_browser/ppb_url_loader/ppapi_ppb_url_loader.js

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_browser/ppb_url_loader/ppapi_ppb_url_loader.js
===================================================================
--- ppapi/native_client/tests/ppapi_browser/ppb_url_loader/ppapi_ppb_url_loader.js (revision 0)
+++ ppapi/native_client/tests/ppapi_browser/ppb_url_loader/ppapi_ppb_url_loader.js (revision 0)
@@ -0,0 +1,36 @@
+// Copyright (c) 2011 The Native Client Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+function setupTests(tester, plugin) {
+ var kTests = ['TestStreamToFileSimple',
+ 'TestProgressSimple',
+ 'TestOpenSimple',
+ 'TestResponseInfoSimple',
+ 'TestCloseSimple',
+ 'TestReadSimple',
+
+ 'TestOpenReadMismatch',
+ 'TestAbort',
+ 'TestDoubleOpen',
+ 'TestOpenSuccess',
+ 'TestOpenRedirect',
+ 'TestOpenFailure',
+ 'TestStreamToFile',
+ ];
+
+
+ for (var i = 0; i < kTests.length; i++) {
+ var name = kTests[i];
+
+ // NOTE: closure semantics in JS will always use the
+ // last value of "name".
+ var f = function(n) {
+ return function(test) {
+ test.expectMessageSequence(plugin, [n +':PASSED']);
+ plugin.postMessage(n);
+ }} (name);
+
+ tester.addAsyncTest(name, f);
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698