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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/test/data/indexeddb/open_bad_db.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 function test() {
6 request = webkitIndexedDB.open('database-basics');
7 request.onupgradeneeded = upgradeNeeded;
8 request.onsuccess = onSuccess;
9 request.onerror = unexpectedErrorCallback;
10 request.onblocked = unexpectedBlockedCallback;
11 }
12
13 var gotUpgradeNeeded = false;
14 function upgradeNeeded() {
15 gotUpgradeNeeded = true;
16 }
17
18 function onSuccess(event) {
19 db = event.target.result;
20 debug("The pre-existing leveldb has an objectStore in 'database-basics',");
21 debug("ensure that it was blown away");
22 shouldBe("db.objectStoreNames.length", "0");
23 debug("We should have gotten an upgradeneeded event because the new empty");
24 debug("database doesn't have a version.");
25 shouldBeTrue("gotUpgradeNeeded");
26 done();
27 }
OLDNEW
« 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