| /* |
| * Copyright (C) 2019 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" |
| #import "Test.h" |
| |
| #if ENABLE(WEB_AUTHN) |
| |
| #import "PlatformUtilities.h" |
| #import "TestWKWebView.h" |
| #import <WebKit/WKPreferencesPrivate.h> |
| #import <WebKit/WKUIDelegatePrivate.h> |
| #import <WebKit/_WKExperimentalFeature.h> |
| #import <WebKit/_WKWebAuthenticationPanel.h> |
| |
| static bool webAuthenticationPanelRan = false; |
| static bool webAuthenticationPanelDimissed = false; |
| |
| @interface TestWebAuthenticationPanelDelegate : NSObject <_WKWebAuthenticationPanelDelegate> |
| @end |
| |
| @implementation TestWebAuthenticationPanelDelegate |
| |
| - (void)panel:(_WKWebAuthenticationPanel *)panel dismissWebAuthenticationPanelWithResult:(_WKWebAuthenticationResult)result |
| { |
| ASSERT_NE(panel, nil); |
| EXPECT_EQ(result, _WKWebAuthenticationResultFailed); |
| webAuthenticationPanelDimissed = true; |
| } |
| |
| @end |
| |
| @interface TestWebAuthenticationPanelUIDelegate : NSObject <WKUIDelegatePrivate> |
| @end |
| |
| @implementation TestWebAuthenticationPanelUIDelegate { |
| RetainPtr<_WKWebAuthenticationPanel> _panel; |
| RetainPtr<TestWebAuthenticationPanelDelegate> _delegate; |
| } |
| |
| - (void)webView:(WKWebView *)webView runWebAuthenticationPanel:(_WKWebAuthenticationPanel *)panel initiatedByFrame:(WKFrameInfo *)frame completionHandler:(void (^)(_WKWebAuthenticationPanelResult))completionHandler |
| { |
| webAuthenticationPanelRan = true; |
| |
| _delegate = adoptNS([[TestWebAuthenticationPanelDelegate alloc] init]); |
| ASSERT_NE(panel, nil); |
| _panel = panel; |
| [_panel setDelegate:_delegate.get()]; |
| |
| EXPECT_WK_STREQ([_panel relyingPartyID], ""); |
| |
| completionHandler(_WKWebAuthenticationPanelResultPresented); |
| } |
| |
| @end |
| |
| namespace TestWebKitAPI { |
| |
| namespace { |
| _WKExperimentalFeature *webAuthenticationExperimentalFeature() |
| { |
| static RetainPtr<_WKExperimentalFeature> theFeature; |
| if (theFeature) |
| return theFeature.get(); |
| |
| NSArray *features = [WKPreferences _experimentalFeatures]; |
| for (_WKExperimentalFeature *feature in features) { |
| if ([feature.key isEqual:@"WebAuthenticationEnabled"]) { |
| theFeature = feature; |
| break; |
| } |
| } |
| return theFeature.get(); |
| } |
| } |
| |
| TEST(WebAuthenticationPanel, BasicTimeout) |
| { |
| RetainPtr<NSURL> testURL = [[NSBundle mainBundle] URLForResource:@"web-authentication-get-assertion" withExtension:@"html" subdirectory:@"TestWebKitAPI.resources"]; |
| |
| auto configuration = adoptNS([[WKWebViewConfiguration alloc] init]); |
| [[configuration preferences] _setEnabled:YES forExperimentalFeature:webAuthenticationExperimentalFeature()]; |
| |
| auto webView = adoptNS([[TestWKWebView alloc] initWithFrame:NSZeroRect configuration:configuration.get()]); |
| auto delegate = adoptNS([[TestWebAuthenticationPanelUIDelegate alloc] init]); |
| [webView setUIDelegate:delegate.get()]; |
| |
| // Only focused documents can trigger WebAuthn. |
| #if PLATFORM(MAC) |
| [[webView hostWindow] makeFirstResponder:webView.get()]; |
| #elif PLATFORM(IOS) |
| [webView becomeFirstResponder]; |
| #endif |
| |
| [webView loadRequest:[NSURLRequest requestWithURL:testURL.get()]]; |
| Util::run(&webAuthenticationPanelRan); |
| Util::run(&webAuthenticationPanelDimissed); |
| } |
| |
| } // namespace TestWebKitAPI |
| |
| #endif // ENABLE(WEB_AUTHN) |