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
|
// Copyright (c) 2012 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.
#import "chrome/browser/ui/cocoa/omnibox/omnibox_view_mac.h"
#include "base/strings/sys_string_conversions.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_window.h"
#import "chrome/browser/ui/cocoa/location_bar/autocomplete_text_field_cell.h"
#include "chrome/browser/ui/location_bar/location_bar.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "components/omnibox/browser/omnibox_edit_model.h"
#include "ui/base/clipboard/clipboard_util_mac.h"
class OmniboxViewMacBrowserTest : public InProcessBrowserTest {
public:
OmniboxViewMac* GetOmnibox() {
return static_cast<OmniboxViewMac*>(
browser()->window()->GetLocationBar()->GetOmniboxView());
}
};
// Verify that the OmniboxViewMac::SetFocus API works.
IN_PROC_BROWSER_TEST_F(OmniboxViewMacBrowserTest, SetFocus) {
EXPECT_FALSE([[GetOmnibox()->field() window] firstResponder] ==
GetOmnibox()->field());
GetOmnibox()->SetFocus();
// Unfortunately there's no way to test that the field has keyboard focus.
}
// Verify that the OmniboxViewMac::ApplyCaretVisibility API works.
IN_PROC_BROWSER_TEST_F(OmniboxViewMacBrowserTest, ApplyCaretVisibility) {
EXPECT_FALSE([[GetOmnibox()->field() cell] hideFocusState]);
// |SetCaretVisibility(false)| should hide focus state.
GetOmnibox()->model()->SetCaretVisibility(false);
GetOmnibox()->ApplyCaretVisibility();
EXPECT_TRUE([[GetOmnibox()->field() cell] hideFocusState]);
// |SetCaretVisibility(true)| should show focus state.
GetOmnibox()->model()->SetCaretVisibility(true);
GetOmnibox()->ApplyCaretVisibility();
EXPECT_FALSE([[GetOmnibox()->field() cell] hideFocusState]);
// Focusing on the omnibox should show focus state.
GetOmnibox()->model()->SetCaretVisibility(false);
GetOmnibox()->ApplyCaretVisibility();
EXPECT_TRUE([[GetOmnibox()->field() cell] hideFocusState]);
GetOmnibox()->SetFocus();
EXPECT_FALSE([[GetOmnibox()->field() cell] hideFocusState]);
}
// Verify that mouse down sets caret visibility to true.
IN_PROC_BROWSER_TEST_F(OmniboxViewMacBrowserTest, MouseDownCaretVisibility) {
GetOmnibox()->model()->SetCaretVisibility(false);
EXPECT_FALSE(GetOmnibox()->model()->is_caret_visible());
GetOmnibox()->OnMouseDown(0);
EXPECT_TRUE(GetOmnibox()->model()->is_caret_visible());
}
// Verify that copying text from the omnibox into the pasteboard works.
IN_PROC_BROWSER_TEST_F(OmniboxViewMacBrowserTest, CopyToPasteboard) {
std::string text = "orange yam";
NSString* pboard_type = @"com.google.chrome.asdf";
scoped_refptr<ui::UniquePasteboard> pasteboard = new ui::UniquePasteboard;
[[GetOmnibox()->field() currentEditor]
setString:base::SysUTF8ToNSString(text)];
[[GetOmnibox()->field() currentEditor]
setSelectedRange:NSMakeRange(0, text.size())];
GetOmnibox()->model()->SetUserText(base::UTF8ToUTF16(text));
GetOmnibox()->CopyToPasteboard(pasteboard->get());
NSString* pasteboard_string =
[pasteboard->get() stringForType:NSPasteboardTypeString];
EXPECT_EQ(text, pasteboard_string.UTF8String);
// Clear the pasteboard and set some new contents, using a custom Pboard type.
[pasteboard->get() clearContents];
[pasteboard->get()
setString:@"bad result"
forType:ui::ClipboardUtil::UTIForPasteboardType(pboard_type)];
GetOmnibox()->CopyToPasteboard(pasteboard->get());
// Check that the custom Pboard type is no longer present.
EXPECT_FALSE([pasteboard->get()
stringForType:ui::ClipboardUtil::UTIForPasteboardType(pboard_type)]);
// Check that the contents of the omnibox were copied to the clipboard.
pasteboard_string = [pasteboard->get() stringForType:NSPasteboardTypeString];
EXPECT_EQ(text, pasteboard_string.UTF8String);
}
|