| /* |
| * 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. |
| */ |
| |
| #if ENABLE(DATA_INTERACTION) |
| |
| #import "TestWKWebView.h" |
| #import <UIKit/UIItemProvider.h> |
| #import <UIKit/UIKit.h> |
| #import <WebKit/WKUIDelegatePrivate.h> |
| #import <WebKit/_WKInputDelegate.h> |
| #import <wtf/BlockPtr.h> |
| |
| @class MockDataOperationSession; |
| @class MockDataInteractionSession; |
| |
| extern NSString * const DataInteractionEnterEventName; |
| extern NSString * const DataInteractionOverEventName; |
| extern NSString * const DataInteractionPerformOperationEventName; |
| extern NSString * const DataInteractionLeaveEventName; |
| extern NSString * const DataInteractionStartEventName; |
| |
| typedef NS_ENUM(NSInteger, DataInteractionPhase) { |
| DataInteractionCancelled = 0, |
| DataInteractionBeginning = 1, |
| DataInteractionBegan = 2, |
| DataInteractionEntered = 3, |
| DataInteractionPerforming = 4 |
| }; |
| |
| @interface DataInteractionSimulator : NSObject<WKUIDelegatePrivate, _WKInputDelegate> { |
| @private |
| RetainPtr<TestWKWebView> _webView; |
| RetainPtr<MockDataInteractionSession> _dataInteractionSession; |
| RetainPtr<MockDataOperationSession> _dataOperationSession; |
| RetainPtr<NSMutableArray> _observedEventNames; |
| RetainPtr<NSArray> _externalItemProviders; |
| RetainPtr<NSArray *> _sourceItemProviders; |
| RetainPtr<NSArray *> _finalSelectionRects; |
| CGPoint _startLocation; |
| CGPoint _endLocation; |
| |
| bool _isDoneWaitingForInputSession; |
| BOOL _shouldPerformOperation; |
| double _currentProgress; |
| bool _isDoneWithCurrentRun; |
| DataInteractionPhase _phase; |
| } |
| |
| - (instancetype)initWithWebView:(TestWKWebView *)webView; |
| - (void)runFrom:(CGPoint)startLocation to:(CGPoint)endLocation; |
| - (void)waitForInputSession; |
| |
| @property (nonatomic) BOOL allowsFocusToStartInputSession; |
| @property (nonatomic) BOOL shouldEnsureUIApplication; |
| @property (nonatomic) BlockPtr<BOOL(_WKActivatedElementInfo *)> showCustomActionSheetBlock; |
| @property (nonatomic) BlockPtr<NSArray *(NSArray *)> convertItemProvidersBlock; |
| @property (nonatomic, strong) NSArray *externalItemProviders; |
| @property (nonatomic) BlockPtr<NSUInteger(NSUInteger, id)> overrideDataInteractionOperationBlock; |
| @property (nonatomic) BlockPtr<void(BOOL, NSArray *)> dataInteractionOperationCompletionBlock; |
| |
| @property (nonatomic, readonly) NSArray *sourceItemProviders; |
| @property (nonatomic, readonly) NSArray *observedEventNames; |
| @property (nonatomic, readonly) NSArray *finalSelectionRects; |
| @property (nonatomic, readonly) DataInteractionPhase phase; |
| |
| @end |
| |
| #endif // ENABLE(DATA_INTERACTION) |