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 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513
|
/*
* Copyright (C) 2010 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Google Inc. nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include <gtest/gtest.h>
#include <webkit/support/webkit_support.h>
#include "Color.h"
#include "Element.h"
#include "FrameView.h"
#include "HTMLSelectElement.h"
#include "KeyboardCodes.h"
#include "PopupContainer.h"
#include "PopupMenu.h"
#include "PopupMenuClient.h"
#include "PopupMenuChromium.h"
#include "RuntimeEnabledFeatures.h"
#include "URLTestHelpers.h"
#include "WebDocument.h"
#include "WebElement.h"
#include "WebFrame.h"
#include "WebFrameClient.h"
#include "WebFrameImpl.h"
#include "WebInputEvent.h"
#include "WebPopupMenuImpl.h"
#include "WebScreenInfo.h"
#include "WebSettings.h"
#include "platform/WebString.h"
#include "platform/WebURL.h"
#include "platform/WebURLRequest.h"
#include "platform/WebURLResponse.h"
#include "WebView.h"
#include "WebViewClient.h"
#include "WebViewImpl.h"
#include "v8.h"
using namespace WebCore;
using namespace WebKit;
using WebKit::URLTestHelpers::toKURL;
namespace {
class TestPopupMenuClient : public PopupMenuClient {
public:
// Item at index 0 is selected by default.
TestPopupMenuClient() : m_selectIndex(0), m_node(0) { }
virtual ~TestPopupMenuClient() {}
virtual void valueChanged(unsigned listIndex, bool fireEvents = true)
{
m_selectIndex = listIndex;
if (m_node) {
HTMLSelectElement* select = toHTMLSelectElement(m_node);
select->optionSelectedByUser(select->listToOptionIndex(listIndex), fireEvents);
}
}
virtual void selectionChanged(unsigned, bool) {}
virtual void selectionCleared() {}
virtual String itemText(unsigned listIndex) const
{
String str("Item ");
str.append(String::number(listIndex));
return str;
}
virtual String itemLabel(unsigned) const { return String(); }
virtual String itemIcon(unsigned) const { return String(); }
virtual String itemToolTip(unsigned listIndex) const { return itemText(listIndex); }
virtual String itemAccessibilityText(unsigned listIndex) const { return itemText(listIndex); }
virtual bool itemIsEnabled(unsigned listIndex) const { return m_disabledIndexSet.find(listIndex) == m_disabledIndexSet.end(); }
virtual PopupMenuStyle itemStyle(unsigned listIndex) const
{
Font font(FontPlatformData(12.0, false, false), false);
return PopupMenuStyle(Color::black, Color::white, font, true, false, Length(), TextDirection(), false /* has text direction override */);
}
virtual PopupMenuStyle menuStyle() const { return itemStyle(0); }
virtual int clientInsetLeft() const { return 0; }
virtual int clientInsetRight() const { return 0; }
virtual LayoutUnit clientPaddingLeft() const { return 0; }
virtual LayoutUnit clientPaddingRight() const { return 0; }
virtual int listSize() const { return 10; }
virtual int selectedIndex() const { return m_selectIndex; }
virtual void popupDidHide() { }
virtual bool itemIsSeparator(unsigned listIndex) const { return false; }
virtual bool itemIsLabel(unsigned listIndex) const { return false; }
virtual bool itemIsSelected(unsigned listIndex) const { return listIndex == m_selectIndex; }
virtual bool shouldPopOver() const { return false; }
virtual bool valueShouldChangeOnHotTrack() const { return false; }
virtual void setTextFromItem(unsigned listIndex) { }
virtual FontSelector* fontSelector() const { return 0; }
virtual HostWindow* hostWindow() const { return 0; }
virtual PassRefPtr<Scrollbar> createScrollbar(ScrollableArea*, ScrollbarOrientation, ScrollbarControlSize) { return 0; }
void setDisabledIndex(unsigned index) { m_disabledIndexSet.insert(index); }
void setFocusedNode(Node* node) { m_node = node; }
private:
unsigned m_selectIndex;
std::set<unsigned> m_disabledIndexSet;
Node* m_node;
};
class TestWebWidgetClient : public WebWidgetClient {
public:
~TestWebWidgetClient() { }
};
class TestWebPopupMenuImpl : public WebPopupMenuImpl {
public:
static PassRefPtr<TestWebPopupMenuImpl> create(WebWidgetClient* client)
{
return adoptRef(new TestWebPopupMenuImpl(client));
}
~TestWebPopupMenuImpl() { }
private:
TestWebPopupMenuImpl(WebWidgetClient* client) : WebPopupMenuImpl(client) { }
};
class TestWebViewClient : public WebViewClient {
public:
TestWebViewClient() : m_webPopupMenu(TestWebPopupMenuImpl::create(&m_webWidgetClient)) { }
~TestWebViewClient() { }
virtual WebWidget* createPopupMenu(WebPopupType) { return m_webPopupMenu.get(); }
// We need to override this so that the popup menu size is not 0
// (the layout code checks to see if the popup fits on the screen).
virtual WebScreenInfo screenInfo()
{
WebScreenInfo screenInfo;
screenInfo.availableRect.height = 2000;
screenInfo.availableRect.width = 2000;
return screenInfo;
}
private:
TestWebWidgetClient m_webWidgetClient;
RefPtr<TestWebPopupMenuImpl> m_webPopupMenu;
};
class TestWebFrameClient : public WebFrameClient {
public:
~TestWebFrameClient() { }
};
class SelectPopupMenuTest : public testing::Test {
public:
SelectPopupMenuTest()
: baseURL("http://www.test.com/")
{
}
protected:
virtual void SetUp()
{
m_webView = static_cast<WebViewImpl*>(WebView::create(&m_webviewClient));
m_webView->initializeMainFrame(&m_webFrameClient);
m_popupMenu = adoptRef(new PopupMenuChromium(&m_popupMenuClient));
}
virtual void TearDown()
{
m_popupMenu = 0;
m_webView->close();
webkit_support::UnregisterAllMockedURLs();
}
// Returns true if there currently is a select popup in the WebView.
bool popupOpen() const { return m_webView->selectPopup(); }
int selectedIndex() const { return m_popupMenuClient.selectedIndex(); }
void showPopup()
{
m_popupMenu->show(IntRect(0, 0, 100, 100),
static_cast<WebFrameImpl*>(m_webView->mainFrame())->frameView(), 0);
ASSERT_TRUE(popupOpen());
EXPECT_TRUE(m_webView->selectPopup()->popupType() == PopupContainer::Select);
}
void hidePopup()
{
m_popupMenu->hide();
EXPECT_FALSE(popupOpen());
}
void simulateKeyDownEvent(int keyCode)
{
simulateKeyEvent(WebInputEvent::RawKeyDown, keyCode);
}
void simulateKeyUpEvent(int keyCode)
{
simulateKeyEvent(WebInputEvent::KeyUp, keyCode);
}
// Simulates a key event on the WebView.
// The WebView forwards the event to the select popup if one is open.
void simulateKeyEvent(WebInputEvent::Type eventType, int keyCode)
{
WebKeyboardEvent keyEvent;
keyEvent.windowsKeyCode = keyCode;
keyEvent.type = eventType;
m_webView->handleInputEvent(keyEvent);
}
// Simulates a mouse event on the select popup.
void simulateLeftMouseDownEvent(const IntPoint& point)
{
PlatformMouseEvent mouseEvent(point, point, LeftButton, PlatformEvent::MousePressed,
1, false, false, false, false, 0);
m_webView->selectPopup()->handleMouseDownEvent(mouseEvent);
}
void simulateLeftMouseUpEvent(const IntPoint& point)
{
PlatformMouseEvent mouseEvent(point, point, LeftButton, PlatformEvent::MouseReleased,
1, false, false, false, false, 0);
m_webView->selectPopup()->handleMouseReleaseEvent(mouseEvent);
}
void registerMockedURLLoad(const std::string& fileName)
{
URLTestHelpers::registerMockedURLLoad(toKURL(baseURL + fileName), WebString::fromUTF8(fileName.c_str()), WebString::fromUTF8("popup/"), WebString::fromUTF8("text/html"));
}
void serveRequests()
{
webkit_support::ServeAsynchronousMockedRequests();
}
void loadFrame(WebFrame* frame, const std::string& fileName)
{
WebURLRequest urlRequest;
urlRequest.initialize();
urlRequest.setURL(WebURL(toKURL(baseURL + fileName)));
frame->loadRequest(urlRequest);
}
protected:
TestWebViewClient m_webviewClient;
WebViewImpl* m_webView;
TestWebFrameClient m_webFrameClient;
TestPopupMenuClient m_popupMenuClient;
RefPtr<PopupMenu> m_popupMenu;
std::string baseURL;
};
// Tests that show/hide and repeats. Select popups are reused in web pages when
// they are reopened, that what this is testing.
TEST_F(SelectPopupMenuTest, ShowThenHide)
{
for (int i = 0; i < 3; i++) {
showPopup();
hidePopup();
}
}
// Tests that showing a select popup and deleting it does not cause problem.
// This happens in real-life if a page navigates while a select popup is showing.
TEST_F(SelectPopupMenuTest, ShowThenDelete)
{
showPopup();
// Nothing else to do, TearDown() deletes the popup.
}
// Tests that losing focus closes the select popup.
TEST_F(SelectPopupMenuTest, ShowThenLoseFocus)
{
showPopup();
// Simulate losing focus.
m_webView->setFocus(false);
// Popup should have closed.
EXPECT_FALSE(popupOpen());
}
// Tests that pressing ESC closes the popup.
TEST_F(SelectPopupMenuTest, ShowThenPressESC)
{
showPopup();
simulateKeyDownEvent(VKEY_ESCAPE);
// Popup should have closed.
EXPECT_FALSE(popupOpen());
}
// Tests selecting an item with the arrows and enter/esc/tab.
TEST_F(SelectPopupMenuTest, SelectWithKeys)
{
showPopup();
// Simulate selecting the 2nd item by pressing Down, Down, enter.
simulateKeyDownEvent(VKEY_DOWN);
simulateKeyDownEvent(VKEY_DOWN);
simulateKeyDownEvent(VKEY_RETURN);
// Popup should have closed.
EXPECT_TRUE(!popupOpen());
EXPECT_EQ(2, selectedIndex());
// It should work as well with ESC.
showPopup();
simulateKeyDownEvent(VKEY_DOWN);
simulateKeyDownEvent(VKEY_ESCAPE);
EXPECT_FALSE(popupOpen());
EXPECT_EQ(3, selectedIndex());
// It should work as well with TAB.
showPopup();
simulateKeyDownEvent(VKEY_DOWN);
simulateKeyDownEvent(VKEY_TAB);
EXPECT_FALSE(popupOpen());
EXPECT_EQ(4, selectedIndex());
}
// Tests that selecting an item with the mouse does select the item and close
// the popup.
TEST_F(SelectPopupMenuTest, ClickItem)
{
showPopup();
int menuItemHeight = m_webView->selectPopup()->menuItemHeight();
// menuItemHeight * 1.5 means the Y position on the item at index 1.
IntPoint row1Point(2, menuItemHeight * 1.5);
// Simulate a click down/up on the first item.
simulateLeftMouseDownEvent(row1Point);
simulateLeftMouseUpEvent(row1Point);
// Popup should have closed and the item at index 1 selected.
EXPECT_FALSE(popupOpen());
EXPECT_EQ(1, selectedIndex());
}
// Tests that moving the mouse over an item and then clicking outside the select popup
// leaves the seleted item unchanged.
TEST_F(SelectPopupMenuTest, MouseOverItemClickOutside)
{
showPopup();
int menuItemHeight = m_webView->selectPopup()->menuItemHeight();
// menuItemHeight * 1.5 means the Y position on the item at index 1.
IntPoint row1Point(2, menuItemHeight * 1.5);
// Simulate the mouse moving over the first item.
PlatformMouseEvent mouseEvent(row1Point, row1Point, NoButton, PlatformEvent::MouseMoved,
1, false, false, false, false, 0);
m_webView->selectPopup()->handleMouseMoveEvent(mouseEvent);
// Click outside the popup.
simulateLeftMouseDownEvent(IntPoint(1000, 1000));
// Popup should have closed and item 0 should still be selected.
EXPECT_FALSE(popupOpen());
EXPECT_EQ(0, selectedIndex());
}
// Tests that selecting an item with the keyboard and then clicking outside the select
// popup does select that item.
TEST_F(SelectPopupMenuTest, SelectItemWithKeyboardItemClickOutside)
{
showPopup();
// Simulate selecting the 2nd item by pressing Down, Down.
simulateKeyDownEvent(VKEY_DOWN);
simulateKeyDownEvent(VKEY_DOWN);
// Click outside the popup.
simulateLeftMouseDownEvent(IntPoint(1000, 1000));
// Popup should have closed and the item should have been selected.
EXPECT_FALSE(popupOpen());
EXPECT_EQ(2, selectedIndex());
}
TEST_F(SelectPopupMenuTest, DISABLED_SelectItemEventFire)
{
registerMockedURLLoad("select_event.html");
m_webView->settings()->setJavaScriptEnabled(true);
loadFrame(m_webView->mainFrame(), "select_event.html");
serveRequests();
m_popupMenuClient.setFocusedNode(static_cast<WebFrameImpl*>(m_webView->mainFrame())->frameView()->frame()->document()->focusedNode());
showPopup();
int menuItemHeight = m_webView->selectPopup()->menuItemHeight();
// menuItemHeight * 0.5 means the Y position on the item at index 0.
IntPoint row1Point(2, menuItemHeight * 0.5);
simulateLeftMouseDownEvent(row1Point);
simulateLeftMouseUpEvent(row1Point);
WebElement element = m_webView->mainFrame()->document().getElementById("message");
// mousedown event is held by select node, and we don't simulate the event for the node.
// So we can only see mouseup and click event.
EXPECT_STREQ("upclick", element.innerText().utf8().data());
// Disable the item at index 1.
m_popupMenuClient.setDisabledIndex(1);
showPopup();
// menuItemHeight * 1.5 means the Y position on the item at index 1.
row1Point.setY(menuItemHeight * 1.5);
simulateLeftMouseDownEvent(row1Point);
simulateLeftMouseUpEvent(row1Point);
// The item at index 1 is disabled, so the text should not be changed.
EXPECT_STREQ("upclick", element.innerText().utf8().data());
showPopup();
// menuItemHeight * 2.5 means the Y position on the item at index 2.
row1Point.setY(menuItemHeight * 2.5);
simulateLeftMouseDownEvent(row1Point);
simulateLeftMouseUpEvent(row1Point);
// The item is changed to the item at index 2, from index 0, so change event is fired.
EXPECT_STREQ("upclickchangeupclick", element.innerText().utf8().data());
}
TEST_F(SelectPopupMenuTest, FLAKY_SelectItemKeyEvent)
{
registerMockedURLLoad("select_event.html");
m_webView->settings()->setJavaScriptEnabled(true);
loadFrame(m_webView->mainFrame(), "select_event.html");
serveRequests();
m_popupMenuClient.setFocusedNode(static_cast<WebFrameImpl*>(m_webView->mainFrame())->frameView()->frame()->document()->focusedNode());
showPopup();
// Siumulate to choose the item at index 1 with keyboard.
simulateKeyDownEvent(VKEY_DOWN);
simulateKeyDownEvent(VKEY_DOWN);
simulateKeyDownEvent(VKEY_RETURN);
WebElement element = m_webView->mainFrame()->document().getElementById("message");
// We only can see change event but no other mouse related events.
EXPECT_STREQ("change", element.innerText().utf8().data());
}
TEST_F(SelectPopupMenuTest, SelectItemRemoveSelectOnChange)
{
// Make sure no crash, even if select node is removed on 'change' event handler.
registerMockedURLLoad("select_event_remove_on_change.html");
m_webView->settings()->setJavaScriptEnabled(true);
loadFrame(m_webView->mainFrame(), "select_event_remove_on_change.html");
serveRequests();
m_popupMenuClient.setFocusedNode(static_cast<WebFrameImpl*>(m_webView->mainFrame())->frameView()->frame()->document()->focusedNode());
showPopup();
int menuItemHeight = m_webView->selectPopup()->menuItemHeight();
// menuItemHeight * 1.5 means the Y position on the item at index 1.
IntPoint row1Point(2, menuItemHeight * 1.5);
simulateLeftMouseDownEvent(row1Point);
simulateLeftMouseUpEvent(row1Point);
WebElement element = m_webView->mainFrame()->document().getElementById("message");
EXPECT_STREQ("change", element.innerText().utf8().data());
}
TEST_F(SelectPopupMenuTest, SelectItemRemoveSelectOnClick)
{
// Make sure no crash, even if select node is removed on 'click' event handler.
registerMockedURLLoad("select_event_remove_on_click.html");
m_webView->settings()->setJavaScriptEnabled(true);
loadFrame(m_webView->mainFrame(), "select_event_remove_on_click.html");
serveRequests();
m_popupMenuClient.setFocusedNode(static_cast<WebFrameImpl*>(m_webView->mainFrame())->frameView()->frame()->document()->focusedNode());
showPopup();
int menuItemHeight = m_webView->selectPopup()->menuItemHeight();
// menuItemHeight * 1.5 means the Y position on the item at index 1.
IntPoint row1Point(2, menuItemHeight * 1.5);
simulateLeftMouseDownEvent(row1Point);
simulateLeftMouseUpEvent(row1Point);
WebElement element = m_webView->mainFrame()->document().getElementById("message");
EXPECT_STREQ("click", element.innerText().utf8().data());
}
} // namespace
|