mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-15 08:27:52 +00:00
* A few small fixes plus a failing test for ASTextNode * Change the approach * Update changelog * Eh screw null_resettable * No need for changelog now
141 lines
6.0 KiB
Objective-C
141 lines
6.0 KiB
Objective-C
//
|
|
// ASTextNodeSnapshotTests.m
|
|
// Texture
|
|
//
|
|
// Created by Garrett Moon on 8/12/16.
|
|
// Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
|
|
// This source code is licensed under the BSD-style license found in the
|
|
// LICENSE file in the /ASDK-Licenses directory of this source tree. An additional
|
|
// grant of patent rights can be found in the PATENTS file in the same directory.
|
|
//
|
|
// Modifications to this file made after 4/13/2017 are: Copyright (c) 2017-present,
|
|
// Pinterest, Inc. Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
|
|
#import "ASSnapshotTestCase.h"
|
|
#import <AsyncDisplayKit/AsyncDisplayKit.h>
|
|
|
|
@interface ASTextNodeSnapshotTests : ASSnapshotTestCase
|
|
|
|
@end
|
|
|
|
@implementation ASTextNodeSnapshotTests
|
|
|
|
- (void)setUp
|
|
{
|
|
[super setUp];
|
|
|
|
self.recordMode = NO;
|
|
}
|
|
|
|
- (void)testTextContainerInset
|
|
{
|
|
// trivial test case to ensure ASSnapshotTestCase works
|
|
ASTextNode *textNode = [[ASTextNode alloc] init];
|
|
textNode.attributedText = [[NSAttributedString alloc] initWithString:@"judar"
|
|
attributes:@{NSFontAttributeName : [UIFont italicSystemFontOfSize:24]}];
|
|
textNode.textContainerInset = UIEdgeInsetsMake(0, 2, 0, 2);
|
|
ASDisplayNodeSizeToFitSizeRange(textNode, ASSizeRangeMake(CGSizeZero, CGSizeMake(CGFLOAT_MAX, CGFLOAT_MAX)));
|
|
|
|
ASSnapshotVerifyNode(textNode, nil);
|
|
}
|
|
|
|
- (void)testTextContainerInsetIsIncludedWithSmallerConstrainedSize
|
|
{
|
|
UIView *backgroundView = [[UIView alloc] initWithFrame:CGRectZero];
|
|
backgroundView.layer.as_allowsHighlightDrawing = YES;
|
|
|
|
ASTextNode *textNode = [[ASTextNode alloc] init];
|
|
textNode.attributedText = [[NSAttributedString alloc] initWithString:@"judar judar judar judar judar judar"
|
|
attributes:@{ NSFontAttributeName : [UIFont systemFontOfSize:30] }];
|
|
|
|
textNode.textContainerInset = UIEdgeInsetsMake(10, 10, 10, 10);
|
|
|
|
ASLayout *layout = [textNode layoutThatFits:ASSizeRangeMake(CGSizeZero, CGSizeMake(100, 80))];
|
|
textNode.frame = CGRectMake(50, 50, layout.size.width, layout.size.height);
|
|
|
|
[backgroundView addSubview:textNode.view];
|
|
backgroundView.frame = UIEdgeInsetsInsetRect(textNode.bounds, UIEdgeInsetsMake(-50, -50, -50, -50));
|
|
|
|
textNode.highlightRange = NSMakeRange(0, textNode.attributedText.length);
|
|
|
|
[ASSnapshotTestCase hackilySynchronouslyRecursivelyRenderNode:textNode];
|
|
ASSnapshotVerifyLayer(backgroundView.layer, nil);
|
|
}
|
|
|
|
- (void)testTextContainerInsetHighlight
|
|
{
|
|
UIView *backgroundView = [[UIView alloc] initWithFrame:CGRectZero];
|
|
backgroundView.layer.as_allowsHighlightDrawing = YES;
|
|
|
|
ASTextNode *textNode = [[ASTextNode alloc] init];
|
|
textNode.attributedText = [[NSAttributedString alloc] initWithString:@"yolo"
|
|
attributes:@{ NSFontAttributeName : [UIFont systemFontOfSize:30] }];
|
|
|
|
textNode.textContainerInset = UIEdgeInsetsMake(5, 10, 10, 5);
|
|
ASLayout *layout = [textNode layoutThatFits:ASSizeRangeMake(CGSizeZero, CGSizeMake(INFINITY, INFINITY))];
|
|
textNode.frame = CGRectMake(50, 50, layout.size.width, layout.size.height);
|
|
|
|
[backgroundView addSubview:textNode.view];
|
|
backgroundView.frame = UIEdgeInsetsInsetRect(textNode.bounds, UIEdgeInsetsMake(-50, -50, -50, -50));
|
|
|
|
textNode.highlightRange = NSMakeRange(0, textNode.attributedText.length);
|
|
|
|
[ASSnapshotTestCase hackilySynchronouslyRecursivelyRenderNode:textNode];
|
|
ASSnapshotVerifyView(backgroundView, nil);
|
|
}
|
|
|
|
// This test is disabled because the fast-path is disabled.
|
|
- (void)DISABLED_testThatFastPathTruncationWorks
|
|
{
|
|
ASTextNode *textNode = [[ASTextNode alloc] init];
|
|
textNode.attributedText = [[NSAttributedString alloc] initWithString:@"Quality is Important" attributes:@{ NSForegroundColorAttributeName: [UIColor blueColor], NSFontAttributeName: [UIFont italicSystemFontOfSize:24] }];
|
|
[textNode layoutThatFits:ASSizeRangeMake(CGSizeZero, CGSizeMake(100, 50))];
|
|
ASSnapshotVerifyNode(textNode, nil);
|
|
}
|
|
|
|
- (void)testThatSlowPathTruncationWorks
|
|
{
|
|
ASTextNode *textNode = [[ASTextNode alloc] init];
|
|
textNode.attributedText = [[NSAttributedString alloc] initWithString:@"Quality is Important" attributes:@{ NSForegroundColorAttributeName: [UIColor blueColor], NSFontAttributeName: [UIFont italicSystemFontOfSize:24] }];
|
|
// Set exclusion paths to trigger slow path
|
|
textNode.exclusionPaths = @[ [UIBezierPath bezierPath] ];
|
|
ASDisplayNodeSizeToFitSizeRange(textNode, ASSizeRangeMake(CGSizeZero, CGSizeMake(100, 50)));
|
|
ASSnapshotVerifyNode(textNode, nil);
|
|
}
|
|
|
|
- (void)testShadowing
|
|
{
|
|
ASTextNode *textNode = [[ASTextNode alloc] init];
|
|
textNode.attributedText = [[NSAttributedString alloc] initWithString:@"Quality is Important"];
|
|
textNode.shadowColor = [UIColor blackColor].CGColor;
|
|
textNode.shadowOpacity = 0.3;
|
|
textNode.shadowRadius = 3;
|
|
textNode.shadowOffset = CGSizeMake(0, 1);
|
|
ASDisplayNodeSizeToFitSizeRange(textNode, ASSizeRangeMake(CGSizeZero, CGSizeMake(INFINITY, INFINITY)));
|
|
ASSnapshotVerifyNode(textNode, nil);
|
|
}
|
|
|
|
/**
|
|
* https://github.com/TextureGroup/Texture/issues/822
|
|
*/
|
|
- (void)DISABLED_testThatTruncationTokenAttributesPrecedeThoseInheritedFromTextWhenTruncateTailMode
|
|
{
|
|
ASTextNode *textNode = [[ASTextNode alloc] init];
|
|
textNode.style.maxSize = CGSizeMake(20, 80);
|
|
NSMutableAttributedString *mas = [[NSMutableAttributedString alloc] initWithString:@"Quality is an important "];
|
|
[mas appendAttributedString:[[NSAttributedString alloc] initWithString:@"thing" attributes:@{ NSBackgroundColorAttributeName : UIColor.yellowColor}]];
|
|
textNode.attributedText = mas;
|
|
textNode.truncationMode = NSLineBreakByTruncatingTail;
|
|
|
|
textNode.truncationAttributedText = [[NSAttributedString alloc] initWithString:@"\u2026" attributes:@{ NSBackgroundColorAttributeName: UIColor.greenColor }];
|
|
ASDisplayNodeSizeToFitSizeRange(textNode, ASSizeRangeMake(CGSizeZero, CGSizeMake(INFINITY, INFINITY)));
|
|
ASSnapshotVerifyNode(textNode, nil);
|
|
}
|
|
|
|
@end
|