File: ContextMenuControllerTest.cpp

package info (click to toggle)
chromium-browser 57.0.2987.98-1~deb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 2,637,852 kB
  • ctags: 2,544,394
  • sloc: cpp: 12,815,961; ansic: 3,676,222; python: 1,147,112; asm: 526,608; java: 523,212; xml: 286,794; perl: 92,654; sh: 86,408; objc: 73,271; makefile: 27,698; cs: 18,487; yacc: 13,031; tcl: 12,957; pascal: 4,875; ml: 4,716; lex: 3,904; sql: 3,862; ruby: 1,982; lisp: 1,508; php: 1,368; exp: 404; awk: 325; csh: 117; jsp: 39; sed: 37
file content (125 lines) | stat: -rw-r--r-- 5,379 bytes parent folder | download
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "core/page/ContextMenuController.h"

#include "core/clipboard/DataTransfer.h"
#include "core/events/MouseEvent.h"
#include "core/frame/FrameView.h"
#include "core/frame/Settings.h"
#include "core/html/HTMLElement.h"
#include "core/testing/DummyPageHolder.h"
#include "platform/ContextMenu.h"
#include "testing/gtest/include/gtest/gtest.h"
#include <memory>

namespace blink {

class ContextMenuControllerTest : public testing::Test {
 protected:
  virtual void SetUp() {
    m_pageHolder = DummyPageHolder::create(IntSize(800, 600));
  }

  Document& document() const { return m_pageHolder->document(); }

  void setBodyInnerHTML(const String& htmlContent) {
    document().body()->setInnerHTML(htmlContent);
    document().view()->updateAllLifecyclePhases();
  }

 private:
  std::unique_ptr<DummyPageHolder> m_pageHolder;
};

TEST_F(ContextMenuControllerTest, TestCustomMenu) {
  document().settings()->setScriptEnabled(true);
  // Load the the test page.
  setBodyInnerHTML(
      "<button id=\"button_id\" contextmenu=\"menu_id\" style=\"height: 100px; "
      "width: 100px;\">"
      "<menu type=\"context\" id=\"menu_id\">"
      "<menuitem label=\"Item1\" onclick='document.title = \"Title 1\";'>"
      "<menuitem label=\"Item2\" onclick='document.title = \"Title 2\";'>"
      "<menuitem label=\"Item3\" onclick='document.title = \"Title 3\";'>"
      "<menu label='Submenu'>"
      "<menuitem label=\"Item4\" onclick='document.title = \"Title 4\";'>"
      "<menuitem label=\"Item5\" onclick='document.title = \"Title 5\";'>"
      "<menuitem label=\"Item6\" onclick='document.title = \"Title 6\";'>"
      "</menu>"
      "<menuitem id=\"item7\" type=\"checkbox\" checked label=\"Item7\""
      "onclick='if "
      "(document.getElementById(\"item7\").hasAttribute(\"checked\"))"
      "document.title = \"Title 7 checked\"; else document.title = \"Title 7 "
      "not checked\";'>"
      "<menuitem id=\"item8\" type=\"radio\" radiogroup=\"group\" "
      "label=\"Item8\""
      "onclick='if "
      "(document.getElementById(\"item8\").hasAttribute(\"checked\"))"
      "document.title = \"Title 8 checked\"; else if "
      "(document.getElementById(\"item9\").hasAttribute(\"checked\"))"
      "document.title = \"Title 8 not checked and Title 9 checked\";'>"
      "<menuitem id=\"item9\" type=\"radio\" radiogroup=\"group\" checked "
      "label=\"Item9\""
      "onclick='if "
      "(document.getElementById(\"item9\").hasAttribute(\"checked\"))"
      "document.title = \"Title 9 checked\"; else document.title = \"Title 9 "
      "not checked\";'>"
      "<menuitem id=\"item10\" type=\"radio\" radiogroup=\"group\" "
      "label=\"Item10\""
      "onclick='if "
      "(document.getElementById(\"item10\").hasAttribute(\"checked\"))"
      "document.title = \"Title 10 checked\"; else if "
      "(document.getElementById(\"item8\").hasAttribute(\"checked\"))"
      "document.title = \"Title 10 not checked and Title 8 checked\";'>"
      "</menu>"
      "</button>");

  // Create right button click event and pass it to context menu controller.
  Event* event = MouseEvent::create(
      EventTypeNames::click, false, false, document().domWindow(), 50, 50, 0, 0,
      0, 0, 0, PlatformEvent::NoModifiers, 1, 0, nullptr, TimeTicks(),
      PlatformMouseEvent::RealOrIndistinguishable, String(), nullptr);
  document().getElementById("button_id")->focus();
  event->setTarget(document().getElementById("button_id"));
  document().page()->contextMenuController().handleContextMenuEvent(event);

  // Item 1
  // Item 2
  // Item 3
  // Submenu > Item 4
  //           Item 5
  //           Item 6
  // *Item 7
  // Item 8
  // *Item 9
  // Item 10
  const Vector<ContextMenuItem>& items =
      document().page()->contextMenuController().contextMenu()->items();
  EXPECT_EQ(8u, items.size());
  EXPECT_EQ(ActionType, items[0].type());
  EXPECT_STREQ("Item1", items[0].title().utf8().data());
  document().page()->contextMenuController().contextMenuItemSelected(&items[0]);
  EXPECT_STREQ("Title 1", document().title().utf8().data());
  EXPECT_EQ(SubmenuType, items[3].type());
  EXPECT_STREQ("Submenu", items[3].title().utf8().data());
  const Vector<ContextMenuItem>& subMenuItems = items[3].subMenuItems();
  EXPECT_EQ(3u, subMenuItems.size());
  EXPECT_STREQ("Item6", subMenuItems[2].title().utf8().data());
  document().page()->contextMenuController().contextMenuItemSelected(
      &subMenuItems[2]);
  EXPECT_STREQ("Title 6", document().title().utf8().data());
  document().page()->contextMenuController().contextMenuItemSelected(&items[4]);
  EXPECT_STREQ("Title 7 checked", document().title().utf8().data());
  document().page()->contextMenuController().contextMenuItemSelected(&items[4]);
  EXPECT_STREQ("Title 7 not checked", document().title().utf8().data());
  document().page()->contextMenuController().contextMenuItemSelected(&items[5]);
  EXPECT_STREQ("Title 8 not checked and Title 9 checked",
               document().title().utf8().data());
  document().page()->contextMenuController().contextMenuItemSelected(&items[7]);
  EXPECT_STREQ("Title 10 not checked and Title 8 checked",
               document().title().utf8().data());
}

}  // namespace blink