2015-05-22 14:17:08 +00:00
|
|
|
/**
|
|
|
|
* The examples provided by Facebook are for non-commercial testing and
|
|
|
|
* evaluation purposes only.
|
|
|
|
*
|
|
|
|
* Facebook reserves all rights not expressly granted.
|
|
|
|
*
|
|
|
|
* 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 NON INFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* FACEBOOK 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 <CoreGraphics/CoreGraphics.h>
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import <UIKit/UIView.h>
|
|
|
|
#import <XCTest/XCTest.h>
|
2015-07-21 12:40:06 +00:00
|
|
|
#import "RCTImageUtils.h"
|
2015-05-22 14:17:08 +00:00
|
|
|
|
|
|
|
#define RCTAssertEqualPoints(a, b) { \
|
|
|
|
XCTAssertEqual(a.x, b.x); \
|
|
|
|
XCTAssertEqual(a.y, b.y); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define RCTAssertEqualSizes(a, b) { \
|
|
|
|
XCTAssertEqual(a.width, b.width); \
|
|
|
|
XCTAssertEqual(a.height, b.height); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define RCTAssertEqualRects(a, b) { \
|
|
|
|
RCTAssertEqualPoints(a.origin, b.origin); \
|
|
|
|
RCTAssertEqualSizes(a.size, b.size); \
|
|
|
|
}
|
|
|
|
|
2015-07-21 12:40:06 +00:00
|
|
|
@interface RCTClipRectTests : XCTestCase
|
2015-05-22 14:17:08 +00:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
2015-07-21 12:40:06 +00:00
|
|
|
@implementation RCTClipRectTests
|
2015-05-22 14:17:08 +00:00
|
|
|
|
|
|
|
- (void)testLandscapeSourceLandscapeTarget
|
|
|
|
{
|
|
|
|
CGSize content = {1000, 100};
|
|
|
|
CGSize target = {100, 20};
|
|
|
|
|
|
|
|
{
|
|
|
|
CGRect expected = {CGPointZero, {100, 20}};
|
|
|
|
CGRect result = RCTClipRect(content, 1, target, 1, UIViewContentModeScaleToFill);
|
|
|
|
RCTAssertEqualRects(expected, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
CGRect expected = {CGPointZero, {100, 10}};
|
|
|
|
CGRect result = RCTClipRect(content, 1, target, 1, UIViewContentModeScaleAspectFit);
|
|
|
|
RCTAssertEqualRects(expected, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
CGRect expected = {{-50, 0}, {200, 20}};
|
|
|
|
CGRect result = RCTClipRect(content, 1, target, 1, UIViewContentModeScaleAspectFill);
|
|
|
|
RCTAssertEqualRects(expected, result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)testPortraitSourceLandscapeTarget
|
|
|
|
{
|
|
|
|
CGSize content = {10, 100};
|
|
|
|
CGSize target = {100, 20};
|
|
|
|
|
|
|
|
{
|
|
|
|
CGRect expected = {CGPointZero, {10, 20}};
|
|
|
|
CGRect result = RCTClipRect(content, 1, target, 1, UIViewContentModeScaleToFill);
|
|
|
|
RCTAssertEqualRects(expected, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
CGRect expected = {CGPointZero, {2, 20}};
|
|
|
|
CGRect result = RCTClipRect(content, 1, target, 1, UIViewContentModeScaleAspectFit);
|
|
|
|
RCTAssertEqualRects(expected, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
CGRect expected = {{0, -49}, {10, 100}};
|
|
|
|
CGRect result = RCTClipRect(content, 1, target, 1, UIViewContentModeScaleAspectFill);
|
|
|
|
RCTAssertEqualRects(expected, result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)testPortraitSourcePortraitTarget
|
|
|
|
{
|
|
|
|
CGSize content = {10, 100};
|
|
|
|
CGSize target = {20, 50};
|
|
|
|
|
|
|
|
{
|
|
|
|
CGRect expected = {CGPointZero, {10, 50}};
|
|
|
|
CGRect result = RCTClipRect(content, 1, target, 1, UIViewContentModeScaleToFill);
|
|
|
|
RCTAssertEqualRects(expected, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
CGRect expected = {CGPointZero, {5, 50}};
|
|
|
|
CGRect result = RCTClipRect(content, 1, target, 1, UIViewContentModeScaleAspectFit);
|
|
|
|
RCTAssertEqualRects(expected, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
CGRect expected = {{0, -37.5}, {10, 100}};
|
2015-07-21 12:40:06 +00:00
|
|
|
CGRect result = RCTClipRect(content, 2, target, 2, UIViewContentModeScaleAspectFill);
|
|
|
|
RCTAssertEqualRects(expected, result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)testRounding
|
|
|
|
{
|
|
|
|
CGSize content = {10, 100};
|
|
|
|
CGSize target = {20, 50};
|
|
|
|
|
|
|
|
{
|
|
|
|
CGRect expected = {{0, -38}, {10, 100}};
|
2015-05-22 14:17:08 +00:00
|
|
|
CGRect result = RCTClipRect(content, 1, target, 1, UIViewContentModeScaleAspectFill);
|
|
|
|
RCTAssertEqualRects(expected, result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)testScaling
|
|
|
|
{
|
|
|
|
CGSize content = {2, 2};
|
|
|
|
CGSize target = {3, 3};
|
|
|
|
|
|
|
|
CGRect expected = {CGPointZero, {3, 3}};
|
|
|
|
CGRect result = RCTClipRect(content, 2, target, 1, UIViewContentModeScaleToFill);
|
|
|
|
RCTAssertEqualRects(expected, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|