summaryrefslogtreecommitdiffstats
path: root/dom/quota/test/xpcshell/caching/make_unsetLastAccessTime.js
blob: 9be377e4f3fb67000de1b5a7ab153a321261347a (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
/*
  Any copyright is dedicated to the Public Domain.
  http://creativecommons.org/publicdomain/zero/1.0/
*/

async function testSteps() {
  const originDirPath = "storage/default/https+++foo.example.com";

  info("Initializing");

  let request = init();
  await requestFinished(request);

  info("Creating an empty origin directory");

  let originDir = getRelativeFile(originDirPath);
  originDir.create(Ci.nsIFile.DIRECTORY_TYPE, parseInt("0755", 8));

  info("Initializing temporary storage");

  request = initTemporaryStorage();
  await requestFinished(request);

  // The metadata file should be now restored.
}