summaryrefslogtreecommitdiffstats
path: root/devtools/client/storage/test/browser_storage_dynamic_updates_sessionStorage.js
blob: a6aa6890d5d29e868d67733d8d501f44bd62b63d (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
79
80
81
82
83
84
85
86
87
88
89
90
/* 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/. */

"use strict";

// Test dynamic updates in the storage inspector for sessionStorage.

add_task(async function () {
  await openTabAndSetupStorage(MAIN_DOMAIN_SECURED + "storage-updates.html");

  gUI.tree.expandAll();

  ok(gUI.sidebar.hidden, "Sidebar is initially hidden");

  await checkState([
    [
      ["sessionStorage", "https://test1.example.org"],
      ["ss1", "ss2", "ss3"],
    ],
  ]);

  await setSessionStorageItem("ss4", "new-item");

  await gUI.once("store-objects-edit");

  await checkState([
    [
      ["sessionStorage", "https://test1.example.org"],
      ["ss1", "ss2", "ss3", "ss4"],
    ],
  ]);

  // deleting item

  await removeSessionStorageItem("ss3");

  await gUI.once("store-objects-edit");

  await removeSessionStorageItem("ss1");

  await gUI.once("store-objects-edit");

  await checkState([
    [
      ["sessionStorage", "https://test1.example.org"],
      ["ss2", "ss4"],
    ],
  ]);

  await selectTableItem("ss2");

  ok(!gUI.sidebar.hidden, "sidebar is visible");

  // Checking for correct value in sidebar before update
  await findVariableViewProperties([{ name: "ss2", value: "foobar" }]);

  await setSessionStorageItem("ss2", "changed=ss2");

  await gUI.once("sidebar-updated");

  checkCell("ss2", "value", "changed=ss2");

  await findVariableViewProperties([{ name: "ss2", value: "changed=ss2" }]);

  // Clearing items.
  await SpecialPowers.spawn(gBrowser.selectedBrowser, [], function () {
    content.wrappedJSObject.clear();
  });

  await gUI.once("store-objects-cleared");

  await checkState([[["sessionStorage", "https://test1.example.org"], []]]);
});

async function setSessionStorageItem(key, value) {
  await SpecialPowers.spawn(
    gBrowser.selectedBrowser,
    [[key, value]],
    ([innerKey, innerValue]) => {
      content.wrappedJSObject.sessionStorage.setItem(innerKey, innerValue);
    }
  );
}

async function removeSessionStorageItem(key) {
  await SpecialPowers.spawn(gBrowser.selectedBrowser, [key], innerKey => {
    content.wrappedJSObject.sessionStorage.removeItem(innerKey);
  });
}