blob: 80313a705fe59f2bbae51ae0f79a2e285f47abde [file] [log] [blame]
/*
* Copyright (C) 2017 Apple 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:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. 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.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS 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 APPLE INC. OR ITS 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.
*/
#import "config.h"
#if PLATFORM(MAC)
#import "AppKitSPI.h"
#import "PlatformUtilities.h"
#import "TestNavigationDelegate.h"
#import "TestProtocol.h"
#import "TestWKWebView.h"
#import <WebKit/WKProcessPoolPrivate.h>
#import <WebKit/_WKProcessPoolConfiguration.h>
#import <pal/spi/mac/NSTextInputContextSPI.h>
#import <wtf/BlockPtr.h>
#import <wtf/RetainPtr.h>
@interface SlowTextInputContext : NSTextInputContext
@property (nonatomic) BlockPtr<void()> handledInputMethodEventBlock;
@end
@implementation SlowTextInputContext
- (void)handleEventByInputMethod:(NSEvent *)event completionHandler:(void(^)(BOOL handled))completionHandler
{
[super handleEventByInputMethod:event completionHandler:^(BOOL handled) {
dispatch_async(dispatch_get_main_queue(), ^() {
completionHandler(handled);
if (_handledInputMethodEventBlock)
_handledInputMethodEventBlock();
});
}];
}
- (void)handleEvent:(NSEvent *)event completionHandler:(void(^)(BOOL handled))completionHandler
{
[super handleEvent:event completionHandler:^(BOOL handled) {
dispatch_async(dispatch_get_main_queue(), ^() {
completionHandler(handled);
});
}];
}
@end
@interface SlowInputWebView : TestWKWebView {
RetainPtr<SlowTextInputContext> _slowInputContext;
}
@end
@implementation SlowInputWebView
- (NSTextInputContext *)inputContext
{
return self._web_superInputContext;
}
- (SlowTextInputContext *)_web_superInputContext
{
if (!_slowInputContext)
_slowInputContext = adoptNS([[SlowTextInputContext alloc] initWithClient:(id<NSTextInputClient>)self]);
return _slowInputContext.get();
}
@end
TEST(WKWebViewMacEditingTests, DoubleClickDoesNotSelectTrailingSpace)
{
RetainPtr<TestWKWebView> webView = adoptNS([[TestWKWebView alloc] initWithFrame:NSMakeRect(0, 0, 400, 400)]);
[webView synchronouslyLoadTestPageNamed:@"double-click-does-not-select-trailing-space"];
__block bool finishedSelectingText = false;
[webView performAfterReceivingMessage:@"selected" action:^() {
finishedSelectingText = true;
}];
[webView sendClicksAtPoint:NSMakePoint(200, 200) numberOfClicks:2];
TestWebKitAPI::Util::run(&finishedSelectingText);
NSString *selectedText = [webView stringByEvaluatingJavaScript:@"getSelection().getRangeAt(0).toString()"];
EXPECT_STREQ("Hello", selectedText.UTF8String);
}
TEST(WKWebViewMacEditingTests, DoNotCrashWhenCallingTextInputClientMethodsWhileDeallocatingView)
{
NSString *textContent = @"This test should not cause us to dereference null.";
auto webView = adoptNS([[TestWKWebView alloc] initWithFrame:NSMakeRect(0, 0, 400, 400)]);
[webView synchronouslyLoadHTMLString:[NSString stringWithFormat:@"<p>%@</p>", textContent]];
[webView removeFromSuperview];
__unsafe_unretained id <NSTextInputClient_Async> inputClient = (id <NSTextInputClient_Async>)webView.get();
[inputClient hasMarkedTextWithCompletionHandler:^(BOOL) {
[inputClient selectedRangeWithCompletionHandler:^(NSRange) {
[inputClient markedRangeWithCompletionHandler:^(NSRange) { }];
}];
}];
EXPECT_WK_STREQ(textContent, [webView stringByEvaluatingJavaScript:@"document.body.textContent"]);
}
TEST(WKWebViewMacEditingTests, DoNotCrashWhenInterpretingKeyEventWhileDeallocatingView)
{
__block bool isDone = false;
@autoreleasepool {
auto webView = adoptNS([[SlowInputWebView alloc] initWithFrame:NSMakeRect(0, 0, 400, 400)]);
[webView synchronouslyLoadHTMLString:[NSString stringWithFormat:@"<body contenteditable>Hello world</body>"]];
[webView stringByEvaluatingJavaScript:@"document.body.focus()"];
[webView waitForNextPresentationUpdate];
[webView removeFromSuperview];
[webView typeCharacter:'a'];
webView.get()._web_superInputContext.handledInputMethodEventBlock = ^() {
isDone = true;
};
}
TestWebKitAPI::Util::run(&isDone);
}
TEST(WKWebViewMacEditingTests, ProcessSwapAfterSettingMarkedText)
{
[TestProtocol registerWithScheme:@"https"];
auto processPoolConfiguration = adoptNS([[_WKProcessPoolConfiguration alloc] init]);
[processPoolConfiguration setProcessSwapsOnNavigation:YES];
auto processPool = adoptNS([[WKProcessPool alloc] _initWithConfiguration:processPoolConfiguration.get()]);
auto configuration = adoptNS([[WKWebViewConfiguration alloc] init]);
[configuration setProcessPool:processPool.get()];
auto navigationDelegate = adoptNS([[TestNavigationDelegate alloc] init]);
auto webView = adoptNS([[TestWKWebView<NSTextInputClient, NSTextInputClient_Async> alloc] initWithFrame:NSMakeRect(0, 0, 800, 600) configuration:configuration.get()]);
[webView setNavigationDelegate:navigationDelegate.get()];
[webView _setEditable:YES];
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"https://bundle-file/simple.html"]]];
[navigationDelegate waitForDidFinishNavigation];
[webView selectAll:nil];
[webView setMarkedText:@"Simple" selectedRange:NSMakeRange(0, 6) replacementRange:NSMakeRange(0, 6)];
[webView waitForNextPresentationUpdate];
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"https://webkit.org"]]];
[navigationDelegate waitForDidFinishNavigation];
[webView goBack];
[navigationDelegate waitForDidFinishNavigation];
__block bool done = false;
[webView hasMarkedTextWithCompletionHandler:^(BOOL hasMarkedText) {
EXPECT_FALSE(hasMarkedText);
done = true;
}];
TestWebKitAPI::Util::run(&done);
}
#endif // PLATFORM(MAC)