summaryrefslogtreecommitdiffstats
path: root/browser/components/migration/tests/unit/test_Chrome_cookies.js
blob: b738c1d1bcfcdbd9c2f05cca7aeae642609142a5 (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
"use strict";

const { ForgetAboutSite } = ChromeUtils.import(
  "resource://gre/modules/ForgetAboutSite.jsm"
);

add_task(async function() {
  registerFakePath("ULibDir", do_get_file("Library/"));
  let migrator = await MigrationUtils.getMigrator("chrome");

  Assert.ok(
    await migrator.isSourceAvailable(),
    "Sanity check the source exists"
  );

  const COOKIE = {
    expiry: 2145934800,
    host: "unencryptedcookie.invalid",
    isHttpOnly: false,
    isSession: false,
    name: "testcookie",
    path: "/",
    value: "testvalue",
  };

  // Sanity check.
  Assert.equal(
    Services.cookies.countCookiesFromHost(COOKIE.host),
    0,
    "There are no cookies initially"
  );

  const PROFILE = {
    id: "Default",
    name: "Person 1",
  };

  // Migrate unencrypted cookies.
  await promiseMigration(
    migrator,
    MigrationUtils.resourceTypes.COOKIES,
    PROFILE
  );

  Assert.equal(
    Services.cookies.countCookiesFromHost(COOKIE.host),
    1,
    "Migrated the expected number of unencrypted cookies"
  );
  Assert.equal(
    Services.cookies.countCookiesFromHost("encryptedcookie.invalid"),
    0,
    "Migrated the expected number of encrypted cookies"
  );

  // Now check the cookie details.
  let cookies = Services.cookies.getCookiesFromHost(COOKIE.host, {});
  Assert.ok(cookies.length, "Cookies available");
  let foundCookie = cookies[0];

  for (let prop of Object.keys(COOKIE)) {
    Assert.equal(foundCookie[prop], COOKIE[prop], "Check cookie " + prop);
  }

  // Cleanup.
  await ForgetAboutSite.removeDataFromDomain(COOKIE.host);
  Assert.equal(
    Services.cookies.countCookiesFromHost(COOKIE.host),
    0,
    "There are no cookies after cleanup"
  );
});