| Index: LayoutTests/imported/web-platform-tests/IndexedDB/idbcursor-direction-objectstore-keyrange.htm
|
| diff --git a/LayoutTests/imported/web-platform-tests/IndexedDB/idbcursor-direction-objectstore-keyrange.htm b/LayoutTests/imported/web-platform-tests/IndexedDB/idbcursor-direction-objectstore-keyrange.htm
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..9ae7ef52ccc5bd54eaf4c00dcad1cab812ce0d0b
|
| --- /dev/null
|
| +++ b/LayoutTests/imported/web-platform-tests/IndexedDB/idbcursor-direction-objectstore-keyrange.htm
|
| @@ -0,0 +1,77 @@
|
| +<!DOCTYPE html>
|
| +<title>IDBCursor direction - object store with keyrange</title>
|
| +<link rel="author" href="mailto:odinho@opera.com" title="Odin Hørthe Omdal">
|
| +<link rel=help href="http://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html#cursor-iteration-operation">
|
| +<link rel=assert title='If direction is "next", let found record be the first record in records which satisfy all of the following requirements'>
|
| +<link rel=assert title='If direction is "prev", let found record be the last record in records which satisfy all of the following requirements'>
|
| +<link rel=assert title="If range is defined, the record's key is in range.">
|
| +<script src="../../../resources/testharness.js"></script>
|
| +<script src="../../../resources/testharnessreport.js"></script>
|
| +<script src="support.js"></script>
|
| +
|
| +<script>
|
| + var records = [ 1337, "Alice", "Bob", "Greg", "Åke", ["Anne"] ];
|
| + var directions = ["next", "prev", "nextunique", "prevunique"];
|
| + var tests = {};
|
| +
|
| + directions.forEach(function(dir) {
|
| + tests[dir] = async_test(document.title + ' - ' + dir);
|
| + });
|
| +
|
| + var open_rq = indexedDB.open("testdb-" + new Date().getTime() + Math.random());
|
| +
|
| + open_rq.onupgradeneeded = function(e) {
|
| + var objStore = e.target.result.createObjectStore("test");
|
| +
|
| + for (var i = 0; i < records.length; i++)
|
| + objStore.add(records[i], records[i]);
|
| + };
|
| +
|
| + open_rq.onsuccess = function(e) {
|
| + var db = e.target.result;
|
| + db.onerror = fail_helper("db.onerror");
|
| +
|
| +
|
| + // The tests
|
| + testdir('next', ['Alice', 'Bob', 'Greg']);
|
| + testdir('prev', ['Greg', 'Bob', 'Alice']);
|
| + testdir('nextunique', ['Alice', 'Bob', 'Greg']);
|
| + testdir('prevunique', ['Greg', 'Bob', 'Alice']);
|
| +
|
| +
|
| + // Test function
|
| + function testdir(dir, expect) {
|
| + var count = 0;
|
| + var t = tests[dir];
|
| + var rq = db.transaction("test").objectStore("test").openCursor(IDBKeyRange.bound("AA", "ZZ"), dir);
|
| + rq.onsuccess = t.step_func(function(e) {
|
| + var cursor = e.target.result;
|
| + if (!cursor) {
|
| + assert_equals(count, expect.length, "cursor runs");
|
| + t.done();
|
| + }
|
| + assert_equals(cursor.value, expect[count], "cursor.value");
|
| + count++;
|
| + cursor.continue();
|
| + });
|
| + rq.onerror = t.step_func(function(e) {
|
| + e.preventDefault();
|
| + e.stopPropagation();
|
| + assert_unreached("rq.onerror - " + e.message);
|
| + });
|
| + }
|
| + };
|
| +
|
| + // Fail handling
|
| + function fail_helper(name) {
|
| + return function() {
|
| + directions.forEach(function(dir) {
|
| + tests[dir].step(function() { assert_unreached(name); });
|
| + });
|
| + };
|
| + }
|
| + open_rq.onblocked = fail_helper('open_rq.onblocked');
|
| + open_rq.onerror = fail_helper('open_rq.onerror');
|
| +</script>
|
| +
|
| +<div id=log> </div>
|
|
|