summaryrefslogtreecommitdiffstats
path: root/devtools/client/storage/test/browser_storage_dynamic_updates_localStorage.js
blob: 35912ce3a2a758912657117a9c91aab94eb4c08a (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
/* 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 localStorage.

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

  gUI.tree.expandAll();

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

  yield checkState([
    [
      ["localStorage", "http://test1.example.org"],
      ["ls1", "ls2", "ls3", "ls4", "ls5", "ls6", "ls7"]
    ],
  ]);

  gWindow.localStorage.removeItem("ls4");

  yield gUI.once("store-objects-updated");

  yield checkState([
    [
      ["localStorage", "http://test1.example.org"],
      ["ls1", "ls2", "ls3", "ls5", "ls6", "ls7"]
    ],
  ]);

  gWindow.localStorage.setItem("ls4", "again");

  yield gUI.once("store-objects-updated");
  yield gUI.once("store-objects-updated");

  yield checkState([
    [
      ["localStorage", "http://test1.example.org"],
      ["ls1", "ls2", "ls3", "ls4", "ls5", "ls6", "ls7"]
    ],
  ]);
  // Updating a row
  gWindow.localStorage.setItem("ls2", "ls2-changed");

  yield gUI.once("store-objects-updated");
  yield gUI.once("store-objects-updated");

  checkCell("ls2", "value", "ls2-changed");

  // Clearing items. Bug 1233497 makes it so that we can no longer yield
  // CPOWs from Tasks. We work around this by calling clear via a ContentTask
  // instead.
  yield ContentTask.spawn(gBrowser.selectedBrowser, null, function* () {
    return Task.spawn(content.wrappedJSObject.clear);
  });

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

  yield checkState([
    [
      ["localStorage", "http://test1.example.org"],
      [ ]
    ],
  ]);

  yield finishTests();
});