summaryrefslogtreecommitdiffstats
path: root/dom/localstorage/test/unit/test_corruptedDatabase.js
blob: da73bb92f630e84ac6161d1184d1fbe9e57f044d (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
64
65
66
67
68
69
70
71
72
73
/**
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/
 */

async function doTest(profile) {
  info("Testing profile " + profile);

  info("Clearing");

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

  info("Installing package");

  installPackage(profile);

  const principal = getPrincipal("http://example.org");

  let storage = getLocalStorage(principal);

  let length = storage.length;

  ok(length === 0, "Correct length");

  info("Resetting origin");

  request = resetOrigin(principal);
  await requestFinished(request);

  info("Getting usage");

  request = getOriginUsage(principal);
  await requestFinished(request);

  is(request.result.usage, 0, "Correct usage");
}

add_task(async function testSteps() {
  info("Setting pref");

  Services.prefs.setBoolPref(
    "dom.storage.enable_unsupported_legacy_implementation",
    false
  );

  // XXX This should be refactored into separate sub test cases.

  const profiles = [
    // This profile contains one localStorage, all localStorage related files, a
    // script for localStorage creation and the storage database:
    // - storage/default/http+++example.org/ls
    // - storage/ls-archive.sqlite
    // - create_db.js
    // - storage.sqlite
    // - webappsstore.sqlite
    // The file create_db.js in the package was run locally, specifically it was
    // temporarily added to xpcshell.ini and then executed:
    //   mach xpcshell-test --interactive dom/localstorage/test/unit/create_db.js
    // Note: to make it become the profile in the test, additional manual steps
    // are needed.
    // 1. Manually change first 6 chars in data.sqlite to "foobar".
    // 2. Remove the folder "storage/temporary".
    "corruptedDatabase_profile",
    // This profile is the same as corruptedDatabase_profile, except that the usage
    // file (storage/default/http+++example.org/ls/usage) is missing.
    "corruptedDatabase_missingUsageFile_profile",
  ];

  for (const profile of profiles) {
    await doTest(profile);
  }
});