blob: 792d4c3a4e509fec37b90a9e18402c4478edee85 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
#import <XCTest/XCTest.h>
#import <WeexSDK/WeexSDK.h>
@interface WXTestComponent : WXComponent
@end
@implementation WXTestComponent
- (UIView *)loadView
{
UIView *view = [[UIView alloc] init];
view.tag = 999;
return view;
}
@end
@interface WXComponentTests : XCTestCase
@end
@implementation WXComponentTests
- (void)setUp
{
[super setUp];
// Put setup code here. This method is called before the invocation of each test method in the class.
}
- (void)tearDown
{
// Put teardown code here. This method is called after the invocation of each test method in the class.
[super tearDown];
}
//- (void)testDefaultProperties
//{
// WXComponent *component = [[WXComponent alloc] initWithRef:@"0" type:@"div" styles:@{} attributes:@{} events:@[] weexInstance:[[WXSDKInstance alloc] init]];
//
// /**
// * Layout
// */
// XCTAssertTrue(component->_isLayoutDirty);
// XCTAssertTrue(CGRectEqualToRect(component.calculatedFrame, CGRectZero));
// XCTAssertEqual(component->_positionType, WXPositionTypeRelative);
//
// /**
// * View
// */
// XCTAssertEqual(component->_backgroundColor, [UIColor clearColor]);
// XCTAssertEqual(component->_clipToBounds, NO);
// XCTAssertNil(component->_view);
// XCTAssertEqual(component->_opacity, 1.0);
// XCTAssertEqual(component->_visibility, WXVisibilityShow);
//}
- (void)testThatComponentCreatedOnBackgroundCanCreateView
{
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
WXComponent *component = [[WXComponent alloc] initWithRef:@"0" type:@"div" styles:@{} attributes:@{} events:@[] weexInstance:[[WXSDKInstance alloc] init]];
dispatch_async(dispatch_get_main_queue(), ^{
XCTAssertNotNil(component.view, @"Component's view should be created");
});
});
}
- (void)testThatLoadViewTakeEffect
{
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
WXComponent *component = [[WXTestComponent alloc] initWithRef:@"0" type:@"div" styles:@{} attributes:@{} events:@[] weexInstance:[[WXSDKInstance alloc] init]];
dispatch_async(dispatch_get_main_queue(), ^{
XCTAssertEqual(component.view.tag, 999, @"Component's loadView not take effect.");
});
});
}
- (void)testReferenceCounting
{
WXComponent *component = [[WXComponent alloc] initWithRef:@"0" type:@"div" styles:@{} attributes:@{} events:@[] weexInstance:[[WXSDKInstance alloc] init]];
XCTAssertTrue(1 == component.retainCount, @"unexpected retain count:%tu", component.retainCount);
[component retain];
XCTAssertTrue(2 == component.retainCount, @"unexpected retain count:%tu", component.retainCount);
[component release];
XCTAssertTrue(1 == component.retainCount);
}
#define XCTAssertEqualCGFloat(expression1, expression2, ...) \
XCTAssertEqualWithAccuracy(expression1, expression2, 0.00001)
//- (void)testCSSNodeStyleConvert
//{
// NSDictionary *testStyles =
// @{
// @"flex":@2.0,
// @"flexDirection":@"row",
// @"alignItems":@"flex-start",
// @"alignSelf":@"flex-end",
// @"flexWrap":@"wrap",
// @"justifyContent":@"space-between",
// @"position" : @"absolute",
// @"left" : @1.2f,
// @"top" : @2.3f,
// @"right" : @3.4f,
// @"bottom" : @4.5f,
// @"width" : @100.1f,
// @"height" : @199.9f,
// @"minWidth" : @88.8f,
// @"minHeight" : @188.8f,
// @"maxWidth" : @188.8f,
// @"maxHeight" : @200.1f,
// @"marginTop" : @5.4f,
// @"marginLeft" : @4.3f,
// @"marginRight" : @3.2f,
// @"marginBottom" : @2.1f,
// @"borderLeftWidth" : @2.3f,
// @"borderRightWidth" : @2.3f,
// @"borderTopWidth" : @3.4f,
// @"borderBottomWidth" : @3.4f,
// @"paddingTop" : @1.2f,
// @"paddingLeft" : @2.3f,
// @"paddingRight" : @3.4f,
// @"paddingBottom" : @4.5f
// };
//
// WXComponent *component = [[WXComponent alloc] initWithRef:@"1" type:@"div" styles:testStyles attributes:nil events:nil weexInstance:[[WXSDKInstance alloc] init]];
//
// css_node_t *cssNode = component.cssNode;
// CGFloat scale = [WXUtility defaultPixelScaleFactor];
//
// XCTAssertEqual(cssNode->style.flex, 2.0);
// XCTAssertEqual(cssNode->style.flex_direction, CSS_FLEX_DIRECTION_ROW);
// XCTAssertEqual(cssNode->style.align_items, CSS_ALIGN_FLEX_START);
// XCTAssertEqual(cssNode->style.align_self, CSS_ALIGN_FLEX_END);
// XCTAssertEqual(cssNode->style.flex_wrap, CSS_WRAP);
// XCTAssertEqual(cssNode->style.justify_content, CSS_JUSTIFY_SPACE_BETWEEN);
// XCTAssertEqual(cssNode->style.position_type, CSS_POSITION_ABSOLUTE);
// XCTAssertEqualCGFloat(cssNode->style.position[CSS_LEFT], 1.2 * scale);
// XCTAssertEqualCGFloat(cssNode->style.position[CSS_TOP], 2.3 * scale);
// XCTAssertEqualCGFloat(cssNode->style.position[CSS_RIGHT], 3.4 * scale);
// XCTAssertEqualCGFloat(cssNode->style.position[CSS_BOTTOM], 4.5 * scale);
// XCTAssertEqualCGFloat(cssNode->style.dimensions[CSS_WIDTH], 100.1 * scale);
// XCTAssertEqualCGFloat(cssNode->style.dimensions[CSS_HEIGHT], 199.9 * scale);
// XCTAssertEqualCGFloat(cssNode->style.minDimensions[CSS_WIDTH], 88.8 * scale);
// XCTAssertEqualCGFloat(cssNode->style.minDimensions[CSS_HEIGHT], 188.8 * scale);
// XCTAssertEqualCGFloat(cssNode->style.maxDimensions[CSS_WIDTH], 188.8 * scale);
// XCTAssertEqualCGFloat(cssNode->style.maxDimensions[CSS_HEIGHT], 200.1 * scale);
// XCTAssertEqualCGFloat(cssNode->style.margin[CSS_TOP], 5.4 * scale);
// XCTAssertEqualCGFloat(cssNode->style.margin[CSS_LEFT], 4.3 * scale);
// XCTAssertEqualCGFloat(cssNode->style.margin[CSS_RIGHT], 3.2 * scale);
// XCTAssertEqualCGFloat(cssNode->style.margin[CSS_BOTTOM], 2.1 * scale);
// XCTAssertEqualCGFloat(cssNode->style.border[CSS_LEFT], 2.3 * scale);
// XCTAssertEqualCGFloat(cssNode->style.border[CSS_TOP], 3.4 * scale);
// XCTAssertEqualCGFloat(cssNode->style.border[CSS_RIGHT], 2.3 * scale);
// XCTAssertEqualCGFloat(cssNode->style.border[CSS_BOTTOM], 3.4 * scale);
// XCTAssertEqualCGFloat(cssNode->style.padding[CSS_TOP], 1.2 * scale);
// XCTAssertEqualCGFloat(cssNode->style.padding[CSS_LEFT], 2.3 * scale);
// XCTAssertEqualCGFloat(cssNode->style.padding[CSS_RIGHT], 3.4 * scale);
// XCTAssertEqualCGFloat(cssNode->style.padding[CSS_BOTTOM], 4.5 * scale);
//}
@end