diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /testing/web-platform/tests/IndexedDB/idbcursor-direction-index.htm | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'testing/web-platform/tests/IndexedDB/idbcursor-direction-index.htm')
-rw-r--r-- | testing/web-platform/tests/IndexedDB/idbcursor-direction-index.htm | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/testing/web-platform/tests/IndexedDB/idbcursor-direction-index.htm b/testing/web-platform/tests/IndexedDB/idbcursor-direction-index.htm new file mode 100644 index 000000000..39afcb24d --- /dev/null +++ b/testing/web-platform/tests/IndexedDB/idbcursor-direction-index.htm @@ -0,0 +1,81 @@ +<!DOCTYPE html> +<title>IDBCursor direction - index</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 position is defined, and source is an object store, the record's key is greater than position."> +<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 position is defined, and source is an object store, the record's key is less than position."> +<link rel=assert title="Set cursor's position to found record's key. If source is an index, set cursor's object store position to found record's value."> +<link rel=assert title="Set cursor's key to found record's key."> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<script src="support.js"></script> + +<script> + var records = [ "Alice", "Bob", "Bob", "Greg" ]; + 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"); + objStore.createIndex("idx", "name"); + + for (var i = 0; i < records.length; i++) + objStore.add({ name: records[i] }, i); + }; + + open_rq.onsuccess = function(e) { + var db = e.target.result; + db.onerror = fail_helper("db.onerror"); + + + // The tests + testdir('next', ['Alice:0', 'Bob:1', 'Bob:2', 'Greg:3']); + testdir('prev', ['Greg:3', 'Bob:2', 'Bob:1', 'Alice:0']); + testdir('nextunique', ['Alice:0', 'Bob:1', 'Greg:3']); + testdir('prevunique', ['Greg:3', 'Bob:1', 'Alice:0']); + + + // Test function + function testdir(dir, expect) { + var count = 0; + var t = tests[dir]; + var rq = db.transaction("test").objectStore("test").index("idx").openCursor(undefined, 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.name + ":" + cursor.primaryKey, 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> |