X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=automated-tests%2Fsrc%2Fdali-toolkit%2Futc-Dali-TableView.cpp;h=7beeb965f20609f557fbbc9b0f53d321a4f68107;hp=9985106d5620be60abd17a30ee7969678575b643;hb=c46d8cb79f848d9e1fda57a46a987aadea57a7cd;hpb=5cf3fe5c50e9c6bd3e52898af024cb29f6881d8c diff --git a/automated-tests/src/dali-toolkit/utc-Dali-TableView.cpp b/automated-tests/src/dali-toolkit/utc-Dali-TableView.cpp index 9985106..7beeb96 100644 --- a/automated-tests/src/dali-toolkit/utc-Dali-TableView.cpp +++ b/automated-tests/src/dali-toolkit/utc-Dali-TableView.cpp @@ -39,9 +39,9 @@ namespace const char* const PROPERTY_NAME_ROWS = "rows"; const char* const PROPERTY_NAME_COLUMNS = "columns"; -const char* const PROPERTY_NAME_CELL_PADDING = "cell-padding"; -const char* const PROPERTY_NAME_LAYOUT_ROWS = "layout-rows"; -const char* const PROPERTY_NAME_LAYOUT_COLUMNS = "layout-columns"; +const char* const PROPERTY_NAME_CELL_PADDING = "cellPadding"; +const char* const PROPERTY_NAME_LAYOUT_ROWS = "layoutRows"; +const char* const PROPERTY_NAME_LAYOUT_COLUMNS = "layoutColumns"; const Vector2 CELL_SIZE( 10, 10 ); static bool gObjectCreatedCallBackCalled; @@ -595,20 +595,20 @@ int UtcDaliTableViewSetGetProperty(void) // Test "rows" property DALI_TEST_CHECK( tableView.GetPropertyIndex( PROPERTY_NAME_ROWS ) == TableView::Property::ROWS ); - tableView.SetProperty( TableView::Property::ROWS, 4u ); + tableView.SetProperty( TableView::Property::ROWS, 4 ); DALI_TEST_CHECK( tableView.GetRows() == 4u ); - DALI_TEST_CHECK( tableView.GetProperty(TableView::Property::ROWS).Get() == 4u ); + DALI_TEST_CHECK( tableView.GetProperty(TableView::Property::ROWS).Get() == 4 ); // Test "columns" property DALI_TEST_CHECK( tableView.GetPropertyIndex( PROPERTY_NAME_COLUMNS ) == TableView::Property::COLUMNS ); - tableView.SetProperty( TableView::Property::COLUMNS, 5u ); + tableView.SetProperty( TableView::Property::COLUMNS, 5 ); DALI_TEST_CHECK( tableView.GetColumns() == 5u ); - DALI_TEST_CHECK( tableView.GetProperty(TableView::Property::COLUMNS).Get() == 5u ); + DALI_TEST_CHECK( tableView.GetProperty(TableView::Property::COLUMNS).Get() == 5 ); - // Test "cell-padding" property + // Test "cellPadding" property DALI_TEST_CHECK( tableView.GetPropertyIndex( PROPERTY_NAME_CELL_PADDING ) == TableView::Property::CELL_PADDING ); tableView.SetProperty( TableView::Property::CELL_PADDING, Size( 6.f, 8.f ) ); @@ -625,11 +625,11 @@ int UtcDaliTableViewSetGetProperty(void) item2[ "policy" ] = "relative"; item2[ "value" ] = 0.2f; - // Test "layout-rows" property + // Test "layoutRows" property DALI_TEST_CHECK( tableView.GetPropertyIndex(PROPERTY_NAME_LAYOUT_ROWS) == TableView::Property::LAYOUT_ROWS ); /* - * "layout-rows": + * "layoutRows": * { * "1": { "policy": "fixed", "value": 30 }, * "3": { "policy": "relative", "value": 0.2 } @@ -646,18 +646,20 @@ int UtcDaliTableViewSetGetProperty(void) Property::Map layoutRowsGet = tableView.GetProperty(TableView::Property::LAYOUT_ROWS).Get(); DALI_TEST_EQUALS( layoutRowsGet.GetKey(1).compare(layoutRows.GetKey(0)), 0, TEST_LOCATION ); - DALI_TEST_CHECK( layoutRowsGet.GetValue(1).GetValue( "policy" ).Get().compare(layoutRows.GetValue(0).GetValue( "policy" ).Get()) == 0 ); - DALI_TEST_EQUALS( layoutRowsGet.GetValue(1).GetValue( "value" ).Get(), layoutRows.GetValue(0).GetValue( "value" ).Get(), TEST_LOCATION ); + Property::Map* childMap =layoutRowsGet.GetValue(1).GetMap(); + DALI_TEST_CHECK( childMap->Find( "policy" )->Get().compare("fixed") == 0 ); + DALI_TEST_EQUALS( childMap->Find( "value" )->Get(), 30.f, TEST_LOCATION ); + childMap =layoutRowsGet.GetValue(3).GetMap(); DALI_TEST_CHECK( layoutRowsGet.GetKey(3).compare(layoutRows.GetKey(1)) == 0 ); - DALI_TEST_CHECK( layoutRowsGet.GetValue(3).GetValue( "policy" ).Get().compare(layoutRows.GetValue(1).GetValue( "policy" ).Get()) == 0 ); - DALI_TEST_EQUALS( layoutRowsGet.GetValue(3).GetValue( "value" ).Get(), layoutRows.GetValue(1).GetValue( "value" ).Get(), TEST_LOCATION ); + DALI_TEST_CHECK( childMap->Find( "policy" )->Get().compare("relative") == 0 ); + DALI_TEST_EQUALS( childMap->Find( "value" )->Get(), 0.2f, TEST_LOCATION ); - // Test "layout-columns" property + // Test "layoutColumns" property DALI_TEST_CHECK( tableView.GetPropertyIndex( PROPERTY_NAME_LAYOUT_COLUMNS ) == TableView::Property::LAYOUT_COLUMNS ); /* - * "layout-columns": + * "layoutColumns": * { * "2": { "policy": "relative", "value": 0.2 }, * "3": { "policy": "fixed", "value": 30 } @@ -673,30 +675,32 @@ int UtcDaliTableViewSetGetProperty(void) Property::Map layoutColumnsGet = tableView.GetProperty(TableView::Property::LAYOUT_COLUMNS).Get(); DALI_TEST_CHECK( layoutColumnsGet.GetKey(2).compare(layoutColumns.GetKey(0)) == 0 ); - DALI_TEST_CHECK( layoutColumnsGet.GetValue(2).GetValue( "policy" ).Get().compare(layoutColumns.GetValue(0).GetValue( "policy" ).Get()) == 0 ); - DALI_TEST_EQUALS( layoutColumnsGet.GetValue(2).GetValue( "value" ).Get(),layoutColumns.GetValue(0).GetValue( "value" ).Get(), TEST_LOCATION ); - + childMap =layoutColumnsGet.GetValue(2).GetMap(); + DALI_TEST_CHECK( childMap->Find( "policy" )->Get().compare("relative") == 0 ); + DALI_TEST_EQUALS( childMap->Find( "value" )->Get(), 0.2f, TEST_LOCATION ); + childMap =layoutColumnsGet.GetValue(3).GetMap(); DALI_TEST_CHECK( layoutColumnsGet.GetKey(3).compare(layoutColumns.GetKey(1)) == 0 ); - DALI_TEST_CHECK( layoutColumnsGet.GetValue(3).GetValue( "policy" ).Get().compare(layoutColumns.GetValue(1).GetValue( "policy" ).Get()) == 0 ); - DALI_TEST_EQUALS( layoutColumnsGet.GetValue(3).GetValue( "value" ).Get(),layoutColumns.GetValue(1).GetValue( "value" ).Get(), TEST_LOCATION ); + DALI_TEST_CHECK( childMap->Find( "policy" )->Get().compare("fixed") == 0 ); + DALI_TEST_EQUALS( childMap->Find( "value" )->Get(),30.f, TEST_LOCATION ); END_TEST; } -int UtcDaliTableViewCustomProperties(void) +int UtcDaliTableViewChildProperties(void) { ToolkitTestApplication application; - tet_infoline("UtcDaliTableViewCustomProperties"); + tet_infoline("UtcDaliTableViewChildProperties"); // Create a 10x10 table-view TableView tableView = TableView::New(10,10); - Constraint constraint = Constraint::New( tableView, Actor::Property::SIZE, Constraint100() ); - constraint.Apply(); + Stage::GetCurrent().Add( tableView ); + tableView.SetSize( Dali::Vector2( 100.0f, 100.0f ) ); + DALI_TEST_CHECK( tableView ); // Create a child actor with the custom properties Actor child1 = Actor::New(); - child1.RegisterProperty( TableView::CELL_INDICES_PROPERTY_NAME, Vector2( 3, 4 ) ); + child1.SetProperty( TableView::ChildProperty::CELL_INDEX, Vector2( 3, 4 ) ); tableView.Add( child1 ); // Check for actors at actual positions. DALI_TEST_CHECK( tableView.GetChildAt(TableView::CellPosition(3,4)) == child1); @@ -705,9 +709,9 @@ int UtcDaliTableViewCustomProperties(void) Actor child2 = Actor::New(); float rowSpan = 3.f; float columnSpan = 2.f; - child2.RegisterProperty( TableView::CELL_INDICES_PROPERTY_NAME, Vector2( 6, 1 ) ); - child2.RegisterProperty( TableView::ROW_SPAN_PROPERTY_NAME, rowSpan ); - child2.RegisterProperty( TableView::COLUMN_SPAN_PROPERTY_NAME, columnSpan ); + child2.SetProperty( TableView::ChildProperty::CELL_INDEX, Vector2( 6, 1 ) ); + child2.SetProperty( TableView::ChildProperty::ROW_SPAN, rowSpan ); + child2.SetProperty( TableView::ChildProperty::COLUMN_SPAN, columnSpan ); tableView.Add( child2 ); // Check for actors at actual positions. for( int i=0; i