summaryrefslogtreecommitdiffstats
path: root/browser/components/migration/tests/unit/test_Chrome_cookies.js
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2018-02-03 06:00:38 -0500
committerMatt A. Tobin <email@mattatobin.com>2018-02-03 06:00:38 -0500
commit8148615da179fdd60f19018e13b4e94b95609cc6 (patch)
tree771fccdd99fa3adf35fdd2c81d8197b415a89b91 /browser/components/migration/tests/unit/test_Chrome_cookies.js
parent494802c1be7888025b95260d23db187467d2b9dd (diff)
downloadUXP-8148615da179fdd60f19018e13b4e94b95609cc6.tar
UXP-8148615da179fdd60f19018e13b4e94b95609cc6.tar.gz
UXP-8148615da179fdd60f19018e13b4e94b95609cc6.tar.lz
UXP-8148615da179fdd60f19018e13b4e94b95609cc6.tar.xz
UXP-8148615da179fdd60f19018e13b4e94b95609cc6.zip
Remove browser tests - Part 1: The Tests (except for experiments)
Diffstat (limited to 'browser/components/migration/tests/unit/test_Chrome_cookies.js')
-rw-r--r--browser/components/migration/tests/unit/test_Chrome_cookies.js51
1 files changed, 0 insertions, 51 deletions
diff --git a/browser/components/migration/tests/unit/test_Chrome_cookies.js b/browser/components/migration/tests/unit/test_Chrome_cookies.js
deleted file mode 100644
index 006693951..000000000
--- a/browser/components/migration/tests/unit/test_Chrome_cookies.js
+++ /dev/null
@@ -1,51 +0,0 @@
-"use strict";
-
-Cu.import("resource://gre/modules/ForgetAboutSite.jsm");
-
-add_task(function* () {
- registerFakePath("ULibDir", do_get_file("Library/"));
- let migrator = MigrationUtils.getMigrator("chrome");
-
- Assert.ok(migrator.sourceExists, "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.
- yield 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 enumerator = Services.cookies.getCookiesFromHost(COOKIE.host, {});
- Assert.ok(enumerator.hasMoreElements(), "Cookies available");
- let foundCookie = enumerator.getNext().QueryInterface(Ci.nsICookie2);
-
- for (let prop of Object.keys(COOKIE)) {
- Assert.equal(foundCookie[prop], COOKIE[prop], "Check cookie " + prop);
- }
-
- // Cleanup.
- ForgetAboutSite.removeDataFromDomain(COOKIE.host);
- Assert.equal(Services.cookies.countCookiesFromHost(COOKIE.host), 0,
- "There are no cookies after cleanup");
-});