Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Firefox/dom/indexedDB/test/unit/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  test_global_data.js   Sprache: JAVA

 
/**
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/
 */


/* exported testGenerator */
var testGenerator = testSteps();

function* testSteps() {
  const name = this.window ? window.location.pathname : "Splendid Test";
  const objectStore = {
    name: "Objects",
    options: { keyPath: "id", autoIncrement: true },
  };

  let request = indexedDB.open(name, 1);
  request.onerror = errorHandler;
  request.onupgradeneeded = grabEventAndContinueHandler;
  let event = yield undefined;

  let db1 = event.target.result;

  is(db1.objectStoreNames.length, 0, "No objectStores in db1");

  db1.createObjectStore(objectStore.name, objectStore.options);

  continueToNextStep();
  yield undefined;

  request = indexedDB.open(name, 1);
  request.onerror = errorHandler;
  request.onsuccess = grabEventAndContinueHandler;
  event = yield undefined;

  let db2 = event.target.result;

  ok(db1 !== db2, "Databases are not the same object");

  is(db1.objectStoreNames.length, 1, "1 objectStore in db1");
  is(db1.objectStoreNames.item(0), objectStore.name, "Correct name");

  is(db2.objectStoreNames.length, 1, "1 objectStore in db2");
  is(db2.objectStoreNames.item(0), objectStore.name, "Correct name");

  let objectStore1 = db1
    .transaction(objectStore.name)
    .objectStore(objectStore.name);
  is(objectStore1.name, objectStore.name, "Same name");
  is(objectStore1.keyPath, objectStore.options.keyPath, "Same keyPath");

  let objectStore2 = db2
    .transaction(objectStore.name)
    .objectStore(objectStore.name);

  ok(objectStore1 !== objectStore2, "Different objectStores");
  is(objectStore1.name, objectStore2.name, "Same name");
  is(objectStore1.keyPath, objectStore2.keyPath, "Same keyPath");

  finishTest();
}

Messung V0.5
C=97 H=100 G=98

¤ Dauer der Verarbeitung: 0.23 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.