summaryrefslogtreecommitdiffstats
path: root/dom/localstorage/test/unit/test_archive.js
blob: 51af78db1b24cc334691f084032b467163c1a2fa (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
74
75
76
77
78
/**
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/
 */

add_task(async function testSteps() {
  const lsArchiveFile = "storage/ls-archive.sqlite";

  const principalInfo = {
    url: "http://example.com",
    attrs: {},
  };

  function checkStorage() {
    let principal = getPrincipal(principalInfo.url, principalInfo.attrs);
    let storage = getLocalStorage(principal);
    try {
      storage.open();
      ok(true, "Did not throw");
    } catch (ex) {
      ok(false, "Should not have thrown");
    }
  }

  info("Setting pref");

  Services.prefs.setBoolPref("dom.storage.next_gen", true);

  info("Sub test case 1 - Archive file is a directory.");

  info("Clearing");

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

  let archiveFile = getRelativeFile(lsArchiveFile);

  archiveFile.create(Ci.nsIFile.DIRECTORY_TYPE, parseInt("0755", 8));

  checkStorage();

  info("Sub test case 2 - Corrupted archive file.");

  info("Clearing");

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

  let ostream = Cc["@mozilla.org/network/file-output-stream;1"].createInstance(
    Ci.nsIFileOutputStream
  );
  ostream.init(archiveFile, -1, parseInt("0644", 8), 0);
  ostream.write("foobar", 6);
  ostream.close();

  checkStorage();

  info("Sub test case 3 - Nonupdateable archive file.");

  info("Clearing");

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

  info("Installing package");

  // The profile contains storage.sqlite and storage/ls-archive.sqlite
  // storage/ls-archive.sqlite was taken from FF 54 to force an upgrade.
  // There's just one record in the webappsstore2 table. The record was
  // modified by renaming the origin attribute userContextId to userContextKey.
  // This triggers an error during the upgrade.
  installPackage("archive_profile");

  let fileSize = archiveFile.fileSize;
  ok(fileSize > 0, "archive file size is greater than zero");

  checkStorage();
});