86 lines
2.1 KiB
Mathematica
86 lines
2.1 KiB
Mathematica
|
|
/**
|
||
|
|
* 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 "FBMacros.h"
|
||
|
|
#import "FBElementCache.h"
|
||
|
|
#import "FBTestMacros.h"
|
||
|
|
#import "XCUIDevice.h"
|
||
|
|
#import "XCUIDevice+FBRotation.h"
|
||
|
|
#import "XCUIElement+FBForceTouch.h"
|
||
|
|
#import "XCUIElement+FBIsVisible.h"
|
||
|
|
|
||
|
|
@interface FBForceTouchTests : FBIntegrationTestCase
|
||
|
|
@end
|
||
|
|
|
||
|
|
// It is recommnded to verify these tests with different iOS versions
|
||
|
|
|
||
|
|
@implementation FBForceTouchTests
|
||
|
|
|
||
|
|
- (void)verifyForceTapWithOrientation:(UIDeviceOrientation)orientation
|
||
|
|
{
|
||
|
|
[[XCUIDevice sharedDevice] fb_setDeviceInterfaceOrientation:orientation];
|
||
|
|
NSError *error;
|
||
|
|
XCTAssertTrue(self.testedApplication.alerts.count == 0);
|
||
|
|
[self.testedApplication.buttons[FBShowAlertForceTouchButtonName] fb_forceTouchCoordinate:nil
|
||
|
|
pressure:nil
|
||
|
|
duration: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)testForceTap
|
||
|
|
{
|
||
|
|
if (![XCUIDevice sharedDevice].supportsPressureInteraction) {
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
[self verifyForceTapWithOrientation:UIDeviceOrientationPortrait];
|
||
|
|
}
|
||
|
|
|
||
|
|
- (void)testForceTapInLandscapeLeft
|
||
|
|
{
|
||
|
|
if (![XCUIDevice sharedDevice].supportsPressureInteraction) {
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
[self verifyForceTapWithOrientation:UIDeviceOrientationLandscapeLeft];
|
||
|
|
}
|
||
|
|
|
||
|
|
- (void)testForceTapInLandscapeRight
|
||
|
|
{
|
||
|
|
if (![XCUIDevice sharedDevice].supportsPressureInteraction) {
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
[self verifyForceTapWithOrientation:UIDeviceOrientationLandscapeRight];
|
||
|
|
}
|
||
|
|
|
||
|
|
@end
|