mirror of
https://github.com/wu736139669/Monkey-Test.git
synced 2026-08-05 05:55:46 +00:00
102 lines
2.9 KiB
Objective-C
Executable File
102 lines
2.9 KiB
Objective-C
Executable File
/**
|
|
* 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. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
#import <XCTest/XCTest.h>
|
|
|
|
#import "FBIntegrationTestCase.h"
|
|
#import "FBTestMacros.h"
|
|
|
|
#import "XCUIElement+FBIsVisible.h"
|
|
#import "XCUIElement+FBScrolling.h"
|
|
|
|
#import "XCUIElement+FBClassChain.h"
|
|
|
|
#define FBCellElementWithLabel(label) ([self.testedApplication descendantsMatchingType:XCUIElementTypeAny][label])
|
|
#define FBAssertVisibleCell(label) FBAssertWaitTillBecomesTrue(FBCellElementWithLabel(label).fb_isVisible)
|
|
#define FBAssertInvisibleCell(label) FBAssertWaitTillBecomesTrue(!FBCellElementWithLabel(label).fb_isVisible)
|
|
|
|
@interface FBScrollingTests : FBIntegrationTestCase
|
|
@property (nonatomic, strong) XCUIElement *scrollView;
|
|
@end
|
|
|
|
@implementation FBScrollingTests
|
|
|
|
+ (BOOL)shouldShowCells
|
|
{
|
|
return YES;
|
|
}
|
|
|
|
- (void)setUp
|
|
{
|
|
[super setUp];
|
|
[self launchApplication];
|
|
[self goToScrollPageWithCells:YES];
|
|
self.scrollView = [[self.testedApplication.query descendantsMatchingType:XCUIElementTypeAny] matchingIdentifier:@"scrollView"].element;
|
|
[self.scrollView resolve];
|
|
}
|
|
|
|
- (void)testCellVisibility
|
|
{
|
|
FBAssertVisibleCell(@"0");
|
|
FBAssertVisibleCell(@"10");
|
|
FBAssertInvisibleCell(@"30");
|
|
FBAssertInvisibleCell(@"50");
|
|
}
|
|
|
|
- (void)testSimpleScroll
|
|
{
|
|
FBAssertVisibleCell(@"0");
|
|
FBAssertVisibleCell(@"10");
|
|
[self.scrollView fb_scrollDownByNormalizedDistance:1.0];
|
|
FBAssertInvisibleCell(@"0");
|
|
FBAssertInvisibleCell(@"10");
|
|
XCTAssertTrue(self.testedApplication.staticTexts.count > 0);
|
|
[self.scrollView fb_scrollUpByNormalizedDistance:1.0];
|
|
FBAssertVisibleCell(@"0");
|
|
FBAssertVisibleCell(@"10");
|
|
}
|
|
|
|
- (void)testScrollToVisible
|
|
{
|
|
NSString *cellName = @"30";
|
|
FBAssertInvisibleCell(cellName);
|
|
NSError *error;
|
|
XCTAssertTrue([FBCellElementWithLabel(cellName) fb_scrollToVisibleWithError:&error]);
|
|
XCTAssertNil(error);
|
|
FBAssertVisibleCell(cellName);
|
|
}
|
|
|
|
- (void)testFarScrollToVisible
|
|
{
|
|
NSString *cellName = @"80";
|
|
NSError *error;
|
|
FBAssertInvisibleCell(cellName);
|
|
XCTAssertTrue([FBCellElementWithLabel(cellName) fb_scrollToVisibleWithError:&error]);
|
|
XCTAssertNil(error);
|
|
FBAssertVisibleCell(cellName);
|
|
}
|
|
|
|
- (void)testAttributeWithNullScrollToVisible
|
|
{
|
|
NSError *error;
|
|
NSArray<XCUIElement *> *queryMatches = [self.testedApplication fb_descendantsMatchingClassChain:@"**/XCUIElementTypeTable/XCUIElementTypeCell[60]" shouldReturnAfterFirstMatch:NO];
|
|
XCTAssertEqual(queryMatches.count, 1);
|
|
XCUIElement *element = queryMatches.firstObject;
|
|
XCTAssertFalse(element.fb_isVisible);
|
|
[element fb_scrollToVisibleWithError:&error];
|
|
XCTAssertNil(error);
|
|
XCTAssertTrue(element.fb_isVisible);
|
|
[element tap];
|
|
[element resolve];
|
|
XCTAssertTrue(element.lastSnapshot.selected);
|
|
}
|
|
|
|
@end
|
|
|