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

Unified Diff: chrome/test/data/fileapi/common.js

Issue 7715024: Add browser_tests for FileAPI with Quota. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Rebased. Created 9 years, 3 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 | « chrome/chrome_tests.gypi ('k') | chrome/test/data/fileapi/create_test.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/fileapi/common.js
diff --git a/chrome/test/data/fileapi/common.js b/chrome/test/data/fileapi/common.js
new file mode 100644
index 0000000000000000000000000000000000000000..3fc52dfc954effcbd3e166b6a14b780dfe4e62b4
--- /dev/null
+++ b/chrome/test/data/fileapi/common.js
@@ -0,0 +1,53 @@
+// Copyright (c) 2011 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.
+
+function debug(message)
+{
+ document.getElementById('status').innerHTML += '<br/>' + message;
+}
+
+function done(message)
+{
+ if (document.location.hash == '#fail')
+ return;
+ if (message)
+ debug('PASS: ' + message);
+ else
+ debug('PASS');
+ document.location.hash = '#pass';
+}
+
+function fail(message)
+{
+ debug('FAILED: ' + message);
+ document.location.hash = '#fail';
+}
+
+function getLog()
+{
+ return '' + document.getElementById('status').innerHTML;
+}
+
+function fileErrorToString(e)
+{
+ switch (e.code) {
+ case FileError.QUOTA_EXCEEDED_ERR:
+ return 'QUOTA_EXCEEDED_ERR';
+ case FileError.NOT_FOUND_ERR:
+ return 'NOT_FOUND_ERR';
+ case FileError.SECURITY_ERR:
+ return 'SECURITY_ERR';
+ case FileError.INVALID_MODIFICATION_ERR:
+ return 'INVALID_MODIFICATION_ERR';
+ case FileError.INVALID_STATE_ERR:
+ return 'INVALID_STATE_ERR';
+ default:
+ return 'Unknown Error';
+ }
+}
+
+function unexpectedErrorCallback(e)
+{
+ fail('unexpectedErrorCallback:' + fileErrorToString(e));
+}
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/test/data/fileapi/create_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698