summaryrefslogtreecommitdiffstats
path: root/browser/components/places/tests/browser/browser_toolbar_drop_multiple_with_bookmarklet.js
blob: 729e456ca0a844699cccc443385f15510c175571 (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

add_task(async function test() {
  // Make sure the bookmarks bar is visible and restore its state on cleanup.
  let toolbar = document.getElementById("PersonalToolbar");
  ok(toolbar, "PersonalToolbar should not be null");

  await PlacesUtils.bookmarks.eraseEverything();

  if (toolbar.collapsed) {
    await promiseSetToolbarVisibility(toolbar, true);
    registerCleanupFunction(function () {
      return promiseSetToolbarVisibility(toolbar, false);
    });
  }
  // Setup the node we will use to be dropped. The actual node used does not
  // matter because we will set its data, effect, and mimeType manually.
  let placesItems = document.getElementById("PlacesToolbarItems");
  Assert.ok(placesItems, "PlacesToolbarItems should not be null");
  let simulateDragDrop = async function (aEffect, aMimeType) {
    let urls = [
      "https://example.com/1/",
      `javascript: (() => {alert('Hello, World!');})();`,
      "https://example.com/2/",
    ];

    let data = urls.map(spec => spec + "\n" + spec).join("\n");

    EventUtils.synthesizeDrop(
      toolbar,
      placesItems,
      [[{ type: aMimeType, data }]],
      aEffect,
      window
    );
    await PlacesTestUtils.promiseAsyncUpdates();
    for (let url of urls) {
      let bookmark = await PlacesUtils.bookmarks.fetch({ url });
      Assert.ok(!bookmark, "There should be no bookmark");
    }
  };

  // Simulate a bookmark drop for all of the mime types and effects.
  let mimeType = ["text/x-moz-url"];
  let effects = ["copy", "link"];
  for (let effect of effects) {
    await simulateDragDrop(effect, mimeType);
  }
});