summaryrefslogtreecommitdiffstats
path: root/dom/indexedDB/test/unit/test_storage_manager_estimate.js
blob: 0e3dc2d351be7ae3c843a7a14e7cfada9eaeb31c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
var testGenerator = testSteps();

function testSteps()
{
  const name = this.window ? window.location.pathname :
	       "test_storage_manager_estimate.js";
  const objectStoreName = "storagesManager";
  const arraySize = 1e6;

  ok('estimate' in navigator.storage, 'Has estimate function');
  is(typeof navigator.storage.estimate, 'function', 'estimate is function');
  ok(navigator.storage.estimate() instanceof Promise,
     'estimate() method exists and returns a Promise');

  navigator.storage.estimate().then(estimation => {
    testGenerator.send(estimation.usage);
  });

  let before = yield undefined;

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

  let db = event.target.result;
  db.onerror = errorHandler;

  let objectStore = db.createObjectStore(objectStoreName, { });
  yield undefined;

  navigator.storage.estimate().then(estimation => {
    testGenerator.send(estimation.usage);
  });
  let usageAfterCreate = yield undefined;
  ok(usageAfterCreate > before, 'estimated usage must increase after createObjectStore');

  let txn = db.transaction(objectStoreName, "readwrite");
  objectStore = txn.objectStore(objectStoreName);
  objectStore.put(new Uint8Array(arraySize), 'k');
  txn.oncomplete = continueToNextStep;
  txn.onabort = errorHandler;
  txn.onerror = errorHandler;
  event = yield undefined;

  navigator.storage.estimate().then(estimation => {
    testGenerator.send(estimation.usage);
  });
  let usageAfterPut = yield undefined;
  ok(usageAfterPut > usageAfterCreate, 'estimated usage must increase after putting large object');
  db.close();

  finishTest();
  yield undefined;
}

function setup()
{
  SpecialPowers.pushPrefEnv({
    "set": [["dom.storageManager.enabled", true]]
  },  runTest);
}