mirror of
https://github.com/zhigang1992/CCHLinkTextView.git
synced 2026-01-12 22:46:17 +08:00
184 lines
7.1 KiB
Objective-C
184 lines
7.1 KiB
Objective-C
//
|
|
// CCHLinkTextViewTests.m
|
|
// CCHLinkTextView
|
|
//
|
|
// Copyright (C) 2014 Claus Höfele
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
// THE SOFTWARE.
|
|
//
|
|
|
|
#import <XCTest/XCTest.h>
|
|
|
|
#import "CCHLinkTextView.h"
|
|
|
|
@interface CCHLinkTextViewTests : XCTestCase
|
|
|
|
@property (nonatomic, strong) CCHLinkTextView *linkTextView;
|
|
|
|
@end
|
|
|
|
@implementation CCHLinkTextViewTests
|
|
|
|
- (void)setUp
|
|
{
|
|
[super setUp];
|
|
|
|
CGRect rect = CGRectMake(0, 0, 100, 100);
|
|
self.linkTextView = [[CCHLinkTextView alloc] initWithFrame:rect];
|
|
self.linkTextView.text = @"012345678901234567890123456789";
|
|
}
|
|
|
|
- (void)testEnumerateViewRectsForRanges
|
|
{
|
|
NSValue *rangeAsValue = [NSValue valueWithRange:NSMakeRange(0, 10)];
|
|
__block NSUInteger blockCalled = 0;
|
|
[self.linkTextView enumerateViewRectsForRanges:@[rangeAsValue] usingBlock:^(CGRect rect, NSRange range, BOOL *stop) {
|
|
blockCalled++;
|
|
}];
|
|
XCTAssertEqual(blockCalled, 1u);
|
|
}
|
|
|
|
- (void)testEnumerateViewRectsForRangesTwice
|
|
{
|
|
NSValue *rangeAsValue = [NSValue valueWithRange:NSMakeRange(0, 20)];
|
|
__block NSUInteger blockCalled = 0;
|
|
[self.linkTextView enumerateViewRectsForRanges:@[rangeAsValue] usingBlock:^(CGRect rect, NSRange range, BOOL *stop) {
|
|
blockCalled++;
|
|
}];
|
|
XCTAssertEqual(blockCalled, 2u);
|
|
}
|
|
|
|
- (void)testEnumerateViewRectsForRangesTwiceStopped
|
|
{
|
|
NSValue *rangeAsValue = [NSValue valueWithRange:NSMakeRange(0, 20)];
|
|
__block NSUInteger blockCalled = 0;
|
|
[self.linkTextView enumerateViewRectsForRanges:@[rangeAsValue] usingBlock:^(CGRect rect, NSRange range, BOOL *stop) {
|
|
blockCalled++;
|
|
*stop = YES;
|
|
}];
|
|
XCTAssertEqual(blockCalled, 1u);
|
|
}
|
|
|
|
- (void)testEnumerateLinkRangesContainingPoint
|
|
{
|
|
NSRange linkRange = NSMakeRange(0, 10);
|
|
NSMutableAttributedString *attributedText = [self.linkTextView.attributedText mutableCopy];
|
|
[attributedText addAttribute:CCHLinkAttributeName value:@"http://google.de" range:linkRange];
|
|
self.linkTextView.attributedText = attributedText;
|
|
|
|
__block NSUInteger blockCalled = 0;
|
|
[self.linkTextView enumerateLinkRangesContainingLocation:CGPointMake(50, 20) usingBlock:^(NSRange range) {
|
|
blockCalled++;
|
|
XCTAssertTrue(NSEqualRanges(range, linkRange));
|
|
}];
|
|
XCTAssertEqual(blockCalled, 1u);
|
|
}
|
|
|
|
- (void)testEnumerateLinkRangesNotContainingPoint
|
|
{
|
|
NSRange linkRange = NSMakeRange(0, 10);
|
|
NSMutableAttributedString *attributedText = [self.linkTextView.attributedText mutableCopy];
|
|
[attributedText addAttribute:CCHLinkAttributeName value:@"http://google.de" range:linkRange];
|
|
self.linkTextView.attributedText = attributedText;
|
|
|
|
__block NSUInteger blockCalled = 0;
|
|
[self.linkTextView enumerateLinkRangesContainingLocation:CGPointMake(100, 20) usingBlock:^(NSRange range) {
|
|
blockCalled++;
|
|
XCTAssertTrue(NSEqualRanges(range, linkRange));
|
|
}];
|
|
XCTAssertEqual(blockCalled, 0u);
|
|
}
|
|
|
|
- (void)testEnumerateLinkRangesContainingPointExtendedTapAreaX
|
|
{
|
|
NSRange linkRange = NSMakeRange(0, 10);
|
|
NSMutableAttributedString *attributedText = [self.linkTextView.attributedText mutableCopy];
|
|
[attributedText addAttribute:CCHLinkAttributeName value:@"http://google.de" range:linkRange];
|
|
self.linkTextView.attributedText = attributedText;
|
|
self.linkTextView.tapAreaInsets = UIEdgeInsetsMake(0, 0, 0, -50);
|
|
|
|
__block NSUInteger blockCalled = 0;
|
|
[self.linkTextView enumerateLinkRangesContainingLocation:CGPointMake(100, 20) usingBlock:^(NSRange range) {
|
|
blockCalled++;
|
|
XCTAssertTrue(NSEqualRanges(range, linkRange));
|
|
}];
|
|
XCTAssertEqual(blockCalled, 1u);
|
|
}
|
|
|
|
- (void)testEnumerateLinkRangesContainingPointExtendedTapAreaY
|
|
{
|
|
NSRange linkRange = NSMakeRange(0, 10);
|
|
NSMutableAttributedString *attributedText = [self.linkTextView.attributedText mutableCopy];
|
|
[attributedText addAttribute:CCHLinkAttributeName value:@"http://google.de" range:linkRange];
|
|
self.linkTextView.attributedText = attributedText;
|
|
self.linkTextView.tapAreaInsets = UIEdgeInsetsMake(0, 0, -80, 0);
|
|
|
|
__block NSUInteger blockCalled = 0;
|
|
[self.linkTextView enumerateLinkRangesContainingLocation:CGPointMake(50, 100) usingBlock:^(NSRange range) {
|
|
blockCalled++;
|
|
XCTAssertTrue(NSEqualRanges(range, linkRange));
|
|
}];
|
|
XCTAssertEqual(blockCalled, 1u);
|
|
}
|
|
|
|
- (void)testEnumerateLinkRangesContainingPointTwice
|
|
{
|
|
NSRange linkRange = NSMakeRange(0, 20);
|
|
NSMutableAttributedString *attributedText = [self.linkTextView.attributedText mutableCopy];
|
|
[attributedText addAttribute:CCHLinkAttributeName value:@"http://google.de" range:linkRange];
|
|
self.linkTextView.attributedText = attributedText;
|
|
|
|
__block NSUInteger blockCalled = 0;
|
|
[self.linkTextView enumerateLinkRangesContainingLocation:CGPointMake(50, 20) usingBlock:^(NSRange range) {
|
|
blockCalled++;
|
|
XCTAssertTrue(NSEqualRanges(range, linkRange));
|
|
}];
|
|
XCTAssertEqual(blockCalled, 1u);
|
|
}
|
|
|
|
- (void)testEnumerateLinkRangesContainingPointOverlapping
|
|
{
|
|
NSMutableAttributedString *attributedText = [self.linkTextView.attributedText mutableCopy];
|
|
[attributedText addAttribute:CCHLinkAttributeName value:@"0" range:NSMakeRange(0, 20)];
|
|
[attributedText addAttribute:CCHLinkAttributeName value:@"1" range:NSMakeRange(5, 20)];
|
|
self.linkTextView.attributedText = attributedText;
|
|
|
|
__block NSUInteger blockCalled = 0;
|
|
[self.linkTextView enumerateLinkRangesContainingLocation:CGPointMake(50, 20) usingBlock:^(NSRange range) {
|
|
blockCalled++;
|
|
}];
|
|
XCTAssertEqual(blockCalled, 1u);
|
|
}
|
|
|
|
- (void)testEnumerateLinkRangesContainingPointOverlappingTwoLinks
|
|
{
|
|
NSMutableAttributedString *attributedText = [self.linkTextView.attributedText mutableCopy];
|
|
[attributedText addAttribute:CCHLinkAttributeName value:@"0" range:NSMakeRange(0, 20)];
|
|
[attributedText addAttribute:CCHLinkAttributeName value:@"1" range:NSMakeRange(5, 20)];
|
|
self.linkTextView.attributedText = attributedText;
|
|
|
|
__block NSUInteger blockCalled = 0;
|
|
[self.linkTextView enumerateLinkRangesContainingLocation:CGPointMake(37, 12) usingBlock:^(NSRange range) {
|
|
blockCalled++;
|
|
}];
|
|
XCTAssertEqual(blockCalled, 1u);
|
|
}
|
|
|
|
@end
|