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

Unified Diff: content/test/data/indexeddb/open_bad_db.js

Issue 11196029: Test for destroying leveldb directory when we detect a schema downgrade (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix initializer Created 8 years, 1 month 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 | « content/test/data/indexeddb/open_bad_db.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/data/indexeddb/open_bad_db.js
diff --git a/content/test/data/indexeddb/open_bad_db.js b/content/test/data/indexeddb/open_bad_db.js
new file mode 100644
index 0000000000000000000000000000000000000000..2b360be03c7d2635f3ebc64c3fd63f45da4a6381
--- /dev/null
+++ b/content/test/data/indexeddb/open_bad_db.js
@@ -0,0 +1,27 @@
+// Copyright (c) 2012 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 test() {
+ request = webkitIndexedDB.open('database-basics');
+ request.onupgradeneeded = upgradeNeeded;
+ request.onsuccess = onSuccess;
+ request.onerror = unexpectedErrorCallback;
+ request.onblocked = unexpectedBlockedCallback;
+}
+
+var gotUpgradeNeeded = false;
+function upgradeNeeded() {
+ gotUpgradeNeeded = true;
+}
+
+function onSuccess(event) {
+ db = event.target.result;
+ debug("The pre-existing leveldb has an objectStore in 'database-basics',");
+ debug("ensure that it was blown away");
+ shouldBe("db.objectStoreNames.length", "0");
+ debug("We should have gotten an upgradeneeded event because the new empty");
+ debug("database doesn't have a version.");
+ shouldBeTrue("gotUpgradeNeeded");
+ done();
+}
« no previous file with comments | « content/test/data/indexeddb/open_bad_db.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698