summaryrefslogtreecommitdiffstats
path: root/toolkit/components/places/tests/unit/test_bookmark-tags-changed_frequency.js
blob: d7f0cf21c847b68956a566b2d088a9251f68e834 (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

// This test checks that changing a tag for a bookmark with multiple tags
// notifies bookmark-tags-changed event only once, and not once per tag.

add_task(async function run_test() {
  let tags = ["a", "b", "c"];
  let uri = Services.io.newURI("http://1.moz.org/");

  let bookmark = await PlacesUtils.bookmarks.insert({
    parentGuid: PlacesUtils.bookmarks.unfiledGuid,
    url: uri,
    title: "Bookmark 1",
  });
  PlacesUtils.tagging.tagURI(uri, tags);

  let promise = Promise.withResolvers();

  let bookmarksObserver = {
    _changedCount: 0,
    handlePlacesEvents(events) {
      for (let event of events) {
        switch (event.type) {
          case "bookmark-removed":
            if (event.guid == bookmark.guid) {
              PlacesUtils.observers.removeListener(
                ["bookmark-removed"],
                this.handlePlacesEvents
              );
              Assert.equal(this._changedCount, 2);
              promise.resolve();
            }
            break;
          case "bookmark-tags-changed":
            Assert.equal(event.guid, bookmark.guid);
            this._changedCount++;
            break;
        }
      }
    },
  };
  bookmarksObserver.handlePlacesEvents =
    bookmarksObserver.handlePlacesEvents.bind(bookmarksObserver);
  PlacesUtils.observers.addListener(
    ["bookmark-removed", "bookmark-tags-changed"],
    bookmarksObserver.handlePlacesEvents
  );

  PlacesUtils.tagging.tagURI(uri, ["d"]);
  PlacesUtils.tagging.tagURI(uri, ["e"]);

  await promise;

  await PlacesUtils.bookmarks.remove(bookmark.guid);
});