summaryrefslogtreecommitdiffstats
path: root/browser/components/places/tests/browser/browser_paste_resets_cut_highlights.js
blob: caa73d137f34660c53bc3330ecc3b7e315a032bb (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
91
92
93
94
95
96
97
98
99
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

const TEST_URL = "http://example.com/";
const TEST_URL1 = "https://example.com/otherbrowser/";

var PlacesOrganizer;
var ContentTree;

add_setup(async function () {
  await PlacesUtils.bookmarks.eraseEverything();
  let organizer = await promiseLibrary();

  registerCleanupFunction(async function () {
    await promiseLibraryClosed(organizer);
    await PlacesUtils.bookmarks.eraseEverything();
  });

  PlacesOrganizer = organizer.PlacesOrganizer;
  ContentTree = organizer.ContentTree;
});

add_task(async function paste() {
  info("Selecting BookmarksToolbar in the left pane");
  PlacesOrganizer.selectLeftPaneBuiltIn("BookmarksToolbar");

  let bookmarks = await PlacesUtils.bookmarks.insertTree({
    guid: PlacesUtils.bookmarks.toolbarGuid,
    children: [
      {
        url: TEST_URL,
        title: "0",
      },
      {
        url: TEST_URL1,
        title: "1",
      },
    ],
  });

  Assert.equal(
    ContentTree.view.view.rowCount,
    2,
    "Should have the right amount of items in the view"
  );

  ContentTree.view.selectItems([bookmarks[0].guid]);

  await promiseClipboard(() => {
    info("Cutting selection");
    ContentTree.view.controller.cut();
  }, PlacesUtils.TYPE_X_MOZ_PLACE);

  assertItemsHighlighted(1);

  ContentTree.view.selectItems([bookmarks[1].guid]);

  info("Pasting clipboard");
  await ContentTree.view.controller.paste();

  assertItemsHighlighted(0);

  // And now repeat the other way around to make sure.

  await promiseClipboard(() => {
    info("Cutting selection");
    ContentTree.view.controller.cut();
  }, PlacesUtils.TYPE_X_MOZ_PLACE);

  assertItemsHighlighted(1);

  ContentTree.view.selectItems([bookmarks[0].guid]);

  info("Pasting clipboard");
  await ContentTree.view.controller.paste();

  assertItemsHighlighted(0);
});

function assertItemsHighlighted(expectedItems) {
  let column = ContentTree.view.view._tree.columns[0];
  // Check the properties of the cells to make sure nothing has a cut highlight.
  let highlighedItems = 0;
  for (let i = 0; i < ContentTree.view.view.rowCount; i++) {
    if (
      ContentTree.view.view.getCellProperties(i, column).includes("cutting")
    ) {
      highlighedItems++;
    }
  }

  Assert.equal(
    highlighedItems,
    expectedItems,
    "Should have the correct amount of items highlighed"
  );
}