mirror of
https://github.com/tappollo/IGListKit.git
synced 2026-05-21 06:28:27 +08:00
Summary: Rebase from #140: Create a flow layout for IGList that does not newline sections. Closes #3 - [x] Minimum inter-item spacing - [x] Minimum line spacing - [x] Constant item size with constant layout time - [x] Update layout on insert/delete/move - [x] Unit Test Closes https://github.com/Instagram/IGListKit/pull/225 Differential Revision: D4211469 Pulled By: rnystrom fbshipit-source-id: f4710dbf195701098ac50f94b6b2aa8c801b2a83
138 lines
6.3 KiB
Objective-C
138 lines
6.3 KiB
Objective-C
/**
|
|
* Copyright (c) 2016-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 "IGListGridCollectionViewLayout.h"
|
|
#import "IGTestCell.h"
|
|
#import "IGTestSingleItemDataSource.h"
|
|
|
|
|
|
#define genTestObject(k, v) [[IGTestObject alloc] initWithKey:k value:v]
|
|
|
|
#define genExpectation [self expectationWithDescription:NSStringFromSelector(_cmd)]
|
|
|
|
#define IGAssertEqualFrame(frame, x, y, w, h, ...) \
|
|
do { \
|
|
CGRect expected = CGRectMake(x, y, w, h); \
|
|
XCTAssertEqual(CGRectGetMinX(expected), CGRectGetMinX(frame)); \
|
|
XCTAssertEqual(CGRectGetMinY(expected), CGRectGetMinY(frame)); \
|
|
XCTAssertEqual(CGRectGetWidth(expected), CGRectGetWidth(frame)); \
|
|
XCTAssertEqual(CGRectGetHeight(expected), CGRectGetHeight(frame)); \
|
|
} while(0)
|
|
|
|
@interface IGListGridCollectionViewLayoutTests : XCTestCase
|
|
|
|
@property (nonatomic, strong) IGListCollectionView *collectionView;
|
|
@property (nonatomic, strong) IGListAdapter *adapter;
|
|
@property (nonatomic, strong) IGListAdapterUpdater *updater;
|
|
@property (nonatomic, strong) IGTestSingleItemDataSource *dataSource;
|
|
@property (nonatomic, strong) UIWindow *window;
|
|
@property (nonatomic, strong) IGListGridCollectionViewLayout *layout;
|
|
|
|
@end
|
|
|
|
@implementation IGListGridCollectionViewLayoutTests
|
|
|
|
- (void)setUp {
|
|
[super setUp];
|
|
self.window = [[UIWindow alloc] initWithFrame:CGRectMake(0, 0, 100, 100)];
|
|
self.layout = [[IGListGridCollectionViewLayout alloc] init];
|
|
self.collectionView = [[IGListCollectionView alloc] initWithFrame:CGRectMake(0, 0, 100, 100) collectionViewLayout:self.layout];
|
|
[self.window addSubview:self.collectionView];
|
|
self.dataSource = [[IGTestSingleItemDataSource alloc] init];
|
|
self.updater = [[IGListAdapterUpdater alloc] init];
|
|
self.adapter = [[IGListAdapter alloc] initWithUpdater:self.updater viewController:nil workingRangeSize:2];
|
|
}
|
|
|
|
- (void)tearDown {
|
|
[super tearDown];
|
|
self.window = nil;
|
|
self.collectionView = nil;
|
|
self.adapter = nil;
|
|
self.dataSource = nil;
|
|
self.layout = nil;
|
|
}
|
|
|
|
- (void)setupWithObjects:(NSArray *)objects {
|
|
self.dataSource.objects = objects;
|
|
self.adapter.collectionView = self.collectionView;
|
|
self.adapter.dataSource = self.dataSource;
|
|
[self.collectionView layoutIfNeeded];
|
|
}
|
|
|
|
- (void)test_whenDisplayingCollectionView_thatHasOneItem {
|
|
[self setupWithObjects:@[genTestObject(@1, @"Foo")]];
|
|
CGSize contentSize = self.layout.collectionViewContentSize;
|
|
NSIndexPath *indexPath = [NSIndexPath indexPathForItem:0 inSection:0];
|
|
UICollectionViewLayoutAttributes *attributes = [self.layout layoutAttributesForItemAtIndexPath:indexPath];
|
|
XCTAssertEqual(contentSize.width, 100.0f);
|
|
XCTAssertEqual(contentSize.height, 44.0f);
|
|
IGAssertEqualFrame(attributes.frame, 0, 0, 100, 44);
|
|
}
|
|
|
|
- (void)test_whenDisplayingCollectionView_thatLayoutHasItemSize {
|
|
self.layout.itemSize = CGSizeMake(44.0f, 44.0f);
|
|
[self setupWithObjects:@[genTestObject(@1, @"Foo")]];
|
|
NSIndexPath *indexPath = [NSIndexPath indexPathForItem:0 inSection:0];
|
|
UICollectionViewLayoutAttributes *attributes = [self.layout layoutAttributesForItemAtIndexPath:indexPath];
|
|
IGAssertEqualFrame(attributes.frame, 0, 0, 44, 44);
|
|
}
|
|
|
|
- (void)test_whenDisplayingCollectionView_thatHasMultipleItems {
|
|
self.layout.itemSize = CGSizeMake(44.0f, 44.0f);
|
|
self.layout.minimumInteritemSpacing = 12.0f;
|
|
self.layout.minimumLineSpacing = 6.0f;
|
|
[self setupWithObjects:@[
|
|
genTestObject(@1, @"Foo"),
|
|
genTestObject(@2, @"Bar"),
|
|
genTestObject(@3, @"Baz"),
|
|
genTestObject(@4, @"Foo"),
|
|
genTestObject(@5, @"Bar"),
|
|
genTestObject(@6, @"Baz")
|
|
]];
|
|
CGSize contentSize = self.layout.collectionViewContentSize;
|
|
NSIndexPath *indexPath0 = [NSIndexPath indexPathForItem:0 inSection:0];
|
|
NSIndexPath *indexPath2 = [NSIndexPath indexPathForItem:0 inSection:2];
|
|
NSIndexPath *indexPath3 = [NSIndexPath indexPathForItem:0 inSection:3];
|
|
NSIndexPath *indexPath5 = [NSIndexPath indexPathForItem:0 inSection:5];
|
|
UICollectionViewLayoutAttributes *attributes0 = [self.layout layoutAttributesForItemAtIndexPath:indexPath0];
|
|
UICollectionViewLayoutAttributes *attributes2 = [self.layout layoutAttributesForItemAtIndexPath:indexPath2];
|
|
UICollectionViewLayoutAttributes *attributes3 = [self.layout layoutAttributesForItemAtIndexPath:indexPath3];
|
|
UICollectionViewLayoutAttributes *attributes5 = [self.layout layoutAttributesForItemAtIndexPath:indexPath5];
|
|
XCTAssertEqual(contentSize.width, 100.0f);
|
|
XCTAssertEqual(contentSize.height, 144.0f);
|
|
IGAssertEqualFrame(attributes0.frame, 0, 0, 44, 44);
|
|
IGAssertEqualFrame(attributes2.frame, 0, 50, 44, 44);
|
|
IGAssertEqualFrame(attributes3.frame, 56, 50, 44, 44);
|
|
IGAssertEqualFrame(attributes5.frame, 56, 100, 44, 44);
|
|
}
|
|
|
|
- (void)test_whenDisplayingCollectionView_thatUsesDelegateSize {
|
|
self.layout.minimumLineSpacing = 6.0f;
|
|
[self setupWithObjects:@[
|
|
genTestObject(@1, @"Foo"),
|
|
genTestObject(@2, @"Bar"),
|
|
genTestObject(@3, @"Baz")
|
|
]];
|
|
CGSize contentSize = self.layout.collectionViewContentSize;
|
|
NSIndexPath *indexPath0 = [NSIndexPath indexPathForItem:0 inSection:0];
|
|
NSIndexPath *indexPath1 = [NSIndexPath indexPathForItem:0 inSection:1];
|
|
NSIndexPath *indexPath2 = [NSIndexPath indexPathForItem:0 inSection:2];
|
|
UICollectionViewLayoutAttributes *attributes0 = [self.layout layoutAttributesForItemAtIndexPath:indexPath0];
|
|
UICollectionViewLayoutAttributes *attributes1 = [self.layout layoutAttributesForItemAtIndexPath:indexPath1];
|
|
UICollectionViewLayoutAttributes *attributes2 = [self.layout layoutAttributesForItemAtIndexPath:indexPath2];
|
|
XCTAssertEqual(contentSize.width, 100.0f);
|
|
XCTAssertEqual(contentSize.height, 144.0f);
|
|
IGAssertEqualFrame(attributes0.frame, 0, 0, 100, 44);
|
|
IGAssertEqualFrame(attributes1.frame, 0, 50, 100, 44);
|
|
IGAssertEqualFrame(attributes2.frame, 0, 100, 100, 44);
|
|
}
|
|
@end
|