1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /**
- * Any copyright is dedicated to the Public Domain.
- * http://creativecommons.org/publicdomain/zero/1.0/
- */
- var testGenerator = testSteps();
- function testSteps()
- {
- const name =
- this.window ? window.location.pathname : "test_wasm_cursors.js";
- const objectStoreName = "Wasm";
- const wasmData = { key: 1, value: null };
- if (!isWasmSupported()) {
- finishTest();
- yield undefined;
- }
- getWasmBinary('(module (func (nop)))');
- let binary = yield undefined;
- wasmData.value = getWasmModule(binary);
- info("Opening database");
- let request = indexedDB.open(name);
- request.onerror = errorHandler;
- request.onupgradeneeded = continueToNextStepSync;
- request.onsuccess = unexpectedSuccessHandler;
- yield undefined;
- // upgradeneeded
- request.onupgradeneeded = unexpectedSuccessHandler;
- request.onsuccess = continueToNextStepSync;
- info("Creating objectStore");
- request.result.createObjectStore(objectStoreName);
- yield undefined;
- // success
- let db = request.result;
- db.onerror = errorHandler;
- info("Storing wasm");
- let objectStore = db.transaction([objectStoreName], "readwrite")
- .objectStore(objectStoreName);
- request = objectStore.add(wasmData.value, wasmData.key);
- request.onsuccess = continueToNextStepSync;
- yield undefined;
- is(request.result, wasmData.key, "Got correct key");
- info("Opening cursor");
- request = objectStore.openCursor();
- request.addEventListener("error", new ExpectError("UnknownError", true));
- request.onsuccess = unexpectedSuccessHandler;
- yield undefined;
- finishTest();
- yield undefined;
- }
|