初始化提交
This commit is contained in:
@@ -0,0 +1,491 @@
|
||||
/**
|
||||
* Copyright (c) 2015-present, Facebook, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the BSD-style license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
#import <XCTest/XCTest.h>
|
||||
|
||||
#import "FBIntegrationTestCase.h"
|
||||
|
||||
#import "XCUIElement.h"
|
||||
#import "XCUIDevice.h"
|
||||
#import "XCUIApplication+FBTouchAction.h"
|
||||
#import "FBTestMacros.h"
|
||||
#import "XCUIDevice+FBRotation.h"
|
||||
#import "FBRunLoopSpinner.h"
|
||||
#import "FBXCodeCompatibility.h"
|
||||
|
||||
@interface FBW3CTouchActionsIntegrationTestsPart1 : FBIntegrationTestCase
|
||||
@end
|
||||
|
||||
@interface FBW3CTouchActionsIntegrationTestsPart2 : FBIntegrationTestCase
|
||||
@property (nonatomic) XCUIElement *pickerWheel;
|
||||
@end
|
||||
|
||||
|
||||
@implementation FBW3CTouchActionsIntegrationTestsPart1
|
||||
|
||||
- (void)verifyGesture:(NSArray<NSDictionary<NSString *, id> *> *)gesture orientation:(UIDeviceOrientation)orientation
|
||||
{
|
||||
[[XCUIDevice sharedDevice] fb_setDeviceInterfaceOrientation:orientation];
|
||||
NSError *error;
|
||||
XCTAssertTrue([self.testedApplication fb_performW3CActions:gesture elementCache:nil error:&error]);
|
||||
FBAssertWaitTillBecomesTrue(self.testedApplication.alerts.count > 0);
|
||||
}
|
||||
|
||||
- (void)setUp
|
||||
{
|
||||
[super setUp];
|
||||
static dispatch_once_t onceToken;
|
||||
dispatch_once(&onceToken, ^{
|
||||
[self launchApplication];
|
||||
[self goToAlertsPage];
|
||||
});
|
||||
[self clearAlert];
|
||||
}
|
||||
|
||||
- (void)tearDown
|
||||
{
|
||||
[self clearAlert];
|
||||
[self resetOrientation];
|
||||
[super tearDown];
|
||||
}
|
||||
|
||||
- (void)testErroneousGestures
|
||||
{
|
||||
NSArray<NSArray<NSDictionary<NSString *, id> *> *> *invalidGestures =
|
||||
@[
|
||||
// Empty chain
|
||||
@[],
|
||||
|
||||
// Chain element without 'actions' key
|
||||
@[@{
|
||||
@"type": @"pointer",
|
||||
@"id": @"finger1",
|
||||
@"parameters": @{@"pointerType": @"touch"},
|
||||
},
|
||||
],
|
||||
|
||||
// Chain element without type
|
||||
@[@{
|
||||
@"id": @"finger1",
|
||||
@"parameters": @{@"pointerType": @"touch"},
|
||||
@"actions": @[
|
||||
@{@"type": @"pointerMove", @"duration": @0, @"x": @100, @"y": @100},
|
||||
],
|
||||
},
|
||||
],
|
||||
|
||||
// Chain element without id
|
||||
@[@{
|
||||
@"type": @"pointer",
|
||||
@"parameters": @{@"pointerType": @"touch"},
|
||||
@"actions": @[
|
||||
@{@"type": @"pointerMove", @"duration": @0, @"x": @100, @"y": @100},
|
||||
],
|
||||
},
|
||||
],
|
||||
|
||||
// Chain element with empty id
|
||||
@[@{
|
||||
@"type": @"pointer",
|
||||
@"id": @"",
|
||||
@"parameters": @{@"pointerType": @"touch"},
|
||||
@"actions": @[
|
||||
@{@"type": @"pointerMove", @"duration": @0, @"x": @100, @"y": @100},
|
||||
],
|
||||
},
|
||||
],
|
||||
|
||||
// Chain element with unsupported type
|
||||
@[@{
|
||||
@"type": @"key",
|
||||
@"id": @"finger1",
|
||||
@"parameters": @{@"pointerType": @"touch"},
|
||||
@"actions": @[
|
||||
@{@"type": @"pointerMove", @"duration": @0, @"x": @100, @"y": @100},
|
||||
],
|
||||
},
|
||||
],
|
||||
|
||||
// Chain element with unsupported pointerType (default)
|
||||
@[@{
|
||||
@"type": @"pointer",
|
||||
@"id": @"finger1",
|
||||
@"actions": @[
|
||||
@{@"type": @"pointerMove", @"duration": @0, @"x": @100, @"y": @100},
|
||||
],
|
||||
},
|
||||
],
|
||||
|
||||
// Chain element with unsupported pointerType (non-default)
|
||||
@[@{
|
||||
@"type": @"pointer",
|
||||
@"id": @"finger1",
|
||||
@"parameters": @{@"pointerType": @"pen"},
|
||||
@"actions": @[
|
||||
@{@"type": @"pointerMove", @"duration": @0, @"x": @100, @"y": @100},
|
||||
],
|
||||
},
|
||||
],
|
||||
|
||||
// Chain element without action item type
|
||||
@[@{
|
||||
@"type": @"pointer",
|
||||
@"id": @"finger1",
|
||||
@"parameters": @{@"pointerType": @"touch"},
|
||||
@"actions": @[
|
||||
@{@"duration": @0, @"x": @1, @"y": @1},
|
||||
@{@"type": @"pointerDown"},
|
||||
@{@"type": @"pause", @"duration": @100},
|
||||
@{@"type": @"pointerUp"},
|
||||
],
|
||||
},
|
||||
],
|
||||
|
||||
// Chain element with singe up action
|
||||
@[@{
|
||||
@"type": @"pointer",
|
||||
@"id": @"finger1",
|
||||
@"parameters": @{@"pointerType": @"touch"},
|
||||
@"actions": @[
|
||||
@{@"type": @"pointerUp"},
|
||||
],
|
||||
},
|
||||
],
|
||||
|
||||
// Chain element containing action item without y coordinate
|
||||
@[@{
|
||||
@"type": @"pointer",
|
||||
@"id": @"finger1",
|
||||
@"parameters": @{@"pointerType": @"touch"},
|
||||
@"actions": @[
|
||||
@{@"type": @"pointerMove", @"duration": @0, @"x": @1},
|
||||
@{@"type": @"pointerDown"},
|
||||
@{@"type": @"pause", @"duration": @100},
|
||||
@{@"type": @"pointerUp"},
|
||||
],
|
||||
},
|
||||
],
|
||||
|
||||
// Chain element containing action item with an unknown type
|
||||
@[@{
|
||||
@"type": @"pointer",
|
||||
@"id": @"finger1",
|
||||
@"parameters": @{@"pointerType": @"touch"},
|
||||
@"actions": @[
|
||||
@{@"type": @"pointerMoved", @"duration": @0, @"x": @1, @"y": @1},
|
||||
@{@"type": @"pointerDown"},
|
||||
@{@"type": @"pause", @"duration": @100},
|
||||
@{@"type": @"pointerUp"},
|
||||
],
|
||||
},
|
||||
],
|
||||
|
||||
// Chain element where action items start with an incorrect item
|
||||
@[@{
|
||||
@"type": @"pointer",
|
||||
@"id": @"finger1",
|
||||
@"parameters": @{@"pointerType": @"touch"},
|
||||
@"actions": @[
|
||||
@{@"type": @"pause", @"duration": @100},
|
||||
@{@"type": @"pointerMove", @"duration": @0, @"x": @1, @"y": @1},
|
||||
@{@"type": @"pointerDown"},
|
||||
@{@"type": @"pause", @"duration": @100},
|
||||
@{@"type": @"pointerUp"},
|
||||
],
|
||||
},
|
||||
],
|
||||
|
||||
// Chain element where pointerMove action item does not contain coordinates
|
||||
@[@{
|
||||
@"type": @"pointer",
|
||||
@"id": @"finger1",
|
||||
@"parameters": @{@"pointerType": @"touch"},
|
||||
@"actions": @[
|
||||
@{@"type": @"pointerMove", @"duration": @0},
|
||||
@{@"type": @"pointerDown"},
|
||||
@{@"type": @"pause", @"duration": @100},
|
||||
@{@"type": @"pointerUp"},
|
||||
],
|
||||
},
|
||||
],
|
||||
|
||||
// Chain element where pointerMove action item cannot use coordinates of the previous item
|
||||
@[@{
|
||||
@"type": @"pointer",
|
||||
@"id": @"finger1",
|
||||
@"parameters": @{@"pointerType": @"touch"},
|
||||
@"actions": @[
|
||||
@{@"type": @"pointerMove", @"duration": @0, @"origin": @"pointer"},
|
||||
@{@"type": @"pointerDown"},
|
||||
@{@"type": @"pause", @"duration": @100},
|
||||
@{@"type": @"pointerUp"},
|
||||
],
|
||||
},
|
||||
],
|
||||
|
||||
// Chain element where action items contains negative duration
|
||||
@[@{
|
||||
@"type": @"pointer",
|
||||
@"id": @"finger1",
|
||||
@"parameters": @{@"pointerType": @"touch"},
|
||||
@"actions": @[
|
||||
@{@"type": @"pointerMove", @"duration": @0, @"x": @1, @"y": @1},
|
||||
@{@"type": @"pointerDown"},
|
||||
@{@"type": @"pause", @"duration": @-100},
|
||||
@{@"type": @"pointerUp"},
|
||||
],
|
||||
},
|
||||
],
|
||||
|
||||
// Chain element where action items start with an incorrect one, because the correct one is canceled
|
||||
@[@{
|
||||
@"type": @"pointer",
|
||||
@"id": @"finger1",
|
||||
@"parameters": @{@"pointerType": @"touch"},
|
||||
@"actions": @[
|
||||
@{@"type": @"pointerMove", @"duration": @0, @"x": @1, @"y": @1},
|
||||
@{@"type": @"pointerCancel"},
|
||||
@{@"type": @"pointerDown"},
|
||||
@{@"type": @"pause", @"duration": @-100},
|
||||
@{@"type": @"pointerUp"},
|
||||
],
|
||||
},
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
for (NSArray<NSDictionary<NSString *, id> *> *invalidGesture in invalidGestures) {
|
||||
NSError *error;
|
||||
XCTAssertFalse([self.testedApplication fb_performW3CActions:invalidGesture elementCache:nil error:&error]);
|
||||
XCTAssertNotNil(error);
|
||||
}
|
||||
}
|
||||
|
||||
- (void)testNothingDoesWithoutError
|
||||
{
|
||||
NSArray<NSDictionary<NSString *, id> *> *gesture =
|
||||
@[@{
|
||||
@"type": @"pointer",
|
||||
@"id": @"finger1",
|
||||
@"parameters": @{@"pointerType": @"touch"},
|
||||
@"actions": @[],
|
||||
},
|
||||
];
|
||||
NSError *error;
|
||||
XCTAssertTrue([self.testedApplication fb_performW3CActions:gesture elementCache:nil error:&error]);
|
||||
XCTAssertNil(error);
|
||||
}
|
||||
|
||||
- (void)testTap
|
||||
{
|
||||
NSArray<NSDictionary<NSString *, id> *> *gesture =
|
||||
@[@{
|
||||
@"type": @"pointer",
|
||||
@"id": @"finger1",
|
||||
@"parameters": @{@"pointerType": @"touch"},
|
||||
@"actions": @[
|
||||
@{@"type": @"pointerMove", @"duration": @0, @"origin": self.testedApplication.buttons[FBShowAlertButtonName], @"x": @0, @"y": @0},
|
||||
@{@"type": @"pointerDown"},
|
||||
@{@"type": @"pause", @"duration": @100},
|
||||
@{@"type": @"pointerUp"},
|
||||
],
|
||||
},
|
||||
];
|
||||
[self verifyGesture:gesture orientation:UIDeviceOrientationPortrait];
|
||||
}
|
||||
|
||||
- (void)testDoubleTap
|
||||
{
|
||||
NSArray<NSDictionary<NSString *, id> *> *gesture =
|
||||
@[@{
|
||||
@"type": @"pointer",
|
||||
@"id": @"finger1",
|
||||
@"parameters": @{@"pointerType": @"touch"},
|
||||
@"actions": @[
|
||||
@{@"type": @"pointerMove", @"duration": @0, @"origin": self.testedApplication.buttons[FBShowAlertButtonName]},
|
||||
@{@"type": @"pointerDown"},
|
||||
@{@"type": @"pause", @"duration": @50},
|
||||
@{@"type": @"pointerUp"},
|
||||
@{@"type": @"pause", @"duration": @200},
|
||||
@{@"type": @"pointerDown"},
|
||||
@{@"type": @"pause", @"duration": @50},
|
||||
@{@"type": @"pointerUp"},
|
||||
],
|
||||
},
|
||||
];
|
||||
[self verifyGesture:gesture orientation:UIDeviceOrientationLandscapeLeft];
|
||||
}
|
||||
|
||||
- (void)testLongPressWithCombinedPause
|
||||
{
|
||||
NSArray<NSDictionary<NSString *, id> *> *gesture =
|
||||
@[@{
|
||||
@"type": @"pointer",
|
||||
@"id": @"finger1",
|
||||
@"parameters": @{@"pointerType": @"touch"},
|
||||
@"actions": @[
|
||||
@{@"type": @"pointerMove", @"duration": @0, @"origin": self.testedApplication.buttons[FBShowAlertButtonName], @"x": @5, @"y": @5},
|
||||
@{@"type": @"pointerDown"},
|
||||
@{@"type": @"pause", @"duration": @200},
|
||||
@{@"type": @"pause", @"duration": @200},
|
||||
@{@"type": @"pause", @"duration": @100},
|
||||
@{@"type": @"pointerUp"},
|
||||
],
|
||||
},
|
||||
];
|
||||
[self verifyGesture:gesture orientation:UIDeviceOrientationLandscapeRight];
|
||||
}
|
||||
|
||||
- (void)testLongPress
|
||||
{
|
||||
if (UIDevice.currentDevice.userInterfaceIdiom == UIUserInterfaceIdiomPad) {
|
||||
XCTSkip(@"Failed on Azure Pipeline. Local run succeeded.");
|
||||
}
|
||||
UIDeviceOrientation orientation = UIDeviceOrientationLandscapeLeft;
|
||||
[[XCUIDevice sharedDevice] fb_setDeviceInterfaceOrientation:orientation];
|
||||
CGRect elementFrame = self.testedApplication.buttons[FBShowAlertButtonName].frame;
|
||||
NSArray<NSDictionary<NSString *, id> *> *gesture =
|
||||
@[@{
|
||||
@"type": @"pointer",
|
||||
@"id": @"finger1",
|
||||
@"parameters": @{@"pointerType": @"touch"},
|
||||
@"actions": @[
|
||||
@{@"type": @"pointerMove", @"duration": @0, @"x": @(elementFrame.origin.x + 1), @"y": @(elementFrame.origin.y + 1)},
|
||||
@{@"type": @"pointerDown"},
|
||||
@{@"type": @"pause", @"duration": @500},
|
||||
@{@"type": @"pointerUp"},
|
||||
],
|
||||
},
|
||||
];
|
||||
[self verifyGesture:gesture orientation:orientation];
|
||||
}
|
||||
|
||||
- (void)testForceTap
|
||||
{
|
||||
if (![XCUIDevice.sharedDevice supportsPressureInteraction]) {
|
||||
return;
|
||||
}
|
||||
|
||||
NSArray<NSDictionary<NSString *, id> *> *gesture =
|
||||
@[@{
|
||||
@"type": @"pointer",
|
||||
@"id": @"finger1",
|
||||
@"parameters": @{@"pointerType": @"touch"},
|
||||
@"actions": @[
|
||||
@{@"type": @"pointerMove", @"duration": @0, @"origin": self.testedApplication.buttons[FBShowAlertButtonName]},
|
||||
@{@"type": @"pointerDown"},
|
||||
@{@"type": @"pause", @"duration": @500},
|
||||
@{@"type": @"pointerDown", @"pressure": @1.0, @"width":@10, @"height":@10},
|
||||
@{@"type": @"pause", @"duration": @50},
|
||||
@{@"type": @"pointerDown", @"pressure": @1.0, @"width":@10, @"height":@10},
|
||||
@{@"type": @"pause", @"duration": @50},
|
||||
@{@"type": @"pointerUp"},
|
||||
],
|
||||
},
|
||||
];
|
||||
[self verifyGesture:gesture orientation:UIDeviceOrientationLandscapeLeft];
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
|
||||
@implementation FBW3CTouchActionsIntegrationTestsPart2
|
||||
|
||||
- (void)setUp
|
||||
{
|
||||
[super setUp];
|
||||
static dispatch_once_t onceToken;
|
||||
dispatch_once(&onceToken, ^{
|
||||
[self launchApplication];
|
||||
[self goToAttributesPage];
|
||||
});
|
||||
self.pickerWheel = self.testedApplication.pickerWheels.allElementsBoundByIndex.firstObject;
|
||||
}
|
||||
|
||||
- (void)tearDown
|
||||
{
|
||||
[self resetOrientation];
|
||||
[super tearDown];
|
||||
}
|
||||
|
||||
- (void)verifyPickerWheelPositionChangeWithGesture:(NSArray<NSDictionary<NSString *, id> *> *)gesture
|
||||
{
|
||||
NSString *previousValue = self.pickerWheel.value;
|
||||
NSError *error;
|
||||
XCTAssertTrue([self.testedApplication fb_performW3CActions:gesture elementCache:nil error:&error]);
|
||||
XCTAssertNil(error);
|
||||
XCTAssertTrue([[[[FBRunLoopSpinner new]
|
||||
timeout:2.0]
|
||||
timeoutErrorMessage:@"Picker wheel value has not been changed after 2 seconds timeout"]
|
||||
spinUntilTrue:^BOOL{
|
||||
return ![[self.pickerWheel fb_standardSnapshot].value isEqualToString:previousValue];
|
||||
}
|
||||
error:&error]);
|
||||
XCTAssertNil(error);
|
||||
}
|
||||
|
||||
- (void)testSwipePickerWheelWithElementCoordinates
|
||||
{
|
||||
CGRect pickerFrame = self.pickerWheel.frame;
|
||||
NSArray<NSDictionary<NSString *, id> *> *gesture =
|
||||
@[@{
|
||||
@"type": @"pointer",
|
||||
@"id": @"finger1",
|
||||
@"parameters": @{@"pointerType": @"touch"},
|
||||
@"actions": @[
|
||||
@{@"type": @"pointerMove", @"duration": @0, @"origin": self.pickerWheel, @"x": @0, @"y":@0},
|
||||
@{@"type": @"pointerDown"},
|
||||
@{@"type": @"pointerMove", @"duration": @100,@"width":@10, @"height":@10, @"pressure":@0.5, @"origin": self.pickerWheel, @"x": @0, @"y": @(pickerFrame.size.height / 2)},
|
||||
@{@"type": @"pointerUp"},
|
||||
],
|
||||
},
|
||||
];
|
||||
[self verifyPickerWheelPositionChangeWithGesture:gesture];
|
||||
}
|
||||
|
||||
- (void)testSwipePickerWheelWithRelativeCoordinates
|
||||
{
|
||||
CGRect pickerFrame = self.pickerWheel.frame;
|
||||
NSArray<NSDictionary<NSString *, id> *> *gesture =
|
||||
@[@{
|
||||
@"type": @"pointer",
|
||||
@"id": @"finger1",
|
||||
@"parameters": @{@"pointerType": @"touch"},
|
||||
@"actions": @[
|
||||
@{@"type": @"pointerMove", @"duration": @100, @"origin": self.pickerWheel, @"x": @0, @"y": @0},
|
||||
@{@"type": @"pointerDown"},
|
||||
@{@"type": @"pointerMove", @"duration": @100, @"width":@10, @"height":@10, @"pressure":@0.5, @"origin": @"pointer", @"x": @0, @"y": @(-pickerFrame.size.height / 2)},
|
||||
@{@"type": @"pointerUp"},
|
||||
],
|
||||
},
|
||||
];
|
||||
[self verifyPickerWheelPositionChangeWithGesture:gesture];
|
||||
}
|
||||
|
||||
- (void)testSwipePickerWheelWithAbsoluteCoordinates
|
||||
{
|
||||
CGRect pickerFrame = self.pickerWheel.frame;
|
||||
NSArray<NSDictionary<NSString *, id> *> *gesture =
|
||||
@[@{
|
||||
@"type": @"pointer",
|
||||
@"id": @"finger1",
|
||||
@"parameters": @{@"pointerType": @"touch"},
|
||||
@"actions": @[
|
||||
@{@"type": @"pointerMove", @"duration": @0, @"x": @(pickerFrame.origin.x + pickerFrame.size.width / 2), @"y": @(pickerFrame.origin.y + pickerFrame.size.height / 2)},
|
||||
@{@"type": @"pointerDown"},
|
||||
@{@"type": @"pointerMove", @"duration": @100,@"width":@10, @"height":@10, @"pressure":@0.5, @"origin": @"pointer", @"x": @0, @"y": @(pickerFrame.size.height / 2)},
|
||||
@{@"type": @"pointerUp"},
|
||||
],
|
||||
},
|
||||
];
|
||||
[self verifyPickerWheelPositionChangeWithGesture:gesture];
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user