summaryrefslogtreecommitdiffstats
path: root/devtools/client/storage/test/browser_storage_cookies_delete_all.js
blob: 6e6008e662e9ac05d5914deee9b7dc27745093f3 (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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

/* import-globals-from ../../framework/test/shared-head.js */

"use strict";

// Test deleting all cookies

function* performDelete(store, rowName, deleteAll) {
  let contextMenu = gPanelWindow.document.getElementById(
    "storage-table-popup");
  let menuDeleteAllItem = contextMenu.querySelector(
    "#storage-table-popup-delete-all");
  let menuDeleteAllFromItem = contextMenu.querySelector(
    "#storage-table-popup-delete-all-from");

  let storeName = store.join(" > ");

  yield selectTreeItem(store);

  let eventWait = gUI.once("store-objects-updated");

  let cells = getRowCells(rowName);
  yield waitForContextMenu(contextMenu, cells.name, () => {
    info(`Opened context menu in ${storeName}, row '${rowName}'`);
    if (deleteAll) {
      menuDeleteAllItem.click();
    } else {
      menuDeleteAllFromItem.click();
      let hostName = cells.host.value;
      ok(menuDeleteAllFromItem.getAttribute("label").includes(hostName),
        `Context menu item label contains '${hostName}'`);
    }
  });

  yield eventWait;
}

add_task(function* () {
  yield openTabAndSetupStorage(MAIN_DOMAIN + "storage-listings.html");

  info("test state before delete");
  yield checkState([
    [["cookies", "test1.example.org"], ["c1", "c3", "cs2", "uc1"]],
    [["cookies", "sectest1.example.org"], ["cs2", "sc1", "uc1"]],
  ]);

  info("delete all from domain");
  // delete only cookies that match the host exactly
  yield performDelete(["cookies", "test1.example.org"], "c1", false);

  info("test state after delete all from domain");
  yield checkState([
    // Domain cookies (.example.org) must not be deleted.
    [["cookies", "test1.example.org"], ["cs2", "uc1"]],
    [["cookies", "sectest1.example.org"], ["cs2", "sc1", "uc1"]],
  ]);

  info("delete all");
  // delete all cookies for host, including domain cookies
  yield performDelete(["cookies", "sectest1.example.org"], "uc1", true);

  info("test state after delete all");
  yield checkState([
    // Domain cookies (.example.org) are deleted too, so deleting in sectest1
    // also removes stuff from test1.
    [["cookies", "test1.example.org"], []],
    [["cookies", "sectest1.example.org"], []],
  ]);

  yield finishTests();
});