Merge "Updates for const->constexpr" into devel/master
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / utc-Dali-TextField.cpp
1 /*
2  * Copyright (c) 2020 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 #include <iostream>
19 #include <stdlib.h>
20 #include <unistd.h>
21
22 #include <dali/public-api/rendering/renderer.h>
23 #include <dali/integration-api/events/key-event-integ.h>
24 #include <dali/integration-api/events/touch-event-integ.h>
25
26 #include <dali/devel-api/adaptor-framework/key-devel.h>
27 #include <dali/devel-api/text-abstraction/font-client.h>
28 #include <dali-toolkit-test-suite-utils.h>
29 #include <dali-toolkit/dali-toolkit.h>
30 #include <dali-toolkit/devel-api/controls/text-controls/text-field-devel.h>
31 #include <dali-toolkit/devel-api/text/rendering-backend.h>
32 #include "toolkit-clipboard.h"
33
34 using namespace Dali;
35 using namespace Toolkit;
36
37 void dali_textfield_startup(void)
38 {
39   test_return_value = TET_UNDEF;
40 }
41
42 void dali_textfield_cleanup(void)
43 {
44   test_return_value = TET_PASS;
45 }
46
47 namespace
48 {
49
50 const char* const PROPERTY_NAME_RENDERING_BACKEND                    = "renderingBackend";
51 const char* const PROPERTY_NAME_TEXT                                 = "text";
52 const char* const PROPERTY_NAME_PLACEHOLDER_TEXT                     = "placeholderText";
53 const char* const PROPERTY_NAME_PLACEHOLDER_TEXT_FOCUSED             = "placeholderTextFocused";
54 const char* const PROPERTY_NAME_FONT_FAMILY                          = "fontFamily";
55 const char* const PROPERTY_NAME_FONT_STYLE                           = "fontStyle";
56 const char* const PROPERTY_NAME_POINT_SIZE                           = "pointSize";
57 const char* const PROPERTY_NAME_MAX_LENGTH                           = "maxLength";
58 const char* const PROPERTY_NAME_EXCEED_POLICY                        = "exceedPolicy";
59 const char* const PROPERTY_NAME_HORIZONTAL_ALIGNMENT                 = "horizontalAlignment";
60 const char* const PROPERTY_NAME_VERTICAL_ALIGNMENT                   = "verticalAlignment";
61 const char* const PROPERTY_NAME_TEXT_COLOR                           = "textColor";
62 const char* const PROPERTY_NAME_PLACEHOLDER_TEXT_COLOR               = "placeholderTextColor";
63 const char* const PROPERTY_NAME_PRIMARY_CURSOR_COLOR                 = "primaryCursorColor";
64 const char* const PROPERTY_NAME_SECONDARY_CURSOR_COLOR               = "secondaryCursorColor";
65 const char* const PROPERTY_NAME_ENABLE_CURSOR_BLINK                  = "enableCursorBlink";
66 const char* const PROPERTY_NAME_CURSOR_BLINK_INTERVAL                = "cursorBlinkInterval";
67 const char* const PROPERTY_NAME_CURSOR_BLINK_DURATION                = "cursorBlinkDuration";
68 const char* const PROPERTY_NAME_CURSOR_WIDTH                         = "cursorWidth";
69 const char* const PROPERTY_NAME_GRAB_HANDLE_IMAGE                    = "grabHandleImage";
70 const char* const PROPERTY_NAME_GRAB_HANDLE_PRESSED_IMAGE            = "grabHandlePressedImage";
71 const char* const PROPERTY_NAME_SCROLL_THRESHOLD                     = "scrollThreshold";
72 const char* const PROPERTY_NAME_SCROLL_SPEED                         = "scrollSpeed";
73 const char* const PROPERTY_NAME_SELECTION_HANDLE_IMAGE_LEFT          = "selectionHandleImageLeft";
74 const char* const PROPERTY_NAME_SELECTION_HANDLE_IMAGE_RIGHT         = "selectionHandleImageRight";
75 const char* const PROPERTY_NAME_SELECTION_HANDLE_PRESSED_IMAGE_LEFT  = "selectionHandlePressedImageLeft";
76 const char* const PROPERTY_NAME_SELECTION_HANDLE_PRESSED_IMAGE_RIGHT = "selectionHandlePressedImageRight";
77 const char* const PROPERTY_NAME_SELECTION_HANDLE_MARKER_IMAGE_LEFT   = "selectionHandleMarkerImageLeft";
78 const char* const PROPERTY_NAME_SELECTION_HANDLE_MARKER_IMAGE_RIGHT  = "selectionHandleMarkerImageRight";
79 const char* const PROPERTY_NAME_SELECTION_HIGHLIGHT_COLOR            = "selectionHighlightColor";
80 const char* const PROPERTY_NAME_DECORATION_BOUNDING_BOX              = "decorationBoundingBox";
81 const char* const PROPERTY_NAME_INPUT_METHOD_SETTINGS                = "inputMethodSettings";
82 const char* const PROPERTY_NAME_INPUT_COLOR                          = "inputColor";
83 const char* const PROPERTY_NAME_ENABLE_MARKUP                        = "enableMarkup";
84 const char* const PROPERTY_NAME_INPUT_FONT_FAMILY                    = "inputFontFamily";
85 const char* const PROPERTY_NAME_INPUT_FONT_STYLE                     = "inputFontStyle";
86 const char* const PROPERTY_NAME_INPUT_POINT_SIZE                     = "inputPointSize";
87
88 const char* const PROPERTY_NAME_UNDERLINE                            = "underline";
89 const char* const PROPERTY_NAME_INPUT_UNDERLINE                      = "inputUnderline";
90 const char* const PROPERTY_NAME_SHADOW                               = "shadow";
91 const char* const PROPERTY_NAME_INPUT_SHADOW                         = "inputShadow";
92 const char* const PROPERTY_NAME_EMBOSS                               = "emboss";
93 const char* const PROPERTY_NAME_INPUT_EMBOSS                         = "inputEmboss";
94 const char* const PROPERTY_NAME_OUTLINE                              = "outline";
95 const char* const PROPERTY_NAME_INPUT_OUTLINE                        = "inputOutline";
96
97 const char* const PROPERTY_NAME_HIDDEN_INPUT_SETTINGS                = "hiddenInputSettings";
98 const char* const PROPERTY_NAME_PIXEL_SIZE                           = "pixelSize";
99 const char* const PROPERTY_NAME_ENABLE_SELECTION                     = "enableSelection";
100 const char* const PROPERTY_NAME_PLACEHOLDER                          = "placeholder";
101 const char* const PROPERTY_NAME_ELLIPSIS                             = "ellipsis";
102 const char* const PROPERTY_NAME_ENABLE_SHIFT_SELECTION               = "enableShiftSelection";
103 const char* const PROPERTY_NAME_ENABLE_GRAB_HANDLE                   = "enableGrabHandle";
104 const char* const PROPERTY_NAME_MATCH_SYSTEM_LANGUAGE_DIRECTION      = "matchSystemLanguageDirection";
105 const char* const PROPERTY_NAME_ENABLE_GRAB_HANDLE_POPUP             = "enableGrabHandlePopup";
106 const char* const PROPERTY_NAME_BACKGROUND                           = "textBackground";
107
108 const Vector4 PLACEHOLDER_TEXT_COLOR( 0.8f, 0.8f, 0.8f, 0.8f );
109 const Dali::Vector4 LIGHT_BLUE( 0.75f, 0.96f, 1.f, 1.f ); // The text highlight color.
110
111 const float RENDER_FRAME_INTERVAL = 16.66f;
112
113 const unsigned int DEFAULT_FONT_SIZE = 1152u;
114 const std::string DEFAULT_FONT_DIR( "/resources/fonts" );
115
116 const int KEY_RETURN_CODE = 36;
117 const int KEY_A_CODE = 38;
118 const int KEY_D_CODE = 40;
119
120 const std::string DEFAULT_DEVICE_NAME("hwKeyboard");
121
122 static bool gTextChangedCallBackCalled;
123 static bool gMaxCharactersCallBackCalled;
124 static bool gInputStyleChangedCallbackCalled;
125 static Dali::Toolkit::TextField::InputStyle::Mask gInputStyleMask;
126
127 static void LoadBitmapResource(TestPlatformAbstraction& platform, int width, int height)
128 {
129   Integration::Bitmap* bitmap = Integration::Bitmap::New( Integration::Bitmap::BITMAP_2D_PACKED_PIXELS, ResourcePolicy::OWNED_DISCARD );
130   Integration::ResourcePointer resource(bitmap);
131   bitmap->GetPackedPixelsProfile()->ReserveBuffer(Pixel::RGBA8888, width, height, width, height);
132 }
133
134 static void LoadMarkerImages(ToolkitTestApplication& app, TextField textField)
135 {
136   int width(40);
137   int height(40);
138   LoadBitmapResource( app.GetPlatform(), width, height );
139
140   Property::Map propertyMap;
141   propertyMap["filename"] = "image.png";
142   propertyMap["width"] = width;
143   propertyMap["height"] = height;
144   textField.SetProperty( Toolkit::TextField::Property::SELECTION_HANDLE_IMAGE_LEFT, propertyMap );
145   textField.SetProperty( Toolkit::TextField::Property::SELECTION_HANDLE_IMAGE_RIGHT, propertyMap );
146   textField.SetProperty( Toolkit::TextField::Property::SELECTION_HANDLE_PRESSED_IMAGE_LEFT, propertyMap );
147   textField.SetProperty( Toolkit::TextField::Property::SELECTION_HANDLE_PRESSED_IMAGE_RIGHT, propertyMap );
148   textField.SetProperty( Toolkit::TextField::Property::SELECTION_HANDLE_MARKER_IMAGE_LEFT, propertyMap );
149   textField.SetProperty( Toolkit::TextField::Property::SELECTION_HANDLE_MARKER_IMAGE_RIGHT, propertyMap );
150   textField.SetProperty( Toolkit::TextField::Property::GRAB_HANDLE_IMAGE, propertyMap );
151   textField.SetProperty( Toolkit::TextField::Property::GRAB_HANDLE_PRESSED_IMAGE, propertyMap );
152 }
153
154 /*
155  * Simulate time passed by.
156  *
157  * @note this will always process at least 1 frame (1/60 sec)
158  *
159  * @param application Test application instance
160  * @param duration Time to pass in milliseconds.
161  * @return The actual time passed in milliseconds
162  */
163 static int Wait(ToolkitTestApplication& application, int duration = 0)
164 {
165   int time = 0;
166
167   for(int i = 0; i <= ( duration / RENDER_FRAME_INTERVAL); i++)
168   {
169     application.SendNotification();
170     application.Render(RENDER_FRAME_INTERVAL);
171     time += RENDER_FRAME_INTERVAL;
172   }
173
174   return time;
175 }
176
177 Dali::Integration::Point GetPointDownInside( Vector2& pos )
178 {
179   Dali::Integration::Point point;
180   point.SetState( PointState::DOWN );
181   point.SetScreenPosition( pos );
182   return point;
183 }
184
185 Dali::Integration::Point GetPointUpInside( Vector2& pos )
186 {
187   Dali::Integration::Point point;
188   point.SetState( PointState::UP );
189   point.SetScreenPosition( pos );
190   return point;
191 }
192
193 struct CallbackFunctor
194 {
195   CallbackFunctor(bool* callbackFlag)
196   : mCallbackFlag( callbackFlag )
197   {
198   }
199
200   void operator()()
201   {
202     *mCallbackFlag = true;
203   }
204   bool* mCallbackFlag;
205 };
206
207 static void TestTextChangedCallback( TextField control )
208 {
209   tet_infoline(" TestTextChangedCallback");
210
211   gTextChangedCallBackCalled = true;
212 }
213
214 static void TestMaxLengthReachedCallback( TextField control )
215 {
216   tet_infoline(" TestMaxLengthReachedCallback");
217
218   gMaxCharactersCallBackCalled = true;
219 }
220
221 static void TestInputStyleChangedCallback( TextField control, TextField::InputStyle::Mask mask )
222 {
223   tet_infoline(" TestInputStyleChangedCallback");
224
225   gInputStyleChangedCallbackCalled = true;
226   gInputStyleMask = mask;
227 }
228
229 // Generate a KeyEvent to send to Core.
230 Integration::KeyEvent GenerateKey( const std::string& keyName,
231                                    const std::string& logicalKey,
232                                    const std::string& keyString,
233                                    int keyCode,
234                                    int keyModifier,
235                                    unsigned long timeStamp,
236                                    const Integration::KeyEvent::State& keyState,
237                                    const std::string& compose = "",
238                                    const std::string& deviceName = DEFAULT_DEVICE_NAME,
239                                    const Device::Class::Type& deviceClass = Device::Class::NONE,
240                                    const Device::Subclass::Type& deviceSubclass = Device::Subclass::NONE )
241 {
242   return Integration::KeyEvent( keyName,
243                                 logicalKey,
244                                 keyString,
245                                 keyCode,
246                                 keyModifier,
247                                 timeStamp,
248                                 keyState,
249                                 compose,
250                                 deviceName,
251                                 deviceClass,
252                                 deviceSubclass );
253 }
254
255 bool DaliTestCheckMaps( const Property::Map& fontStyleMapGet, const Property::Map& fontStyleMapSet )
256 {
257   if( fontStyleMapGet.Count() == fontStyleMapSet.Count() )
258   {
259     for( unsigned int index = 0u; index < fontStyleMapGet.Count(); ++index )
260     {
261       const KeyValuePair& valueGet = fontStyleMapGet.GetKeyValue( index );
262
263       Property::Value* valueSet = NULL;
264       if ( valueGet.first.type == Property::Key::INDEX )
265       {
266         valueSet = fontStyleMapSet.Find( valueGet.first.indexKey );
267       }
268       else
269       {
270         // Get Key is a string so searching Set Map for a string key
271         valueSet = fontStyleMapSet.Find( valueGet.first.stringKey );
272       }
273
274       if( NULL != valueSet )
275       {
276         if( valueSet->GetType() == Dali::Property::STRING && ( valueGet.second.Get<std::string>() != valueSet->Get<std::string>() ) )
277         {
278           tet_printf( "Value got : [%s], expected : [%s]", valueGet.second.Get<std::string>().c_str(), valueSet->Get<std::string>().c_str() );
279           return false;
280         }
281         else if( valueSet->GetType() == Dali::Property::BOOLEAN && ( valueGet.second.Get<bool>() != valueSet->Get<bool>() ) )
282         {
283           tet_printf( "Value got : [%d], expected : [%d]", valueGet.second.Get<bool>(), valueSet->Get<bool>() );
284           return false;
285         }
286         else if( valueSet->GetType() == Dali::Property::INTEGER && ( valueGet.second.Get<int>() != valueSet->Get<int>() ) )
287         {
288           tet_printf( "Value got : [%d], expected : [%d]", valueGet.second.Get<int>(), valueSet->Get<int>() );
289           return false;
290         }
291         else if( valueSet->GetType() == Dali::Property::FLOAT && ( valueGet.second.Get<float>() != valueSet->Get<float>() ) )
292         {
293           tet_printf( "Value got : [%f], expected : [%f]", valueGet.second.Get<float>(), valueSet->Get<float>() );
294           return false;
295         }
296         else if( valueSet->GetType() == Dali::Property::VECTOR2 && ( valueGet.second.Get<Vector2>() != valueSet->Get<Vector2>() ) )
297         {
298           Vector2 vector2Get = valueGet.second.Get<Vector2>();
299           Vector2 vector2Set = valueSet->Get<Vector2>();
300           tet_printf( "Value got : [%f, %f], expected : [%f, %f]", vector2Get.x, vector2Get.y, vector2Set.x, vector2Set.y );
301           return false;
302         }
303         else if( valueSet->GetType() == Dali::Property::VECTOR4 && ( valueGet.second.Get<Vector4>() != valueSet->Get<Vector4>() ) )
304         {
305           Vector4 vector4Get = valueGet.second.Get<Vector4>();
306           Vector4 vector4Set = valueSet->Get<Vector4>();
307           tet_printf( "Value got : [%f, %f, %f, %f], expected : [%f, %f, %f, %f]", vector4Get.r, vector4Get.g, vector4Get.b, vector4Get.a, vector4Set.r, vector4Set.g, vector4Set.b, vector4Set.a );
308           return false;
309         }
310       }
311       else
312       {
313         if ( valueGet.first.type == Property::Key::INDEX )
314         {
315           tet_printf( "  The key %d doesn't exist.", valueGet.first.indexKey );
316         }
317         else
318         {
319           tet_printf( "  The key %s doesn't exist.", valueGet.first.stringKey.c_str() );
320         }
321         return false;
322       }
323     }
324   }
325
326   return true;
327 }
328
329 } // namespace
330
331 int UtcDaliToolkitTextFieldConstructorP(void)
332 {
333   ToolkitTestApplication application;
334   tet_infoline(" UtcDaliToolkitTextFieldConstructorP");
335   TextField textField;
336   DALI_TEST_CHECK( !textField );
337   END_TEST;
338 }
339
340 int UtcDaliToolkitTextFieldNewP(void)
341 {
342   ToolkitTestApplication application;
343   tet_infoline(" UtcDaliToolkitTextFieldNewP");
344   TextField textField = TextField::New();
345   DALI_TEST_CHECK( textField );
346   END_TEST;
347 }
348
349 int UtcDaliToolkitTextFieldDownCastP(void)
350 {
351   ToolkitTestApplication application;
352   tet_infoline(" UtcDaliToolkitTextFieldDownCastP");
353   TextField textField1 = TextField::New();
354   BaseHandle object( textField1 );
355
356   TextField textField2 = TextField::DownCast( object );
357   DALI_TEST_CHECK( textField2 );
358
359   TextField textField3 = DownCast< TextField >( object );
360   DALI_TEST_CHECK( textField3 );
361   END_TEST;
362 }
363
364 int UtcDaliToolkitTextFieldDownCastN(void)
365 {
366   ToolkitTestApplication application;
367   tet_infoline(" UtcDaliToolkitTextFieldDownCastN");
368   BaseHandle uninitializedObject;
369   TextField textField1 = TextField::DownCast( uninitializedObject );
370   DALI_TEST_CHECK( !textField1 );
371
372   TextField textField2 = DownCast< TextField >( uninitializedObject );
373   DALI_TEST_CHECK( !textField2 );
374   END_TEST;
375 }
376
377 int UtcDaliToolkitTextFieldCopyConstructorP(void)
378 {
379   ToolkitTestApplication application;
380   tet_infoline(" UtcDaliToolkitTextFieldCopyConstructorP");
381   TextField textField = TextField::New();
382   textField.SetProperty( TextField::Property::TEXT, "Test" );
383
384   TextField copy( textField );
385   DALI_TEST_CHECK( copy );
386   DALI_TEST_CHECK( copy.GetProperty<std::string>( TextLabel::Property::TEXT ) == textField.GetProperty<std::string>( TextLabel::Property::TEXT ) );
387   END_TEST;
388 }
389
390 int UtcDaliTextFieldMoveConstructor(void)
391 {
392   ToolkitTestApplication application;
393
394   TextField textField = TextField::New();
395   textField.SetProperty( TextEditor::Property::TEXT, "Test" );
396   DALI_TEST_CHECK( textField.GetProperty<std::string>( TextField::Property::TEXT ) == "Test" );
397
398   TextField moved = std::move( textField );
399   DALI_TEST_CHECK( moved );
400   DALI_TEST_EQUALS( 1, moved.GetBaseObject().ReferenceCount(), TEST_LOCATION );
401   DALI_TEST_CHECK( moved.GetProperty<std::string>( TextField::Property::TEXT ) == "Test" );
402   DALI_TEST_CHECK( !textField );
403
404   END_TEST;
405 }
406
407 int UtcDaliToolkitTextFieldAssignmentOperatorP(void)
408 {
409   ToolkitTestApplication application;
410   tet_infoline(" UtcDaliToolkitTextFieldAssignmentOperatorP");
411   TextField textField = TextField::New();
412   textField.SetProperty( TextField::Property::TEXT, "Test" );
413
414   TextField copy = textField;
415   DALI_TEST_CHECK( copy );
416   DALI_TEST_CHECK( copy.GetProperty<std::string>( TextField::Property::TEXT ) == textField.GetProperty<std::string>( TextField::Property::TEXT ) );
417   END_TEST;
418 }
419
420 int UtcDaliTextFieldMoveAssignment(void)
421 {
422   ToolkitTestApplication application;
423
424   TextField textField = TextField::New();
425   textField.SetProperty( TextEditor::Property::TEXT, "Test" );
426   DALI_TEST_CHECK( textField.GetProperty<std::string>( TextField::Property::TEXT ) == "Test" );
427
428   TextField moved;
429   moved = std::move( textField );
430   DALI_TEST_CHECK( moved );
431   DALI_TEST_EQUALS( 1, moved.GetBaseObject().ReferenceCount(), TEST_LOCATION );
432   DALI_TEST_CHECK( moved.GetProperty<std::string>( TextField::Property::TEXT ) == "Test" );
433   DALI_TEST_CHECK( !textField );
434
435   END_TEST;
436 }
437
438 int UtcDaliTextFieldNewP(void)
439 {
440   ToolkitTestApplication application;
441   tet_infoline(" UtcDaliToolkitTextFieldNewP");
442   TextField textField = TextField::New();
443   DALI_TEST_CHECK( textField );
444   END_TEST;
445 }
446
447 // Positive test case for a method
448 int UtcDaliTextFieldGetPropertyP(void)
449 {
450   ToolkitTestApplication application;
451   tet_infoline(" UtcDaliToolkitTextFieldGetPropertyP");
452   TextField field = TextField::New();
453   DALI_TEST_CHECK( field );
454
455   // Check Property Indices are correct
456   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_RENDERING_BACKEND ) == DevelTextField::Property::RENDERING_BACKEND );
457   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_TEXT ) == TextField::Property::TEXT );
458   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_PLACEHOLDER_TEXT ) == TextField::Property::PLACEHOLDER_TEXT );
459   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_PLACEHOLDER_TEXT_FOCUSED ) == TextField::Property::PLACEHOLDER_TEXT_FOCUSED );
460   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_FONT_FAMILY ) == TextField::Property::FONT_FAMILY );
461   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_FONT_STYLE ) == TextField::Property::FONT_STYLE );
462   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_POINT_SIZE ) == TextField::Property::POINT_SIZE );
463   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_MAX_LENGTH ) == TextField::Property::MAX_LENGTH );
464   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_EXCEED_POLICY ) == TextField::Property::EXCEED_POLICY );
465   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_HORIZONTAL_ALIGNMENT ) == TextField::Property::HORIZONTAL_ALIGNMENT );
466   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_VERTICAL_ALIGNMENT ) == TextField::Property::VERTICAL_ALIGNMENT );
467   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_TEXT_COLOR ) == TextField::Property::TEXT_COLOR );
468   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_PLACEHOLDER_TEXT_COLOR ) == TextField::Property::PLACEHOLDER_TEXT_COLOR );
469   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_PRIMARY_CURSOR_COLOR ) == TextField::Property::PRIMARY_CURSOR_COLOR );
470   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_SECONDARY_CURSOR_COLOR ) == TextField::Property::SECONDARY_CURSOR_COLOR );
471   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_ENABLE_CURSOR_BLINK ) == TextField::Property::ENABLE_CURSOR_BLINK );
472   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_CURSOR_BLINK_INTERVAL ) == TextField::Property::CURSOR_BLINK_INTERVAL );
473   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_CURSOR_BLINK_DURATION ) == TextField::Property::CURSOR_BLINK_DURATION );
474   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_CURSOR_WIDTH ) == TextField::Property::CURSOR_WIDTH );
475   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_GRAB_HANDLE_IMAGE ) == TextField::Property::GRAB_HANDLE_IMAGE );
476   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_GRAB_HANDLE_PRESSED_IMAGE ) == TextField::Property::GRAB_HANDLE_PRESSED_IMAGE );
477   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_SCROLL_THRESHOLD ) == TextField::Property::SCROLL_THRESHOLD );
478   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_SCROLL_SPEED ) == TextField::Property::SCROLL_SPEED );
479   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_SELECTION_HANDLE_IMAGE_LEFT ) == TextField::Property::SELECTION_HANDLE_IMAGE_LEFT );
480   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_SELECTION_HANDLE_IMAGE_RIGHT ) == TextField::Property::SELECTION_HANDLE_IMAGE_RIGHT );
481   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_SELECTION_HANDLE_PRESSED_IMAGE_LEFT ) == TextField::Property::SELECTION_HANDLE_PRESSED_IMAGE_LEFT );
482   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_SELECTION_HANDLE_PRESSED_IMAGE_RIGHT ) == TextField::Property::SELECTION_HANDLE_PRESSED_IMAGE_RIGHT );
483   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_SELECTION_HANDLE_MARKER_IMAGE_LEFT ) == TextField::Property::SELECTION_HANDLE_MARKER_IMAGE_LEFT );
484   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_SELECTION_HANDLE_MARKER_IMAGE_RIGHT ) == TextField::Property::SELECTION_HANDLE_MARKER_IMAGE_RIGHT );
485   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_SELECTION_HIGHLIGHT_COLOR ) == TextField::Property::SELECTION_HIGHLIGHT_COLOR );
486   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_DECORATION_BOUNDING_BOX ) == TextField::Property::DECORATION_BOUNDING_BOX );
487   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_INPUT_METHOD_SETTINGS ) == TextField::Property::INPUT_METHOD_SETTINGS );
488   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_INPUT_COLOR ) == TextField::Property::INPUT_COLOR );
489   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_ENABLE_MARKUP ) == TextField::Property::ENABLE_MARKUP );
490   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_INPUT_FONT_FAMILY ) == TextField::Property::INPUT_FONT_FAMILY );
491   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_INPUT_FONT_STYLE ) == TextField::Property::INPUT_FONT_STYLE );
492   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_INPUT_POINT_SIZE ) == TextField::Property::INPUT_POINT_SIZE );
493   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_UNDERLINE ) == TextField::Property::UNDERLINE );
494   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_INPUT_UNDERLINE ) == TextField::Property::INPUT_UNDERLINE );
495   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_SHADOW ) == TextField::Property::SHADOW );
496   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_INPUT_SHADOW ) == TextField::Property::INPUT_SHADOW );
497   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_EMBOSS ) == TextField::Property::EMBOSS );
498   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_INPUT_EMBOSS ) == TextField::Property::INPUT_EMBOSS );
499   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_OUTLINE ) == TextField::Property::OUTLINE );
500   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_INPUT_OUTLINE ) == TextField::Property::INPUT_OUTLINE );
501   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_HIDDEN_INPUT_SETTINGS ) == TextField::Property::HIDDEN_INPUT_SETTINGS );
502   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_PIXEL_SIZE ) == TextField::Property::PIXEL_SIZE );
503   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_ENABLE_SELECTION ) == TextField::Property::ENABLE_SELECTION );
504   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_PLACEHOLDER ) == TextField::Property::PLACEHOLDER );
505   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_ELLIPSIS ) == TextField::Property::ELLIPSIS );
506   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_ENABLE_SHIFT_SELECTION ) == DevelTextField::Property::ENABLE_SHIFT_SELECTION );
507   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_ENABLE_GRAB_HANDLE ) == DevelTextField::Property::ENABLE_GRAB_HANDLE );
508   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_MATCH_SYSTEM_LANGUAGE_DIRECTION ) == DevelTextField::Property::MATCH_SYSTEM_LANGUAGE_DIRECTION );
509   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_ENABLE_GRAB_HANDLE_POPUP ) == DevelTextField::Property::ENABLE_GRAB_HANDLE_POPUP );
510   DALI_TEST_CHECK( field.GetPropertyIndex( PROPERTY_NAME_BACKGROUND ) == DevelTextField::Property::BACKGROUND );
511
512   END_TEST;
513 }
514
515 bool SetPropertyMapRetrieved( TextField& field, const Property::Index property, const std::string mapKey, const std::string mapValue )
516 {
517   bool result = false;
518   Property::Map imageMap;
519   imageMap[mapKey] =mapValue;
520
521   field.SetProperty( property , imageMap );
522   Property::Value propValue = field.GetProperty( property );
523   Property::Map* resultMap = propValue.GetMap();
524
525   if ( resultMap->Find( mapKey )->Get< std::string>() == mapValue )
526   {
527     result = true;
528   }
529
530   return result;
531 }
532
533 // Positive test case for a method
534 int UtcDaliTextFieldSetPropertyP(void)
535 {
536   ToolkitTestApplication application;
537   tet_infoline(" UtcDaliToolkitTextFieldSetPropertyP");
538   TextField field = TextField::New();
539   DALI_TEST_CHECK( field );
540   application.GetScene().Add( field );
541
542   // Note - we can't check the defaults since the stylesheets are platform-specific
543
544   // Check the render backend property.
545   field.SetProperty( DevelTextField::Property::RENDERING_BACKEND, DevelText::RENDERING_SHARED_ATLAS );
546   DALI_TEST_EQUALS( (DevelText::RenderingType)field.GetProperty<int>( DevelTextField::Property::RENDERING_BACKEND ), DevelText::RENDERING_SHARED_ATLAS, TEST_LOCATION );
547
548   field.SetProperty( DevelTextField::Property::RENDERING_BACKEND, DevelText::RENDERING_VECTOR_BASED );
549   DALI_TEST_EQUALS( (DevelText::RenderingType)field.GetProperty<int>( DevelTextField::Property::RENDERING_BACKEND ), DevelText::RENDERING_VECTOR_BASED, TEST_LOCATION );
550
551   // Check text property.
552   field.SetProperty( TextField::Property::TEXT, "Setting Text" );
553   DALI_TEST_EQUALS( field.GetProperty<std::string>( TextField::Property::TEXT ), std::string("Setting Text"), TEST_LOCATION );
554
555   // Check placeholder text properties.
556   field.SetProperty( TextField::Property::PLACEHOLDER_TEXT, "Setting Placeholder Text" );
557   DALI_TEST_EQUALS( field.GetProperty<std::string>( TextField::Property::PLACEHOLDER_TEXT ), std::string("Setting Placeholder Text"), TEST_LOCATION );
558
559   field.SetProperty( TextField::Property::PLACEHOLDER_TEXT_FOCUSED, "Setting Placeholder Text Focused" );
560   DALI_TEST_EQUALS( field.GetProperty<std::string>( TextField::Property::PLACEHOLDER_TEXT_FOCUSED ), std::string("Setting Placeholder Text Focused"), TEST_LOCATION );
561
562   // Check font properties.
563   field.SetProperty( TextField::Property::FONT_FAMILY, "Setting font family" );
564   DALI_TEST_EQUALS( field.GetProperty<std::string>( TextField::Property::FONT_FAMILY ), std::string("Setting font family"), TEST_LOCATION );
565
566   Property::Map fontStyleMapSet;
567   Property::Map fontStyleMapGet;
568   Property::Value* slantValue = NULL;
569
570   fontStyleMapSet.Insert( "weight", "bold" );
571   fontStyleMapSet.Insert( "width", "condensed" );
572   fontStyleMapSet.Insert( "slant", "italic" );
573   field.SetProperty( TextField::Property::FONT_STYLE, fontStyleMapSet );
574
575   fontStyleMapGet = field.GetProperty<Property::Map>( TextField::Property::FONT_STYLE );
576   DALI_TEST_EQUALS( fontStyleMapGet.Count(), fontStyleMapSet.Count(), TEST_LOCATION );
577   DALI_TEST_EQUALS( DaliTestCheckMaps( fontStyleMapGet, fontStyleMapSet ), true, TEST_LOCATION );
578
579   field.SetProperty( TextField::Property::POINT_SIZE, 10.f );
580   DALI_TEST_EQUALS( field.GetProperty<float>( TextField::Property::POINT_SIZE ), 10.f, Math::MACHINE_EPSILON_1000, TEST_LOCATION );
581
582   // Reset font style.
583   fontStyleMapSet.Clear();
584   fontStyleMapSet.Insert( "weight", "normal" );
585   fontStyleMapSet.Insert( "slant", "oblique" );
586   field.SetProperty( TextField::Property::FONT_STYLE, fontStyleMapSet );
587
588   fontStyleMapGet = field.GetProperty<Property::Map>( TextField::Property::FONT_STYLE );
589   DALI_TEST_EQUALS( fontStyleMapGet.Count(), fontStyleMapSet.Count(), TEST_LOCATION );
590   DALI_TEST_EQUALS( DaliTestCheckMaps( fontStyleMapGet, fontStyleMapSet ), true, TEST_LOCATION );
591
592   fontStyleMapSet.Clear();
593   fontStyleMapSet.Insert( "slant", "roman" );
594   field.SetProperty( TextField::Property::FONT_STYLE, fontStyleMapSet );
595   fontStyleMapGet = field.GetProperty<Property::Map>( TextField::Property::FONT_STYLE );
596
597   // Replace 'roman' for 'normal'.
598   slantValue = fontStyleMapGet.Find( "slant" );
599   if( NULL != slantValue )
600   {
601     if( "normal" == slantValue->Get<std::string>() )
602     {
603       fontStyleMapGet["slant"] = "roman";
604     }
605   }
606   DALI_TEST_EQUALS( fontStyleMapGet.Count(), fontStyleMapSet.Count(), TEST_LOCATION );
607   DALI_TEST_EQUALS( DaliTestCheckMaps( fontStyleMapGet, fontStyleMapSet ), true, TEST_LOCATION );
608
609   fontStyleMapSet.Clear();
610
611   field.SetProperty( TextField::Property::FONT_STYLE, fontStyleMapSet );
612   fontStyleMapGet = field.GetProperty<Property::Map>( TextField::Property::FONT_STYLE );
613   DALI_TEST_EQUALS( fontStyleMapGet.Count(), fontStyleMapSet.Count(), TEST_LOCATION );
614   DALI_TEST_EQUALS( DaliTestCheckMaps( fontStyleMapGet, fontStyleMapSet ), true, TEST_LOCATION );
615
616   // Check that the MAX_LENGTH property can be correctly set
617   const int maxNumberOfCharacters = 20;
618   field.SetProperty( TextField::Property::MAX_LENGTH, maxNumberOfCharacters );
619   DALI_TEST_EQUALS( field.GetProperty<int>( TextField::Property::MAX_LENGTH ), maxNumberOfCharacters, TEST_LOCATION );
620
621   // Check exceed policy
622   field.SetProperty( TextField::Property::EXCEED_POLICY, Dali::Toolkit::TextField::EXCEED_POLICY_CLIP );
623   DALI_TEST_EQUALS( field.GetProperty<int>( TextField::Property::EXCEED_POLICY ), static_cast<int>( Dali::Toolkit::TextField::EXCEED_POLICY_CLIP ), TEST_LOCATION );
624   field.SetProperty( TextField::Property::EXCEED_POLICY, Dali::Toolkit::TextField::EXCEED_POLICY_ORIGINAL );
625   DALI_TEST_EQUALS( field.GetProperty<int>( TextField::Property::EXCEED_POLICY ), static_cast<int>( Dali::Toolkit::TextField::EXCEED_POLICY_ORIGINAL ), TEST_LOCATION );
626
627   // Check that the Alignment properties can be correctly set
628   field.SetProperty( TextField::Property::HORIZONTAL_ALIGNMENT, "END" );
629   DALI_TEST_EQUALS( field.GetProperty<std::string>( TextField::Property::HORIZONTAL_ALIGNMENT ), "END", TEST_LOCATION );
630   field.SetProperty( TextField::Property::VERTICAL_ALIGNMENT, "CENTER" );
631   DALI_TEST_EQUALS( field.GetProperty<std::string>( TextField::Property::VERTICAL_ALIGNMENT ), "CENTER", TEST_LOCATION );
632
633   // Check text's color property
634   field.SetProperty( TextField::Property::TEXT_COLOR, Color::WHITE );
635   DALI_TEST_EQUALS( field.GetProperty<Vector4>( TextField::Property::TEXT_COLOR ), Color::WHITE, TEST_LOCATION );
636
637   // Check placeholder text's color property.
638   field.SetProperty( TextField::Property::PLACEHOLDER_TEXT_COLOR, Color::RED );
639   DALI_TEST_EQUALS( field.GetProperty<Vector4>( TextField::Property::PLACEHOLDER_TEXT_COLOR ), Color::RED, TEST_LOCATION );
640
641   // Check cursor properties
642   field.SetProperty( TextField::Property::PRIMARY_CURSOR_COLOR, Color::RED );
643   DALI_TEST_EQUALS( field.GetProperty<Vector4>( TextField::Property::PRIMARY_CURSOR_COLOR ), Color::RED, TEST_LOCATION );
644   field.SetProperty( TextField::Property::SECONDARY_CURSOR_COLOR, Color::BLUE );
645   DALI_TEST_EQUALS( field.GetProperty<Vector4>( TextField::Property::SECONDARY_CURSOR_COLOR ), Color::BLUE, TEST_LOCATION );
646
647   field.SetProperty( TextField::Property::ENABLE_CURSOR_BLINK, false );
648   DALI_TEST_EQUALS( field.GetProperty<bool>( TextField::Property::ENABLE_CURSOR_BLINK ), false, TEST_LOCATION );
649   field.SetProperty( TextField::Property::CURSOR_BLINK_INTERVAL, 1.f );
650   DALI_TEST_EQUALS( field.GetProperty<float>( TextField::Property::CURSOR_BLINK_INTERVAL ), 1.f, Math::MACHINE_EPSILON_1000, TEST_LOCATION );
651   field.SetProperty( TextField::Property::CURSOR_BLINK_DURATION, 10.f );
652   DALI_TEST_EQUALS( field.GetProperty<float>( TextField::Property::CURSOR_BLINK_DURATION ), 10.f, Math::MACHINE_EPSILON_1000, TEST_LOCATION );
653   field.SetProperty( TextField::Property::CURSOR_WIDTH, 1 );
654   DALI_TEST_EQUALS( field.GetProperty<int>( TextField::Property::CURSOR_WIDTH ), 1, TEST_LOCATION );
655
656   // Check scroll properties.
657   field.SetProperty( TextField::Property::SCROLL_THRESHOLD, 1.f );
658   DALI_TEST_EQUALS( field.GetProperty<float>( TextField::Property::SCROLL_THRESHOLD ), 1.f, Math::MACHINE_EPSILON_1000, TEST_LOCATION );
659   field.SetProperty( TextField::Property::SCROLL_SPEED, 100.f );
660   DALI_TEST_EQUALS( field.GetProperty<float>( TextField::Property::SCROLL_SPEED ), 100.f, Math::MACHINE_EPSILON_1000, TEST_LOCATION );
661
662   // Check handle images
663   field.SetProperty( TextField::Property::GRAB_HANDLE_IMAGE, "image1" );
664   DALI_TEST_EQUALS( field.GetProperty<std::string>( TextField::Property::GRAB_HANDLE_IMAGE ), "image1", TEST_LOCATION );
665   field.SetProperty( TextField::Property::GRAB_HANDLE_PRESSED_IMAGE, "image2" );
666   DALI_TEST_EQUALS( field.GetProperty<std::string>( TextField::Property::GRAB_HANDLE_PRESSED_IMAGE ), "image2", TEST_LOCATION );
667   field.SetProperty( TextField::Property::SELECTION_HANDLE_IMAGE_LEFT, "image3" );
668
669   // Check handle images
670   DALI_TEST_CHECK( SetPropertyMapRetrieved( field, TextField::Property::SELECTION_HANDLE_IMAGE_LEFT, "filename", "leftHandleImage" )  );
671   DALI_TEST_CHECK( SetPropertyMapRetrieved( field, TextField::Property::SELECTION_HANDLE_IMAGE_RIGHT, "filename", "rightHandleImage" )  );
672   DALI_TEST_CHECK( SetPropertyMapRetrieved( field, TextField::Property::SELECTION_HANDLE_PRESSED_IMAGE_LEFT, "filename", "leftHandleImagePressed" )  );
673   DALI_TEST_CHECK( SetPropertyMapRetrieved( field, TextField::Property::SELECTION_HANDLE_PRESSED_IMAGE_RIGHT, "filename", "rightHandleImagePressed" )  );
674   DALI_TEST_CHECK( SetPropertyMapRetrieved( field, TextField::Property::SELECTION_HANDLE_MARKER_IMAGE_LEFT, "filename", "leftHandleMarkerImage" )  );
675   DALI_TEST_CHECK( SetPropertyMapRetrieved( field, TextField::Property::SELECTION_HANDLE_MARKER_IMAGE_RIGHT, "filename", "rightHandleMarkerImage" )  );
676
677   // Check the highlight color
678   field.SetProperty( TextField::Property::SELECTION_HIGHLIGHT_COLOR, Color::GREEN );
679   DALI_TEST_EQUALS( field.GetProperty<Vector4>( TextField::Property::SELECTION_HIGHLIGHT_COLOR ), Color::GREEN, TEST_LOCATION );
680
681   // Decoration bounding box
682   field.SetProperty( TextField::Property::DECORATION_BOUNDING_BOX, Rect<int>( 0, 0, 1, 1 ) );
683   DALI_TEST_EQUALS( field.GetProperty<Rect <int > >( TextField::Property::DECORATION_BOUNDING_BOX ), Rect<int>( 0, 0, 1, 1 ), TEST_LOCATION );
684
685   // Check the input method setting
686   Property::Map propertyMap;
687   InputMethod::PanelLayout::Type panelLayout = InputMethod::PanelLayout::NUMBER;
688   InputMethod::AutoCapital::Type autoCapital = InputMethod::AutoCapital::WORD;
689   InputMethod::ButtonAction::Type buttonAction = InputMethod::ButtonAction::GO;
690   int inputVariation = 1;
691   propertyMap["PANEL_LAYOUT"] = panelLayout;
692   propertyMap["AUTO_CAPITALIZE"] = autoCapital;
693   propertyMap["BUTTON_ACTION"] = buttonAction;
694   propertyMap["VARIATION"] = inputVariation;
695   field.SetProperty( TextField::Property::INPUT_METHOD_SETTINGS, propertyMap );
696
697   Property::Value value = field.GetProperty( TextField::Property::INPUT_METHOD_SETTINGS );
698   Property::Map map;
699   DALI_TEST_CHECK( value.Get( map ) );
700
701   int layout = 0;
702   DALI_TEST_CHECK( map[ "PANEL_LAYOUT" ].Get( layout ) );
703   DALI_TEST_EQUALS( static_cast<int>(panelLayout), layout, TEST_LOCATION );
704
705   int capital = 0;
706   DALI_TEST_CHECK( map[ "AUTO_CAPITALIZE" ].Get( capital ) );
707   DALI_TEST_EQUALS( static_cast<int>(autoCapital), capital, TEST_LOCATION );
708
709   int action = 0;
710   DALI_TEST_CHECK( map[ "BUTTON_ACTION" ].Get( action ) );
711   DALI_TEST_EQUALS( static_cast<int>(buttonAction), action, TEST_LOCATION );
712
713   int variation = 0;
714   DALI_TEST_CHECK( map[ "VARIATION" ].Get( variation ) );
715   DALI_TEST_EQUALS( inputVariation, variation, TEST_LOCATION );
716
717   // Check input color property.
718   field.SetProperty( TextField::Property::INPUT_COLOR, Color::YELLOW );
719   DALI_TEST_EQUALS( field.GetProperty<Vector4>( TextField::Property::INPUT_COLOR ), Color::YELLOW, TEST_LOCATION );
720
721   // Check the enable markup property.
722   DALI_TEST_CHECK( !field.GetProperty<bool>( TextField::Property::ENABLE_MARKUP ) );
723   field.SetProperty( TextField::Property::ENABLE_MARKUP, true );
724   DALI_TEST_CHECK( field.GetProperty<bool>( TextField::Property::ENABLE_MARKUP ) );
725
726   // Check input font properties.
727   field.SetProperty( TextField::Property::INPUT_FONT_FAMILY, "Setting input font family" );
728   DALI_TEST_EQUALS( field.GetProperty<std::string>( TextField::Property::INPUT_FONT_FAMILY ), "Setting input font family", TEST_LOCATION );
729
730   fontStyleMapSet.Clear();
731   fontStyleMapSet.Insert( "weight", "bold" );
732   fontStyleMapSet.Insert( "width", "condensed" );
733   fontStyleMapSet.Insert( "slant", "italic" );
734
735   field.SetProperty( TextField::Property::INPUT_FONT_STYLE, fontStyleMapSet );
736   fontStyleMapGet = field.GetProperty<Property::Map>( TextField::Property::INPUT_FONT_STYLE );
737   DALI_TEST_EQUALS( fontStyleMapGet.Count(), fontStyleMapSet.Count(), TEST_LOCATION );
738   DALI_TEST_EQUALS( DaliTestCheckMaps( fontStyleMapGet, fontStyleMapSet ), true, TEST_LOCATION );
739
740   field.SetProperty( TextField::Property::INPUT_POINT_SIZE, 12.f );
741   DALI_TEST_EQUALS( field.GetProperty<float>( TextField::Property::INPUT_POINT_SIZE ), 12.f, Math::MACHINE_EPSILON_1000, TEST_LOCATION );
742
743   // Reset input font style.
744   fontStyleMapSet.Clear();
745   fontStyleMapSet.Insert( "weight", "normal" );
746   fontStyleMapSet.Insert( "slant", "oblique" );
747
748   field.SetProperty( TextField::Property::INPUT_FONT_STYLE, fontStyleMapSet );
749   fontStyleMapGet = field.GetProperty<Property::Map>( TextField::Property::INPUT_FONT_STYLE );
750   DALI_TEST_EQUALS( fontStyleMapGet.Count(), fontStyleMapSet.Count(), TEST_LOCATION );
751   DALI_TEST_EQUALS( DaliTestCheckMaps( fontStyleMapGet, fontStyleMapSet ), true, TEST_LOCATION );
752
753   fontStyleMapSet.Clear();
754   fontStyleMapSet.Insert( "slant", "roman" );
755
756   field.SetProperty( TextField::Property::INPUT_FONT_STYLE, fontStyleMapSet );
757   fontStyleMapGet = field.GetProperty<Property::Map>( TextField::Property::INPUT_FONT_STYLE );
758
759   // Replace 'roman' for 'normal'.
760   slantValue = fontStyleMapGet.Find( "slant" );
761   if( NULL != slantValue )
762   {
763     if( "normal" == slantValue->Get<std::string>() )
764     {
765       fontStyleMapGet["slant"] = "roman";
766     }
767   }
768   DALI_TEST_EQUALS( fontStyleMapGet.Count(), fontStyleMapSet.Count(), TEST_LOCATION );
769   DALI_TEST_EQUALS( DaliTestCheckMaps( fontStyleMapGet, fontStyleMapSet ), true, TEST_LOCATION );
770
771   fontStyleMapSet.Clear();
772
773   field.SetProperty( TextField::Property::INPUT_FONT_STYLE, fontStyleMapSet );
774   fontStyleMapGet = field.GetProperty<Property::Map>( TextField::Property::INPUT_FONT_STYLE );
775   DALI_TEST_EQUALS( fontStyleMapGet.Count(), fontStyleMapSet.Count(), TEST_LOCATION );
776   DALI_TEST_EQUALS( DaliTestCheckMaps( fontStyleMapGet, fontStyleMapSet ), true, TEST_LOCATION );
777
778   Property::Map underlineMapSet;
779   Property::Map underlineMapGet;
780
781   underlineMapSet.Insert( "enable", true );
782   underlineMapSet.Insert( "color", Color::RED );
783   underlineMapSet.Insert( "height", 1 );
784
785   // Check the underline property
786   field.SetProperty( TextField::Property::UNDERLINE, underlineMapSet );
787
788   underlineMapGet = field.GetProperty<Property::Map>( TextField::Property::UNDERLINE );
789   DALI_TEST_EQUALS( underlineMapGet.Count(), underlineMapSet.Count(), TEST_LOCATION );
790   DALI_TEST_EQUALS( DaliTestCheckMaps( underlineMapGet, underlineMapSet ), true, TEST_LOCATION );
791
792   // Check the input underline property
793   field.SetProperty( TextField::Property::INPUT_UNDERLINE, "Underline input properties" );
794   DALI_TEST_EQUALS( field.GetProperty<std::string>( TextField::Property::INPUT_UNDERLINE ), std::string("Underline input properties"), TEST_LOCATION );
795
796   // Check the shadow property
797   Property::Map shadowMapSet;
798   Property::Map shadowMapGet;
799
800   shadowMapSet.Insert( "color", Color::GREEN );
801   shadowMapSet.Insert( "offset", Vector2(2.0f, 2.0f) );
802   shadowMapSet.Insert( "blurRadius", 3.0f );
803
804   field.SetProperty( TextField::Property::SHADOW, shadowMapSet );
805
806   shadowMapGet = field.GetProperty<Property::Map>( TextField::Property::SHADOW );
807   DALI_TEST_EQUALS( shadowMapGet.Count(), shadowMapSet.Count(), TEST_LOCATION );
808   DALI_TEST_EQUALS( DaliTestCheckMaps( shadowMapGet, shadowMapSet ), true, TEST_LOCATION );
809
810   // Check the input shadow property
811   field.SetProperty( TextField::Property::INPUT_SHADOW, "Shadow input properties" );
812   DALI_TEST_EQUALS( field.GetProperty<std::string>( TextField::Property::INPUT_SHADOW ), std::string("Shadow input properties"), TEST_LOCATION );
813
814   // Check the emboss property
815   field.SetProperty( TextField::Property::EMBOSS, "Emboss properties" );
816   DALI_TEST_EQUALS( field.GetProperty<std::string>( TextField::Property::EMBOSS ), std::string("Emboss properties"), TEST_LOCATION );
817
818   // Check the input emboss property
819   field.SetProperty( TextField::Property::INPUT_EMBOSS, "Emboss input properties" );
820   DALI_TEST_EQUALS( field.GetProperty<std::string>( TextField::Property::INPUT_EMBOSS ), std::string("Emboss input properties"), TEST_LOCATION );
821
822   // Check the outline property
823
824   // Test string type first
825   // This is purely to maintain backward compatibility, but we don't support string as the outline property type.
826   field.SetProperty( TextField::Property::OUTLINE, "Outline properties" );
827   DALI_TEST_EQUALS( field.GetProperty<std::string>( TextField::Property::OUTLINE ), std::string("Outline properties"), TEST_LOCATION );
828
829   // Then test the property map type
830   Property::Map outlineMapSet;
831   Property::Map outlineMapGet;
832
833   outlineMapSet["color"] = Color::RED;
834   outlineMapSet["width"] = 2.0f;
835
836   field.SetProperty( TextField::Property::OUTLINE, outlineMapSet );
837
838   outlineMapGet = field.GetProperty<Property::Map>( TextField::Property::OUTLINE );
839   DALI_TEST_EQUALS( outlineMapGet.Count(), outlineMapSet.Count(), TEST_LOCATION );
840   DALI_TEST_EQUALS( DaliTestCheckMaps( outlineMapGet, outlineMapSet ), true, TEST_LOCATION );
841
842   // Check the input outline property
843   field.SetProperty( TextField::Property::INPUT_OUTLINE, "Outline input properties" );
844   DALI_TEST_EQUALS( field.GetProperty<std::string>( TextField::Property::INPUT_OUTLINE ), std::string("Outline input properties"), TEST_LOCATION );
845
846   // Check the hidden input settings property
847   Property::Map hiddenMapSet;
848   Property::Map hiddenMapGet;
849   hiddenMapSet[ HiddenInput::Property::MODE ] = HiddenInput::Mode::HIDE_ALL;
850   hiddenMapSet[ HiddenInput::Property::SHOW_LAST_CHARACTER_DURATION ] = 2;
851   hiddenMapSet[ HiddenInput::Property::SUBSTITUTE_COUNT ] = 4;
852   hiddenMapSet[ HiddenInput::Property::SUBSTITUTE_CHARACTER ] = 0x23;
853   field.SetProperty( TextField::Property::HIDDEN_INPUT_SETTINGS, hiddenMapSet );
854
855   hiddenMapGet = field.GetProperty<Property::Map>( TextField::Property::HIDDEN_INPUT_SETTINGS );
856   DALI_TEST_EQUALS( hiddenMapSet.Count(), hiddenMapGet.Count(), TEST_LOCATION );
857   DALI_TEST_EQUALS( DaliTestCheckMaps( hiddenMapSet, hiddenMapGet ), true, TEST_LOCATION );
858
859   // Check the pixel size of font
860   field.SetProperty( TextField::Property::PIXEL_SIZE, 20.f );
861   DALI_TEST_EQUALS( field.GetProperty<float>( TextField::Property::PIXEL_SIZE ), 20.f, Math::MACHINE_EPSILON_1000, TEST_LOCATION );
862
863   // Check the enable selection property
864   field.SetProperty( TextField::Property::ENABLE_SELECTION, false );
865   DALI_TEST_EQUALS( field.GetProperty<bool>( TextField::Property::ENABLE_SELECTION ), false, TEST_LOCATION );
866
867   // Check the placeholder property with pixel size
868   Property::Map placeholderPixelSizeMapSet;
869   Property::Map placeholderPixelSizeMapGet;
870   Property::Map placeholderFontstyleMap;
871   placeholderPixelSizeMapSet["text"] = "Setting Placeholder Text";
872   placeholderPixelSizeMapSet["textFocused"] = "Setting Placeholder Text Focused";
873   placeholderPixelSizeMapSet["color"] = Color::BLUE;
874   placeholderPixelSizeMapSet["fontFamily"] = "Arial";
875   placeholderPixelSizeMapSet["pixelSize"] = 15.0f;
876   placeholderPixelSizeMapSet["ellipsis"] = true;
877
878   placeholderFontstyleMap.Insert( "weight", "bold" );
879   placeholderPixelSizeMapSet["placeholderFontStyle"] = placeholderFontstyleMap;
880   field.SetProperty( TextField::Property::PLACEHOLDER, placeholderPixelSizeMapSet );
881
882   placeholderPixelSizeMapGet = field.GetProperty<Property::Map>( TextField::Property::PLACEHOLDER );
883   DALI_TEST_EQUALS( placeholderPixelSizeMapGet.Count(), placeholderPixelSizeMapSet.Count(), TEST_LOCATION );
884
885   tet_infoline("Test Placeholder settings set as strings is converted correctly to Property Index key and holds set value");
886   Property::Map placeholderConversionMap;
887   placeholderConversionMap[ Text::PlaceHolder::Property::TEXT ] = placeholderPixelSizeMapSet["text"];
888   placeholderConversionMap[ Text::PlaceHolder::Property::TEXT_FOCUSED ] = placeholderPixelSizeMapSet["textFocused"] ;
889   placeholderConversionMap[ Text::PlaceHolder::Property::COLOR ] = placeholderPixelSizeMapSet["color"];
890   placeholderConversionMap[ Text::PlaceHolder::Property::FONT_STYLE ] = placeholderPixelSizeMapSet["fontStyle"];
891   placeholderConversionMap[ Text::PlaceHolder::Property::FONT_FAMILY ] = placeholderPixelSizeMapSet["fontFamily"];
892   placeholderConversionMap[ Text::PlaceHolder::Property::PIXEL_SIZE ] = placeholderPixelSizeMapSet["pixelSize"];
893
894   DALI_TEST_EQUALS( DaliTestCheckMaps( placeholderPixelSizeMapGet, placeholderConversionMap ), true, TEST_LOCATION );
895
896   // Check the placeholder property with point size
897   Property::Map placeholderMapSet;
898   Property::Map placeholderMapGet;
899   placeholderMapSet["text"] = "Setting Placeholder Text";
900   placeholderMapSet["textFocused"] = "Setting Placeholder Text Focused";
901   placeholderMapSet["color"] = Color::RED;
902   placeholderMapSet["fontFamily"] = "Arial";
903   placeholderMapSet["pointSize"] = 12.0f;
904   placeholderMapSet["ellipsis"] = false;
905
906   // Check the placeholder font style property
907   placeholderFontstyleMap.Clear();
908
909   placeholderFontstyleMap.Insert( "weight", "bold" );
910   placeholderFontstyleMap.Insert( "width", "condensed" );
911   placeholderFontstyleMap.Insert( "slant", "italic" );
912   placeholderMapSet["fontStyle"] = placeholderFontstyleMap;
913   field.SetProperty( TextField::Property::PLACEHOLDER, placeholderMapSet );
914
915   placeholderMapGet = field.GetProperty<Property::Map>( TextField::Property::PLACEHOLDER );
916   DALI_TEST_EQUALS( placeholderMapGet.Count(), placeholderMapSet.Count(), TEST_LOCATION );
917
918   placeholderConversionMap.Clear();
919   placeholderConversionMap[ Text::PlaceHolder::Property::TEXT ] = placeholderPixelSizeMapSet["text"];
920   placeholderConversionMap[ Text::PlaceHolder::Property::TEXT_FOCUSED ] = placeholderPixelSizeMapSet["textFocused"] ;
921   placeholderConversionMap[ Text::PlaceHolder::Property::COLOR ] = placeholderPixelSizeMapSet["color"];
922   placeholderConversionMap[ Text::PlaceHolder::Property::FONT_STYLE ] = placeholderPixelSizeMapSet["fontStyle"];
923   placeholderConversionMap[ Text::PlaceHolder::Property::FONT_FAMILY ] = placeholderPixelSizeMapSet["fontFamily"];
924   placeholderConversionMap[ Text::PlaceHolder::Property::POINT_SIZE ] = placeholderPixelSizeMapSet["pointSize"];
925
926   DALI_TEST_EQUALS( DaliTestCheckMaps( placeholderMapGet, placeholderConversionMap ), true, TEST_LOCATION );
927
928   // Reset font style.
929   placeholderFontstyleMap.Clear();
930   placeholderFontstyleMap.Insert( "weight", "normal" );
931   placeholderFontstyleMap.Insert( "slant", "oblique" );
932   placeholderMapSet["fontStyle"] = placeholderFontstyleMap;
933   field.SetProperty( TextField::Property::PLACEHOLDER, placeholderMapSet );
934
935   placeholderMapGet = field.GetProperty<Property::Map>( TextField::Property::PLACEHOLDER );
936   DALI_TEST_EQUALS( placeholderMapGet.Count(), placeholderMapSet.Count(), TEST_LOCATION );
937
938   placeholderConversionMap[ Text::PlaceHolder::Property::FONT_STYLE ] = placeholderPixelSizeMapSet["fontStyle"];
939   DALI_TEST_EQUALS( DaliTestCheckMaps( placeholderMapGet, placeholderConversionMap ), true, TEST_LOCATION );
940
941   placeholderFontstyleMap.Clear();
942   placeholderFontstyleMap.Insert( "slant", "roman" );
943   placeholderMapSet["fontStyle"] = placeholderFontstyleMap;
944   placeholderConversionMap[ Text::PlaceHolder::Property::FONT_STYLE ] = placeholderPixelSizeMapSet["fontStyle"];
945
946   field.SetProperty( TextField::Property::PLACEHOLDER, placeholderMapSet );
947
948   placeholderMapGet = field.GetProperty<Property::Map>( TextField::Property::PLACEHOLDER );
949
950   placeholderFontstyleMap.Clear();
951   placeholderMapSet["fontStyle"] = placeholderFontstyleMap;
952   placeholderConversionMap[ Text::PlaceHolder::Property::FONT_STYLE ] = placeholderPixelSizeMapSet["fontStyle"];
953
954   field.SetProperty( TextField::Property::PLACEHOLDER, placeholderMapSet );
955   placeholderMapGet = field.GetProperty<Property::Map>( TextField::Property::PLACEHOLDER );
956   DALI_TEST_EQUALS( placeholderMapGet.Count(), placeholderMapSet.Count(), TEST_LOCATION );
957
958   DALI_TEST_EQUALS( DaliTestCheckMaps( placeholderMapGet, placeholderConversionMap ), true, TEST_LOCATION );
959
960   // Check the ellipsis property
961   DALI_TEST_CHECK( !field.GetProperty<bool>( TextField::Property::ELLIPSIS ) );
962   field.SetProperty( TextField::Property::ELLIPSIS, true );
963   DALI_TEST_CHECK( field.GetProperty<bool>( TextField::Property::ELLIPSIS ) );
964
965   field.SetProperty( Actor::Property::LAYOUT_DIRECTION, LayoutDirection::RIGHT_TO_LEFT );
966   DALI_TEST_EQUALS( field.GetProperty<int>( Actor::Property::LAYOUT_DIRECTION ), static_cast<int>( LayoutDirection::RIGHT_TO_LEFT ), TEST_LOCATION );
967
968   // Test the ENABLE_GRAB_HANDLE_POPUP property
969   DALI_TEST_CHECK( field.GetProperty<bool>( DevelTextField::Property::ENABLE_GRAB_HANDLE_POPUP ) );
970   field.SetProperty( DevelTextField::Property::ENABLE_GRAB_HANDLE_POPUP, false );
971   DALI_TEST_CHECK( !field.GetProperty<bool>( DevelTextField::Property::ENABLE_GRAB_HANDLE_POPUP ) );
972
973   // Check the background property
974   field.SetProperty( DevelTextField::Property::BACKGROUND, Color::RED );
975   DALI_TEST_EQUALS( field.GetProperty<Vector4>( DevelTextField::Property::BACKGROUND ), Color::RED, TEST_LOCATION );
976
977   application.SendNotification();
978   application.Render();
979
980   END_TEST;
981 }
982
983 // Positive Atlas Text Renderer test
984 int utcDaliTextFieldAtlasRenderP(void)
985 {
986   ToolkitTestApplication application;
987   tet_infoline(" UtcDaliToolkitTextFieldAtlasRenderP");
988   StyleManager styleManager = StyleManager::Get();
989   styleManager.ApplyDefaultTheme();
990   TextField field = TextField::New();
991   DALI_TEST_CHECK( field );
992
993   field.SetProperty( TextField::Property::HORIZONTAL_ALIGNMENT, "CENTER" );
994
995   application.GetGlAbstraction().SetCheckFramebufferStatusResult( GL_FRAMEBUFFER_COMPLETE );
996
997   application.GetScene().Add( field );
998
999   try
1000   {
1001     // Render some text with the shared atlas backend
1002     field.SetProperty( DevelTextField::Property::RENDERING_BACKEND, DevelText::RENDERING_SHARED_ATLAS );
1003     application.SendNotification();
1004     application.Render();
1005   }
1006   catch( ... )
1007   {
1008     tet_result(TET_FAIL);
1009   }
1010   END_TEST;
1011 }
1012
1013 // Positive test for the textChanged signal.
1014 int utcDaliTextFieldTextChangedP(void)
1015 {
1016   ToolkitTestApplication application;
1017   tet_infoline(" utcDaliTextFieldTextChangedP");
1018   TextField field = TextField::New();
1019   DALI_TEST_CHECK( field );
1020
1021   application.GetScene().Add( field );
1022
1023   // connect to the text changed signal.
1024   ConnectionTracker* testTracker = new ConnectionTracker();
1025   field.TextChangedSignal().Connect(&TestTextChangedCallback);
1026   bool textChangedSignal = false;
1027   field.ConnectSignal( testTracker, "textChanged",   CallbackFunctor(&textChangedSignal) );
1028
1029   gTextChangedCallBackCalled = false;
1030   field.SetProperty( TextField::Property::TEXT, "ABC" );
1031   DALI_TEST_CHECK( gTextChangedCallBackCalled );
1032   DALI_TEST_CHECK( textChangedSignal );
1033
1034   application.SendNotification();
1035
1036   field.SetKeyInputFocus();
1037
1038   gTextChangedCallBackCalled = false;
1039   application.ProcessEvent( GenerateKey( "D", "", "D", KEY_D_CODE, 0, 0, Integration::KeyEvent::DOWN, "D", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
1040   DALI_TEST_CHECK( gTextChangedCallBackCalled );
1041
1042   END_TEST;
1043 }
1044
1045 // Negative test for the textChanged signal.
1046 int utcDaliTextFieldTextChangedN(void)
1047 {
1048   ToolkitTestApplication application;
1049   tet_infoline(" utcDaliTextFieldTextChangedN");
1050   TextField field = TextField::New();
1051   DALI_TEST_CHECK( field );
1052
1053   application.GetScene().Add( field );
1054
1055   // connect to the text changed signal.
1056   ConnectionTracker* testTracker = new ConnectionTracker();
1057   field.TextChangedSignal().Connect(&TestTextChangedCallback);
1058   bool textChangedSignal = false;
1059   field.ConnectSignal( testTracker, "textChanged",   CallbackFunctor(&textChangedSignal) );
1060
1061   gTextChangedCallBackCalled = false;
1062   field.SetProperty( TextField::Property::PLACEHOLDER_TEXT, "ABC" ); // Setting placeholder, not TEXT
1063   DALI_TEST_CHECK( !gTextChangedCallBackCalled );
1064   DALI_TEST_CHECK( !textChangedSignal );
1065
1066   END_TEST;
1067 }
1068
1069 // Positive test for Max Characters reached signal.
1070 int utcDaliTextFieldMaxCharactersReachedP(void)
1071 {
1072   ToolkitTestApplication application;
1073   tet_infoline(" utcDaliTextFieldMaxCharactersReachedP");
1074   TextField field = TextField::New();
1075   DALI_TEST_CHECK( field );
1076
1077   application.GetScene().Add( field );
1078
1079   const int maxNumberOfCharacters = 1;
1080   field.SetProperty( TextField::Property::MAX_LENGTH, maxNumberOfCharacters );
1081
1082   field.SetKeyInputFocus();
1083
1084   // connect to the text changed signal.
1085   ConnectionTracker* testTracker = new ConnectionTracker();
1086   field.MaxLengthReachedSignal().Connect(&TestMaxLengthReachedCallback);
1087   bool maxLengthReachedSignal = false;
1088   field.ConnectSignal( testTracker, "maxLengthReached",   CallbackFunctor(&maxLengthReachedSignal) );
1089
1090   gMaxCharactersCallBackCalled = false;
1091
1092   application.ProcessEvent( GenerateKey( "a", "", "a", KEY_A_CODE, 0, 0, Integration::KeyEvent::DOWN, "a", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
1093   application.ProcessEvent( GenerateKey( "a", "", "a", KEY_A_CODE, 0, 0, Integration::KeyEvent::DOWN, "a", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
1094
1095   DALI_TEST_CHECK( gMaxCharactersCallBackCalled );
1096   DALI_TEST_CHECK( maxLengthReachedSignal );
1097
1098   END_TEST;
1099 }
1100
1101 // Negative test for Max Characters reached signal.
1102 int utcDaliTextFieldMaxCharactersReachedN(void)
1103 {
1104   ToolkitTestApplication application;
1105   tet_infoline(" utcDaliTextFieldMaxCharactersReachedN");
1106   TextField field = TextField::New();
1107   DALI_TEST_CHECK( field );
1108
1109   application.GetScene().Add( field );
1110
1111   const int maxNumberOfCharacters = 3;
1112   field.SetProperty( TextField::Property::MAX_LENGTH, maxNumberOfCharacters );
1113
1114   field.SetKeyInputFocus();
1115
1116   // connect to the text changed signal.
1117   ConnectionTracker* testTracker = new ConnectionTracker();
1118   field.MaxLengthReachedSignal().Connect(&TestMaxLengthReachedCallback);
1119   bool maxLengthReachedSignal = false;
1120   field.ConnectSignal( testTracker, "maxLengthReached",   CallbackFunctor(&maxLengthReachedSignal) );
1121
1122   gMaxCharactersCallBackCalled = false;
1123
1124   application.ProcessEvent( GenerateKey( "a", "", "a", KEY_A_CODE, 0, 0, Integration::KeyEvent::DOWN, "a", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
1125   application.ProcessEvent( GenerateKey( "a", "", "a", KEY_A_CODE, 0, 0, Integration::KeyEvent::DOWN, "a", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
1126
1127   DALI_TEST_CHECK( !gMaxCharactersCallBackCalled );
1128   DALI_TEST_CHECK( !maxLengthReachedSignal );
1129
1130   application.ProcessEvent( GenerateKey( "Return", "", "\r", KEY_RETURN_CODE, 0, 0, Integration::KeyEvent::DOWN, "\r", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
1131
1132   DALI_TEST_CHECK( !gMaxCharactersCallBackCalled );
1133   DALI_TEST_CHECK( !maxLengthReachedSignal );
1134
1135   END_TEST;
1136 }
1137
1138 int utcDaliTextFieldInputStyleChanged01(void)
1139 {
1140   // The text-field emits signals when the input style changes. These changes of style are
1141   // detected during the relayout process (size negotiation), i.e after the cursor has been moved. Signals
1142   // can't be emitted during the size negotiation as the callbacks may update the UI.
1143   // The text-field adds an idle callback to the adaptor to emit the signals after the size negotiation.
1144   // The ToolkitTestApplication creates an implementation of the adaptor stub and a queue of idle callbacks.
1145   ToolkitTestApplication application;
1146   tet_infoline(" utcDaliTextFieldInputStyleChanged01");
1147
1148   // Load some fonts.
1149
1150   char* pathNamePtr = get_current_dir_name();
1151   const std::string pathName( pathNamePtr );
1152   free( pathNamePtr );
1153
1154   TextAbstraction::FontClient fontClient = TextAbstraction::FontClient::Get();
1155   fontClient.SetDpi( 93u, 93u );
1156
1157   fontClient.GetFontId( pathName + DEFAULT_FONT_DIR + "/dejavu/DejaVuSerif.ttf", DEFAULT_FONT_SIZE );
1158   fontClient.GetFontId( pathName + DEFAULT_FONT_DIR + "/dejavu/DejaVuSerif-Bold.ttf", DEFAULT_FONT_SIZE );
1159
1160   TextField field = TextField::New();
1161   DALI_TEST_CHECK( field );
1162
1163
1164   field.SetProperty( Actor::Property::SIZE, Vector2( 300.f, 50.f ) );
1165   field.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT );
1166   field.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT );
1167
1168   field.SetProperty( TextField::Property::ENABLE_MARKUP, true );
1169   field.SetProperty( TextField::Property::TEXT, "<font family='DejaVuSerif' size='18'>He<color value='green'>llo</color> <font weight='bold'>world</font> demo</font>" );
1170
1171   // connect to the text changed signal.
1172   ConnectionTracker* testTracker = new ConnectionTracker();
1173   field.InputStyleChangedSignal().Connect( &TestInputStyleChangedCallback );
1174   bool inputStyleChangedSignal = false;
1175   field.ConnectSignal( testTracker, "inputStyleChanged",   CallbackFunctor(&inputStyleChangedSignal) );
1176
1177   application.GetScene().Add( field );
1178
1179   // Render and notify
1180   application.SendNotification();
1181   application.Render();
1182
1183   // Executes the idle callbacks added by the text control on the change of input style.
1184   application.RunIdles();
1185
1186   gInputStyleChangedCallbackCalled = false;
1187   gInputStyleMask = TextField::InputStyle::NONE;
1188   inputStyleChangedSignal = false;
1189
1190   // Create a tap event to touch the text field.
1191   TestGenerateTap( application, 18.0f, 25.0f );
1192
1193   // Render and notify
1194   application.SendNotification();
1195   application.Render();
1196
1197   // Executes the idle callbacks added by the text control on the change of input style.
1198   application.RunIdles();
1199
1200   DALI_TEST_CHECK( gInputStyleChangedCallbackCalled );
1201   if( gInputStyleChangedCallbackCalled )
1202   {
1203     DALI_TEST_EQUALS( static_cast<unsigned int>( gInputStyleMask ), static_cast<unsigned int>( TextField::InputStyle::FONT_FAMILY | TextField::InputStyle::POINT_SIZE ), TEST_LOCATION );
1204
1205     const std::string fontFamily = field.GetProperty( TextField::Property::INPUT_FONT_FAMILY ).Get<std::string>();
1206     DALI_TEST_EQUALS( fontFamily, "DejaVuSerif", TEST_LOCATION );
1207
1208     const float pointSize = field.GetProperty( TextField::Property::INPUT_POINT_SIZE ).Get<float>();
1209     DALI_TEST_EQUALS( pointSize, 18.f, Math::MACHINE_EPSILON_1000, TEST_LOCATION );
1210   }
1211   DALI_TEST_CHECK( inputStyleChangedSignal );
1212
1213   gInputStyleChangedCallbackCalled = false;
1214   gInputStyleMask = TextField::InputStyle::NONE;
1215   inputStyleChangedSignal = false;
1216
1217   // Create a tap event to touch the text field.
1218   TestGenerateTap( application, 30.0f, 25.0f );
1219
1220   // Render and notify
1221   application.SendNotification();
1222   application.Render();
1223
1224   // Executes the idle callbacks added by the text control on the change of input style.
1225   application.RunIdles();
1226
1227   DALI_TEST_CHECK( !gInputStyleChangedCallbackCalled );
1228   DALI_TEST_CHECK( !inputStyleChangedSignal );
1229
1230   gInputStyleChangedCallbackCalled = false;
1231   gInputStyleMask = TextField::InputStyle::NONE;
1232   inputStyleChangedSignal = false;
1233
1234   // Create a tap event to touch the text field.
1235   TestGenerateTap( application, 43.0f, 25.0f );
1236
1237   // Render and notify
1238   application.SendNotification();
1239   application.Render();
1240
1241   // Executes the idle callbacks added by the text control on the change of input style.
1242   application.RunIdles();
1243
1244   DALI_TEST_CHECK( gInputStyleChangedCallbackCalled );
1245   if( gInputStyleChangedCallbackCalled )
1246   {
1247     DALI_TEST_EQUALS( static_cast<unsigned int>( gInputStyleMask ), static_cast<unsigned int>( TextField::InputStyle::COLOR ), TEST_LOCATION );
1248
1249     const Vector4 color = field.GetProperty( TextField::Property::INPUT_COLOR ).Get<Vector4>();
1250     DALI_TEST_EQUALS( color, Color::GREEN, TEST_LOCATION );
1251   }
1252   DALI_TEST_CHECK( inputStyleChangedSignal );
1253
1254   gInputStyleChangedCallbackCalled = false;
1255   gInputStyleMask = TextField::InputStyle::NONE;
1256   inputStyleChangedSignal = false;
1257
1258   // Create a tap event to touch the text field.
1259   TestGenerateTap( application, 88.0f, 25.0f );
1260
1261   // Render and notify
1262   application.SendNotification();
1263   application.Render();
1264
1265   // Executes the idle callbacks added by the text control on the change of input style.
1266   application.RunIdles();
1267
1268   DALI_TEST_CHECK( gInputStyleChangedCallbackCalled );
1269   if( gInputStyleChangedCallbackCalled )
1270   {
1271     DALI_TEST_EQUALS( static_cast<unsigned int>( gInputStyleMask ), static_cast<unsigned int>( TextField::InputStyle::COLOR | TextField::InputStyle::FONT_STYLE ), TEST_LOCATION );
1272
1273     const Vector4 color = field.GetProperty( TextField::Property::INPUT_COLOR ).Get<Vector4>();
1274     DALI_TEST_EQUALS( color, Color::BLACK, TEST_LOCATION );
1275
1276     const Property::Map fontStyleMapGet = field.GetProperty( TextField::Property::INPUT_FONT_STYLE ).Get<Property::Map>();
1277
1278     Property::Map fontStyleMapSet;
1279     fontStyleMapSet.Insert( "weight", "bold" );
1280
1281     DALI_TEST_EQUALS( fontStyleMapGet.Count(), fontStyleMapSet.Count(), TEST_LOCATION );
1282     DALI_TEST_EQUALS( DaliTestCheckMaps( fontStyleMapGet, fontStyleMapSet ), true, TEST_LOCATION );
1283   }
1284   DALI_TEST_CHECK( inputStyleChangedSignal );
1285
1286   gInputStyleChangedCallbackCalled = false;
1287   gInputStyleMask = TextField::InputStyle::NONE;
1288   inputStyleChangedSignal = false;
1289
1290   // Create a tap event to touch the text field.
1291   TestGenerateTap( application, 115.0f, 25.0f );
1292
1293   // Render and notify
1294   application.SendNotification();
1295   application.Render();
1296
1297   // Executes the idle callbacks added by the text control on the change of input style.
1298   application.RunIdles();
1299
1300   DALI_TEST_CHECK( !gInputStyleChangedCallbackCalled );
1301   DALI_TEST_CHECK( !inputStyleChangedSignal );
1302
1303   gInputStyleChangedCallbackCalled = false;
1304   gInputStyleMask = TextField::InputStyle::NONE;
1305   inputStyleChangedSignal = false;
1306
1307   // Create a tap event to touch the text field.
1308   TestGenerateTap( application, 164.0f, 25.0f );
1309
1310   // Render and notify
1311   application.SendNotification();
1312   application.Render();
1313
1314   // Executes the idle callbacks added by the text control on the change of input style.
1315   application.RunIdles();
1316
1317   DALI_TEST_CHECK( gInputStyleChangedCallbackCalled );
1318   if( gInputStyleChangedCallbackCalled )
1319   {
1320     DALI_TEST_EQUALS( static_cast<unsigned int>( gInputStyleMask ), static_cast<unsigned int>( TextField::InputStyle::FONT_STYLE ), TEST_LOCATION );
1321
1322     const std::string style = field.GetProperty( TextField::Property::INPUT_FONT_STYLE ).Get<std::string>();
1323     DALI_TEST_CHECK( style.empty() );
1324   }
1325   DALI_TEST_CHECK( inputStyleChangedSignal );
1326
1327   gInputStyleChangedCallbackCalled = false;
1328   gInputStyleMask = TextField::InputStyle::NONE;
1329   inputStyleChangedSignal = false;
1330
1331   // Create a tap event to touch the text field.
1332   TestGenerateTap( application, 191.0f, 25.0f );
1333
1334   // Render and notify
1335   application.SendNotification();
1336   application.Render();
1337
1338   // Executes the idle callbacks added by the text control on the change of input style.
1339   application.RunIdles();
1340
1341   DALI_TEST_CHECK( !gInputStyleChangedCallbackCalled );
1342   DALI_TEST_CHECK( !inputStyleChangedSignal );
1343
1344   END_TEST;
1345 }
1346
1347 int utcDaliTextFieldInputStyleChanged02(void)
1348 {
1349   // The text-field emits signals when the input style changes. These changes of style are
1350   // detected during the relayout process (size negotiation), i.e after the cursor has been moved. Signals
1351   // can't be emitted during the size negotiation as the callbacks may update the UI.
1352   // The text-field adds an idle callback to the adaptor to emit the signals after the size negotiation.
1353   // The ToolkitTestApplication creates an implementation of the adaptor stub and a queue of idle callbacks.
1354   ToolkitTestApplication application;
1355   tet_infoline(" utcDaliTextFieldInputStyleChanged02");
1356
1357   // Load some fonts.
1358
1359   char* pathNamePtr = get_current_dir_name();
1360   const std::string pathName( pathNamePtr );
1361   free( pathNamePtr );
1362
1363   TextAbstraction::FontClient fontClient = TextAbstraction::FontClient::Get();
1364   fontClient.SetDpi( 93u, 93u );
1365
1366   fontClient.GetFontId( pathName + DEFAULT_FONT_DIR + "/dejavu/DejaVuSerif.ttf", DEFAULT_FONT_SIZE );
1367   fontClient.GetFontId( pathName + DEFAULT_FONT_DIR + "/dejavu/DejaVuSerif-Bold.ttf", DEFAULT_FONT_SIZE );
1368
1369   TextField field = TextField::New();
1370   DALI_TEST_CHECK( field );
1371
1372   field.SetProperty( Actor::Property::SIZE, Vector2( 300.f, 50.f ) );
1373   field.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT );
1374   field.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT );
1375
1376   field.SetProperty( TextField::Property::ENABLE_MARKUP, true );
1377   field.SetProperty( TextField::Property::TEXT, "<font family='DejaVuSerif' size='18'>He<color value='blue'> l</color><color value='green'>lo</color> <font weight='bold'>world</font> demo</font>" );
1378
1379   // connect to the text changed signal.
1380   ConnectionTracker* testTracker = new ConnectionTracker();
1381   field.InputStyleChangedSignal().Connect( &TestInputStyleChangedCallback );
1382   bool inputStyleChangedSignal = false;
1383   field.ConnectSignal( testTracker, "inputStyleChanged",   CallbackFunctor(&inputStyleChangedSignal) );
1384
1385   application.GetScene().Add( field );
1386
1387   // Render and notify
1388   application.SendNotification();
1389   application.Render();
1390
1391   // Executes the idle callbacks added by the text control on the change of input style.
1392   application.RunIdles();
1393
1394   gInputStyleChangedCallbackCalled = false;
1395   gInputStyleMask = TextField::InputStyle::NONE;
1396   inputStyleChangedSignal = false;
1397
1398   // Create a tap event to touch the text field.
1399   TestGenerateTap( application, 53.0f, 25.0f, 100 );
1400   TestGenerateTap( application, 53.0f, 25.0f, 200 );
1401
1402   // Render and notify
1403   application.SendNotification();
1404   application.Render();
1405
1406   // Executes the idle callbacks added by the text control on the change of input style.
1407   application.RunIdles();
1408
1409   DALI_TEST_CHECK( gInputStyleChangedCallbackCalled );
1410   if( gInputStyleChangedCallbackCalled )
1411   {
1412     DALI_TEST_EQUALS( static_cast<unsigned int>( gInputStyleMask ),
1413                       static_cast<unsigned int>( TextField::InputStyle::FONT_FAMILY |
1414                                                  TextField::InputStyle::POINT_SIZE  |
1415                                                  TextField::InputStyle::COLOR ),
1416                       TEST_LOCATION );
1417
1418     const Vector4 color = field.GetProperty( TextField::Property::INPUT_COLOR ).Get<Vector4>();
1419     DALI_TEST_EQUALS( color, Color::GREEN, TEST_LOCATION );
1420
1421     const std::string fontFamily = field.GetProperty( TextField::Property::INPUT_FONT_FAMILY ).Get<std::string>();
1422     DALI_TEST_EQUALS( fontFamily, "DejaVuSerif", TEST_LOCATION );
1423
1424     const float pointSize = field.GetProperty( TextField::Property::INPUT_POINT_SIZE ).Get<float>();
1425     DALI_TEST_EQUALS( pointSize, 18.f, Math::MACHINE_EPSILON_1000, TEST_LOCATION );
1426   }
1427   DALI_TEST_CHECK( inputStyleChangedSignal );
1428
1429   gInputStyleChangedCallbackCalled = false;
1430   gInputStyleMask = TextField::InputStyle::NONE;
1431   inputStyleChangedSignal = false;
1432
1433   application.ProcessEvent( GenerateKey( "", "", "", DALI_KEY_BACKSPACE, 0, 0, Integration::KeyEvent::DOWN, "", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
1434
1435   // Render and notify
1436   application.SendNotification();
1437   application.Render();
1438
1439   // Executes the idle callbacks added by the text control on the change of input style.
1440   application.RunIdles();
1441
1442   DALI_TEST_CHECK( gInputStyleChangedCallbackCalled );
1443   if( gInputStyleChangedCallbackCalled )
1444   {
1445     DALI_TEST_EQUALS( static_cast<unsigned int>( gInputStyleMask ),
1446                       static_cast<unsigned int>( TextField::InputStyle::COLOR ),
1447                       TEST_LOCATION );
1448
1449     const Vector4 color = field.GetProperty( TextField::Property::INPUT_COLOR ).Get<Vector4>();
1450     DALI_TEST_EQUALS( color, Color::BLUE, TEST_LOCATION );
1451   }
1452   DALI_TEST_CHECK( inputStyleChangedSignal );
1453
1454   gInputStyleChangedCallbackCalled = false;
1455   gInputStyleMask = TextField::InputStyle::NONE;
1456   inputStyleChangedSignal = false;
1457
1458   application.ProcessEvent( GenerateKey( "", "", "", DALI_KEY_BACKSPACE, 0, 0, Integration::KeyEvent::DOWN, "", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
1459
1460   // Render and notify
1461   application.SendNotification();
1462   application.Render();
1463
1464   // Executes the idle callbacks added by the text control on the change of input style.
1465   application.RunIdles();
1466
1467   DALI_TEST_CHECK( !gInputStyleChangedCallbackCalled );
1468   DALI_TEST_CHECK( !inputStyleChangedSignal );
1469
1470   gInputStyleChangedCallbackCalled = false;
1471   gInputStyleMask = TextField::InputStyle::NONE;
1472   inputStyleChangedSignal = false;
1473
1474   application.ProcessEvent( GenerateKey( "", "", "", DALI_KEY_BACKSPACE, 0, 0, Integration::KeyEvent::DOWN, "", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
1475
1476   // Render and notify
1477   application.SendNotification();
1478   application.Render();
1479
1480   // Executes the idle callbacks added by the text control on the change of input style.
1481   application.RunIdles();
1482
1483   DALI_TEST_CHECK( gInputStyleChangedCallbackCalled );
1484   if( gInputStyleChangedCallbackCalled )
1485   {
1486     DALI_TEST_EQUALS( static_cast<unsigned int>( gInputStyleMask ),
1487                       static_cast<unsigned int>( TextField::InputStyle::COLOR ),
1488                       TEST_LOCATION );
1489
1490     const Vector4 color = field.GetProperty( TextField::Property::INPUT_COLOR ).Get<Vector4>();
1491     DALI_TEST_EQUALS( color, Color::BLACK, TEST_LOCATION );
1492   }
1493   DALI_TEST_CHECK( inputStyleChangedSignal );
1494
1495   gInputStyleChangedCallbackCalled = false;
1496   gInputStyleMask = TextField::InputStyle::NONE;
1497   inputStyleChangedSignal = false;
1498
1499   field.SetProperty( TextField::Property::INPUT_COLOR, Color::YELLOW );
1500
1501   Property::Map fontStyleMapSet;
1502   fontStyleMapSet.Insert( "weight", "thin" );
1503   fontStyleMapSet.Insert( "width", "condensed" );
1504   fontStyleMapSet.Insert( "slant", "italic" );
1505
1506   field.SetProperty( TextField::Property::INPUT_FONT_STYLE, fontStyleMapSet );
1507   field.SetProperty( TextField::Property::INPUT_POINT_SIZE, 20.f );
1508
1509   field.SetProperty( TextField::Property::INPUT_UNDERLINE, "underline" );
1510   field.SetProperty( TextField::Property::INPUT_SHADOW, "shadow" );
1511   field.SetProperty( TextField::Property::INPUT_EMBOSS, "emboss" );
1512   field.SetProperty( TextField::Property::INPUT_OUTLINE, "outline" );
1513
1514   // Render and notify
1515   application.SendNotification();
1516   application.Render();
1517
1518   // Executes the idle callbacks added by the text control on the change of input style.
1519   application.RunIdles();
1520
1521   DALI_TEST_CHECK( !gInputStyleChangedCallbackCalled );
1522   DALI_TEST_CHECK( !inputStyleChangedSignal );
1523
1524   // Create a tap event to touch the text field.
1525   TestGenerateTap( application, 63.0f, 25.0f, 300 );
1526
1527   // Render and notify
1528   application.SendNotification();
1529   application.Render();
1530
1531   // Executes the idle callbacks added by the text control on the change of input style.
1532   application.RunIdles();
1533
1534   DALI_TEST_CHECK( gInputStyleChangedCallbackCalled );
1535   if( gInputStyleChangedCallbackCalled )
1536   {
1537     DALI_TEST_EQUALS( static_cast<unsigned int>( gInputStyleMask ),
1538                       static_cast<unsigned int>( TextField::InputStyle::COLOR |
1539                                                  TextField::InputStyle::POINT_SIZE |
1540                                                  TextField::InputStyle::FONT_STYLE |
1541                                                  TextField::InputStyle::UNDERLINE |
1542                                                  TextField::InputStyle::SHADOW |
1543                                                  TextField::InputStyle::EMBOSS |
1544                                                  TextField::InputStyle::OUTLINE ),
1545                       TEST_LOCATION );
1546
1547     const Vector4 color = field.GetProperty( TextField::Property::INPUT_COLOR ).Get<Vector4>();
1548     DALI_TEST_EQUALS( color, Color::BLACK, TEST_LOCATION );
1549   }
1550   DALI_TEST_CHECK( inputStyleChangedSignal );
1551
1552   END_TEST;
1553 }
1554
1555 int utcDaliTextFieldEvent01(void)
1556 {
1557   ToolkitTestApplication application;
1558   tet_infoline(" utcDaliTextFieldEvent01");
1559
1560   // Creates a tap event. After creating a tap event the text field should
1561   // have the focus and add text with key events should be possible.
1562
1563   TextField field = TextField::New();
1564   DALI_TEST_CHECK( field );
1565
1566   application.GetScene().Add( field );
1567
1568   field.SetProperty( Actor::Property::SIZE, Vector2( 300.f, 50.f ) );
1569   field.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT );
1570   field.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT );
1571
1572   // Render and notify
1573   application.SendNotification();
1574   application.Render();
1575
1576   // Avoid a crash when core load gl resources.
1577   application.GetGlAbstraction().SetCheckFramebufferStatusResult( GL_FRAMEBUFFER_COMPLETE );
1578
1579   // Render and notify
1580   application.SendNotification();
1581   application.Render();
1582
1583   // Add a key event but as the text field has not the focus it should do nothing.
1584   application.ProcessEvent( GenerateKey( "a", "", "a", KEY_A_CODE, 0, 0, Integration::KeyEvent::DOWN, "a", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
1585
1586   // Render and notify
1587   application.SendNotification();
1588   application.Render();
1589
1590   DALI_TEST_EQUALS( field.GetProperty<std::string>( TextField::Property::TEXT ), std::string(""), TEST_LOCATION );
1591
1592   // Create a tap event to touch the text field.
1593   TestGenerateTap( application, 150.0f, 25.0f );
1594
1595   // Render and notify
1596   application.SendNotification();
1597   application.Render();
1598
1599   // Pressing delete key should be fine even if there is no text in TextField.
1600   application.ProcessEvent( GenerateKey( "Delete", "", "Delete", Dali::DevelKey::DALI_KEY_DELETE, 0, 0, Integration::KeyEvent::DOWN, "Delete", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
1601   // Render and notify
1602   application.SendNotification();
1603   application.Render();
1604
1605   // Now the text field has the focus, so it can handle the key events.
1606   application.ProcessEvent( GenerateKey( "a", "", "a", KEY_A_CODE, 0, 0, Integration::KeyEvent::DOWN, "a", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
1607   application.ProcessEvent( GenerateKey( "a", "", "a", KEY_A_CODE, 0, 0, Integration::KeyEvent::DOWN, "a", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
1608
1609   // Render and notify
1610   application.SendNotification();
1611   application.Render();
1612
1613   DALI_TEST_EQUALS( field.GetProperty<std::string>( TextField::Property::TEXT ), std::string("aa"), TEST_LOCATION );
1614
1615   // Create a second text field and send key events to it.
1616   TextField field2 = TextField::New();
1617
1618   field2.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT );
1619   field2.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT );
1620   field2.SetProperty( Actor::Property::SIZE, Vector2( 100.f, 100.f ) );
1621   field2.SetProperty( Actor::Property::POSITION, Vector2( 100.0f, 100.0f ));
1622
1623   application.GetScene().Add( field2 );
1624
1625   // Render and notify
1626   application.SendNotification();
1627   application.Render();
1628
1629   // Create a tap event on the second text field.
1630   TestGenerateTap( application, 150.0f, 125.0f );
1631
1632   // Render and notify
1633   application.SendNotification();
1634   application.Render();
1635
1636   // The second text field has the focus. It should handle the key events.
1637   application.ProcessEvent( GenerateKey( "a", "", "a", KEY_A_CODE, 0, 0, Integration::KeyEvent::DOWN, "a", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
1638   application.ProcessEvent( GenerateKey( "a", "", "a", KEY_A_CODE, 0, 0, Integration::KeyEvent::DOWN, "a", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
1639
1640   // Render and notify
1641   application.SendNotification();
1642   application.Render();
1643
1644   // Check the text has been added to the second text field.
1645   DALI_TEST_EQUALS( field2.GetProperty<std::string>( TextField::Property::TEXT ), std::string("aa"), TEST_LOCATION );
1646
1647   END_TEST;
1648 }
1649
1650 int utcDaliTextFieldEvent02(void)
1651 {
1652   ToolkitTestApplication application;
1653   tet_infoline(" utcDaliTextFieldEvent02");
1654
1655   // Checks if the right number of actors are created.
1656
1657   TextField field = TextField::New();
1658   field.SetProperty( TextField::Property::POINT_SIZE, 10.f );
1659   DALI_TEST_CHECK( field );
1660   LoadMarkerImages(application, field);
1661
1662   application.GetScene().Add( field );
1663
1664   field.SetProperty( Actor::Property::SIZE, Vector2( 300.f, 50.f ) );
1665   field.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT );
1666   field.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT );
1667
1668   // Avoid a crash when core load gl resources.
1669   application.GetGlAbstraction().SetCheckFramebufferStatusResult( GL_FRAMEBUFFER_COMPLETE );
1670
1671   // Render and notify
1672   application.SendNotification();
1673   application.Render();
1674
1675   // Check there are the expected number of children ( stencil ).
1676   DALI_TEST_EQUALS( field.GetChildCount(), 1u, TEST_LOCATION );
1677
1678   Actor stencil = field.GetChildAt( 0u );
1679   DALI_TEST_EQUALS( stencil.GetChildCount(), 0u, TEST_LOCATION );
1680
1681   // Create a tap event to touch the text field.
1682   TestGenerateTap( application, 150.0f, 25.0f, 300 );
1683
1684   // Render and notify
1685   application.SendNotification();
1686   application.Render();
1687
1688   Actor layer = field.GetChildAt( 1u );
1689   DALI_TEST_CHECK( layer.GetProperty< bool >( Actor::Property::IS_LAYER ) );
1690
1691   DALI_TEST_EQUALS( layer.GetChildCount(), 1u, TEST_LOCATION ); // The cursor.
1692   DALI_TEST_EQUALS( stencil.GetChildCount(), 0u, TEST_LOCATION );
1693
1694   // Now the text field has the focus, so it can handle the key events.
1695   application.ProcessEvent( GenerateKey( "a", "", "a", KEY_A_CODE, 0, 0, Integration::KeyEvent::DOWN, "a", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
1696   application.ProcessEvent( GenerateKey( "a", "", "a", KEY_A_CODE, 0, 0, Integration::KeyEvent::DOWN, "a", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
1697
1698   // Render and notify
1699   application.SendNotification();
1700   application.Render();
1701
1702   // Checks the cursor and the renderer have been created.
1703   DALI_TEST_EQUALS( layer.GetChildCount(), 1u, TEST_LOCATION ); // The cursor.
1704   DALI_TEST_EQUALS( stencil.GetChildCount(), 1u, TEST_LOCATION ); // The renderer
1705
1706   Control cursor = Control::DownCast( layer.GetChildAt( 0u ) );
1707   DALI_TEST_CHECK( cursor );
1708
1709   // The offscreen root actor has a container with all the actors which contain the text renderers.
1710   Actor container = stencil.GetChildAt( 0u );
1711   for( unsigned int index = 0; index < container.GetChildCount(); ++index )
1712   {
1713     Renderer renderer = container.GetChildAt( index ).GetRendererAt( 0u );
1714     DALI_TEST_CHECK( renderer );
1715   }
1716
1717   // Move the cursor and check the position changes.
1718   Vector3 position1 = cursor.GetCurrentProperty< Vector3 >( Actor::Property::POSITION );
1719   application.ProcessEvent( GenerateKey( "", "", "", DALI_KEY_CURSOR_LEFT, 0, 0, Integration::KeyEvent::DOWN, "", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
1720
1721   // Render and notify
1722   application.SendNotification();
1723   application.Render();
1724
1725   Vector3 position2 = cursor.GetCurrentProperty< Vector3 >( Actor::Property::POSITION );
1726   DALI_TEST_CHECK( position2.x < position1.x );
1727
1728   application.ProcessEvent( GenerateKey( "", "", "", DALI_KEY_CURSOR_RIGHT, 0, 0, Integration::KeyEvent::DOWN, "", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
1729
1730   // Render and notify
1731   application.SendNotification();
1732   application.Render();
1733
1734   Vector3 position3 = cursor.GetCurrentProperty< Vector3 >( Actor::Property::POSITION );
1735   DALI_TEST_EQUALS( position1, position3, TEST_LOCATION ); // Should be in the same position1.
1736
1737
1738   // Move the cursor to the first position.
1739   application.ProcessEvent( GenerateKey( "", "", "", DALI_KEY_CURSOR_LEFT, 0, 0, Integration::KeyEvent::DOWN, "", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
1740   application.ProcessEvent( GenerateKey( "", "", "", DALI_KEY_CURSOR_LEFT, 0, 0, Integration::KeyEvent::DOWN, "", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
1741
1742   // Render and notify
1743   application.SendNotification();
1744   application.Render();
1745
1746   Vector3 position4 = cursor.GetCurrentProperty< Vector3 >( Actor::Property::POSITION );
1747
1748   // Send some taps and check the cursor positions.
1749
1750   // Try to tap at the beginning.
1751   TestGenerateTap( application, 1.0f, 25.0f, 900 );
1752
1753   // Render and notify
1754   application.SendNotification();
1755   application.Render();
1756
1757   // Cursor position should be the same than position1.
1758   Vector3 position5 = cursor.GetCurrentProperty< Vector3 >( Actor::Property::POSITION );
1759
1760   DALI_TEST_EQUALS( position4, position5, TEST_LOCATION ); // Should be in the same position2.
1761
1762   // Tap away from the start position.
1763   TestGenerateTap( application, 16.0f, 25.0f, 1500 );
1764
1765   // Render and notify
1766   application.SendNotification();
1767   application.Render();
1768
1769   Vector3 position6 = cursor.GetCurrentProperty< Vector3 >( Actor::Property::POSITION );
1770
1771   DALI_TEST_CHECK( position6.x > position5.x );
1772
1773   // Remove all the text.
1774   application.ProcessEvent( GenerateKey( "", "", "", DALI_KEY_BACKSPACE, 0, 0, Integration::KeyEvent::DOWN, "", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
1775   application.ProcessEvent( GenerateKey( "", "", "", DALI_KEY_BACKSPACE, 0, 0, Integration::KeyEvent::DOWN, "", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
1776   field.SetProperty( TextField::Property::TEXT, "" );
1777
1778   // Render and notify
1779   application.SendNotification();
1780   application.Render();
1781
1782   // Cursor position should be the same than position2.
1783   Vector3 position7 = cursor.GetCurrentProperty< Vector3 >( Actor::Property::POSITION );
1784
1785   DALI_TEST_EQUALS( position4, position7, TEST_LOCATION );// Should be in the same position2.
1786
1787   // Should not be a renderer.
1788   DALI_TEST_EQUALS( stencil.GetChildCount(), 0u, TEST_LOCATION );
1789
1790   // Chanege exceed policy (EXCEED_POLICY_ORIGINAL doesn't use stencil )
1791   field.SetProperty( TextField::Property::TEXT, "This is a long text for the size of the text-field." );
1792   field.SetProperty( TextField::Property::EXCEED_POLICY, Dali::Toolkit::TextField::EXCEED_POLICY_ORIGINAL );
1793
1794   application.SendNotification();
1795   application.Render();
1796
1797   // There are renderer and decorator layer
1798   DALI_TEST_EQUALS( field.GetChildCount(), 2u, TEST_LOCATION );
1799
1800   END_TEST;
1801 }
1802
1803 int utcDaliTextFieldEvent03(void)
1804 {
1805   ToolkitTestApplication application;
1806   tet_infoline(" utcDaliTextFieldEvent03");
1807
1808   // Checks if the highlight actor is created.
1809
1810   TextField field = TextField::New();
1811   DALI_TEST_CHECK( field );
1812
1813   application.GetScene().Add( field );
1814
1815   field.SetProperty( TextField::Property::TEXT, "This is a long text for the size of the text-field." );
1816   field.SetProperty( TextField::Property::POINT_SIZE, 10.f );
1817   field.SetProperty( Actor::Property::SIZE, Vector2( 30.f, 50.f ) );
1818   field.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT );
1819   field.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT );
1820
1821   // Avoid a crash when core load gl resources.
1822   application.GetGlAbstraction().SetCheckFramebufferStatusResult( GL_FRAMEBUFFER_COMPLETE );
1823   LoadMarkerImages(application, field);
1824
1825   // Render and notify
1826   application.SendNotification();
1827   application.Render();
1828
1829   // Tap first to get the focus.
1830   TestGenerateTap( application, 3.0f, 25.0f );
1831
1832   // Render and notify
1833   application.SendNotification();
1834   application.Render();
1835
1836   // Double tap to select a word.
1837   TestGenerateTap( application, 3.0f, 25.0f );
1838
1839   // Render and notify
1840   application.SendNotification();
1841   application.Render();
1842
1843   // The offscreen root actor should have two actors: the renderer and the highlight actor.
1844   Actor stencil = field.GetChildAt( 0u );
1845
1846   // The highlight actor is drawn first, so is the first actor in the list
1847   Renderer highlight = stencil.GetChildAt( 0u ).GetRendererAt( 0u );
1848   DALI_TEST_CHECK( highlight );
1849
1850   // The offscreen root actor has a container with all the actors which contain the text renderers.
1851   Actor container = stencil.GetChildAt( 1u );
1852   for( unsigned int index = 0; index < container.GetChildCount(); ++index )
1853   {
1854     Renderer renderer = container.GetChildAt( index ).GetRendererAt( 0u );
1855     DALI_TEST_CHECK( renderer );
1856   }
1857
1858   END_TEST;
1859 }
1860
1861 int utcDaliTextFieldEvent04(void)
1862 {
1863   ToolkitTestApplication application;
1864   tet_infoline(" utcDaliTextFieldEvent04");
1865
1866   // Checks if the highlight actor is created.
1867
1868   TextField field = TextField::New();
1869   DALI_TEST_CHECK( field );
1870   application.GetScene().Add( field );
1871   LoadMarkerImages(application, field);
1872   // Render and notify
1873   application.SendNotification();
1874   application.Render();
1875
1876   field.SetProperty( TextField::Property::TEXT, "This is a long text for the size of the text-field." );
1877   field.SetProperty( TextField::Property::POINT_SIZE, 10.f );
1878   field.SetProperty( Actor::Property::SIZE, Vector2( 300.f, 50.f ) );
1879   field.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT );
1880   field.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT );
1881
1882   // Avoid a crash when core load gl resources.
1883   application.GetGlAbstraction().SetCheckFramebufferStatusResult( GL_FRAMEBUFFER_COMPLETE );
1884   // Render and notify
1885   application.SendNotification();
1886   application.Render();
1887
1888   // Create a tap event to touch the text field.
1889   TestGenerateTap( application, 150.0f, 25.0f );
1890   // Render and notify
1891   application.SendNotification();
1892   application.Render();
1893
1894
1895   // Tap first to get the focus.
1896   TestGenerateTap( application, 1.0f, 25.0f );
1897
1898   // Render and notify
1899   application.SendNotification();
1900   application.Render();
1901
1902   // Double tap to select a word.
1903   TestGenerateTap( application, 1.0f, 25.0f );
1904
1905   // Render and notify
1906   application.SendNotification();
1907   application.Render();
1908
1909   // Tap grab handle
1910   TestGenerateTap( application, 0.0f, 40.0f );
1911   END_TEST;
1912 }
1913
1914 int utcDaliTextFieldEvent05(void)
1915 {
1916   ToolkitTestApplication application;
1917   tet_infoline(" utcDaliTextFieldEvent05");
1918
1919   // Checks dragging of cursor/grab handle
1920
1921   TextField field = TextField::New();
1922   DALI_TEST_CHECK( field );
1923   application.GetScene().Add( field );
1924   LoadMarkerImages(application, field);
1925   // Render and notify
1926   application.SendNotification();
1927   application.Render();
1928
1929   field.SetProperty( TextField::Property::TEXT, "This is a long text for the size of the text-field." );
1930   field.SetProperty( TextField::Property::POINT_SIZE, 10.f );
1931   field.SetProperty( Actor::Property::SIZE, Vector2( 300.f, 50.f ) );
1932   field.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT );
1933   field.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT );
1934
1935   // Avoid a crash when core load gl resources.
1936   application.GetGlAbstraction().SetCheckFramebufferStatusResult( GL_FRAMEBUFFER_COMPLETE );
1937   // Render and notify
1938   application.SendNotification();
1939   application.Render();
1940
1941   // Create a tap event to touch the text field.
1942   TestGenerateTap( application, 150.0f, 25.0f );
1943   // Render and notify
1944   application.SendNotification();
1945   application.Render();
1946
1947   // Tap first to get the focus.
1948   TestGenerateTap( application, 1.0f, 25.0f );
1949
1950   // Render and notify
1951   application.SendNotification();
1952   application.Render();
1953
1954   // Double tap to select a word.
1955   TestGenerateTap( application, 1.0f, 25.0f );
1956
1957   // Render and notify
1958   application.SendNotification();
1959   application.Render();
1960
1961   Actor stencil = field.GetChildAt( 1u );
1962   END_TEST;
1963 }
1964
1965 int utcDaliTextFieldEvent06(void)
1966 {
1967   ToolkitTestApplication application;
1968   tet_infoline(" utcDaliTextFieldEvent06");
1969
1970   // Checks Longpress when in edit mode
1971
1972   TextField field = TextField::New();
1973   DALI_TEST_CHECK( field );
1974   application.GetScene().Add( field );
1975   LoadMarkerImages(application, field);
1976   // Render and notify
1977   application.SendNotification();
1978   application.Render();
1979
1980   field.SetProperty( TextField::Property::TEXT, "Thisisalongtextforthesizeofthetextfield." );
1981   field.SetProperty( TextField::Property::POINT_SIZE, 10.f );
1982   field.SetProperty( Actor::Property::SIZE, Vector2( 300.f, 50.f ) );
1983   field.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT );
1984   field.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT );
1985
1986   // Avoid a crash when core load gl resources.
1987   application.GetGlAbstraction().SetCheckFramebufferStatusResult( GL_FRAMEBUFFER_COMPLETE );
1988   // Render and notify
1989   application.SendNotification();
1990   application.Render();
1991
1992   // Create a tap event to touch the text field.
1993   TestGenerateTap( application, 150.0f, 25.0f );
1994   // Render and notify
1995   application.SendNotification();
1996   application.Render();
1997
1998
1999   // Tap first to get the focus.
2000   TestGenerateTap( application, 1.0f, 25.0f );
2001
2002   // Render and notify
2003   application.SendNotification();
2004   application.Render();
2005
2006   // Long Press
2007   TestGenerateLongPress(application, 1.0f, 25.0f);
2008
2009   // Render and notify
2010   application.SendNotification();
2011   application.Render();
2012
2013   END_TEST;
2014 }
2015
2016 int utcDaliTextFieldEvent07(void)
2017 {
2018   ToolkitTestApplication application;
2019   tet_infoline(" utcDaliTextFieldEvent07");
2020
2021   // Checks Longpress to start edit mode
2022
2023   TextField field = TextField::New();
2024   DALI_TEST_CHECK( field );
2025   application.GetScene().Add( field );
2026   LoadMarkerImages(application, field);
2027   // Render and notify
2028   application.SendNotification();
2029   application.Render();
2030
2031   field.SetProperty( TextField::Property::TEXT, "Thisisalongtextforthesizeofthetextfield." );
2032   field.SetProperty( TextField::Property::POINT_SIZE, 10.f );
2033   field.SetProperty( Actor::Property::SIZE, Vector2( 300.f, 50.f ) );
2034   field.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT );
2035   field.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT );
2036   Property::Map propertyMap;
2037   propertyMap["PANEL_LAYOUT"] = InputMethod::PanelLayout::PASSWORD;
2038   field.SetProperty( TextField::Property::INPUT_METHOD_SETTINGS, propertyMap );
2039
2040   // Avoid a crash when core load gl resources.
2041   application.GetGlAbstraction().SetCheckFramebufferStatusResult( GL_FRAMEBUFFER_COMPLETE );
2042   // Render and notify
2043   application.SendNotification();
2044   application.Render();
2045
2046   // Long Press
2047   TestGenerateLongPress(application, 1.0f, 25.0f);
2048
2049   // Render and notify
2050   application.SendNotification();
2051   application.Render();
2052
2053   END_TEST;
2054 }
2055
2056 int utcDaliTextFieldEvent08(void)
2057 {
2058   ToolkitTestApplication application;
2059   tet_infoline(" utcDaliTextFieldEvent08");
2060
2061   Dali::Clipboard clipboard = Clipboard::Get();
2062   clipboard.SetItem("testTextFieldEvent");
2063
2064   // Checks Longpress when only place holder text
2065
2066   TextField field = TextField::New();
2067   DALI_TEST_CHECK( field );
2068   application.GetScene().Add( field );
2069   LoadMarkerImages(application, field);
2070   // Render and notify
2071   application.SendNotification();
2072   application.Render();
2073
2074   field.SetProperty( TextField::Property::PLACEHOLDER_TEXT, "Setting Placeholder Text" );
2075   field.SetProperty( TextField::Property::POINT_SIZE, 10.f );
2076   field.SetProperty( Actor::Property::SIZE, Vector2( 300.f, 50.f ) );
2077   field.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT );
2078   field.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT );
2079
2080   // Avoid a crash when core load gl resources.
2081   application.GetGlAbstraction().SetCheckFramebufferStatusResult( GL_FRAMEBUFFER_COMPLETE );
2082   // Render and notify
2083   application.SendNotification();
2084   application.Render();
2085
2086   // Long Press
2087   TestGenerateLongPress( application, 1.0f, 25.0f, 20 );
2088
2089   // Render and notify
2090   application.SendNotification();
2091   application.Render();
2092
2093   Wait(application, 500);
2094
2095   TestEndLongPress( application, 1.0f, 25.0f, 520 );
2096
2097   // Long Press
2098   TestGenerateLongPress( application, 1.0f, 25.0f, 600 );
2099
2100   // Render and notify
2101   application.Render();
2102
2103   Wait(application, 500);
2104
2105   Integration::Scene stage = application.GetScene();
2106   Layer layer = stage.GetRootLayer();
2107   Actor actor = layer.FindChildByName("optionPaste");
2108
2109   if (actor)
2110   {
2111     Vector3 worldPosition = actor.GetCurrentProperty< Vector3 >( Actor::Property::WORLD_POSITION );
2112     Vector2 halfStageSize = stage.GetSize() / 2.0f;
2113     Vector2 position(worldPosition.x + halfStageSize.width, worldPosition.y + halfStageSize.height);
2114
2115     Dali::Integration::TouchEvent event;
2116     event = Dali::Integration::TouchEvent();
2117     event.AddPoint( GetPointDownInside( position ) );
2118     application.ProcessEvent( event );
2119
2120     event = Dali::Integration::TouchEvent();
2121     event.AddPoint( GetPointUpInside( position ) );
2122     application.ProcessEvent( event );
2123   }
2124   DALI_TEST_EQUALS( field.GetProperty<std::string>( TextEditor::Property::TEXT ), std::string("testTextFieldEvent"), TEST_LOCATION );
2125
2126   END_TEST;
2127 }
2128
2129 int utcDaliTextFieldEvent09(void)
2130 {
2131   ToolkitTestApplication application;
2132   tet_infoline(" utcDaliTextFieldEvent09");
2133
2134   TextField field = TextField::New();
2135   DALI_TEST_CHECK( field );
2136   application.GetScene().Add( field );
2137   LoadMarkerImages(application, field);
2138   // Render and notify
2139   application.SendNotification();
2140   application.Render();
2141
2142   field.SetProperty( TextField::Property::TEXT, "Hello" );
2143   field.SetProperty( TextField::Property::POINT_SIZE, 10.f );
2144   field.SetProperty( Actor::Property::SIZE, Vector2( 300.f, 50.f ) );
2145   field.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT );
2146   field.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT );
2147
2148   // Avoid a crash when core load gl resources.
2149   application.GetGlAbstraction().SetCheckFramebufferStatusResult( GL_FRAMEBUFFER_COMPLETE );
2150
2151   // Create a tap event to touch the text field.
2152   TestGenerateTap( application, 150.0f, 25.0f );
2153   application.SendNotification();
2154   application.Render();
2155
2156   Property::Map map;
2157   map[ HiddenInput::Property::MODE ] = HiddenInput::Mode::HIDE_NONE;
2158   field.SetProperty( TextField::Property::HIDDEN_INPUT_SETTINGS, map );
2159   application.ProcessEvent( GenerateKey( "d", "", "d", 0, 0, 0, Integration::KeyEvent::DOWN, "d", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
2160   application.SendNotification();
2161   application.Render();
2162
2163   map[ HiddenInput::Property::MODE ] = HiddenInput::Mode::HIDE_ALL;
2164   map[ HiddenInput::Property::SUBSTITUTE_CHARACTER ] = 0x23;
2165   field.SetProperty( TextField::Property::HIDDEN_INPUT_SETTINGS, map );
2166   application.ProcessEvent( GenerateKey( "d", "", "d", 0, 0, 0, Integration::KeyEvent::DOWN, "d", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
2167   application.SendNotification();
2168   application.Render();
2169
2170   map[ HiddenInput::Property::MODE ] = HiddenInput::Mode::HIDE_COUNT;
2171   map[ HiddenInput::Property::SUBSTITUTE_COUNT ] = 2;
2172   field.SetProperty( TextField::Property::HIDDEN_INPUT_SETTINGS, map );
2173   for( unsigned int index = 0u; index < 5u; ++index )
2174   {
2175     application.ProcessEvent( GenerateKey( "d", "", "d", 0, 0, 0, Integration::KeyEvent::DOWN, "d", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
2176     application.SendNotification();
2177     application.Render();
2178   }
2179
2180   map[ HiddenInput::Property::MODE ] = HiddenInput::Mode::SHOW_COUNT;
2181   map[ HiddenInput::Property::SUBSTITUTE_COUNT ] = 2;
2182   field.SetProperty( TextField::Property::HIDDEN_INPUT_SETTINGS, map );
2183   for( unsigned int index = 0u; index < 5u; ++index )
2184   {
2185     application.ProcessEvent( GenerateKey( "d", "", "d", 0, 0, 0, Integration::KeyEvent::DOWN, "d", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
2186     application.SendNotification();
2187     application.Render();
2188   }
2189
2190   map[ HiddenInput::Property::MODE ] = HiddenInput::Mode::SHOW_LAST_CHARACTER;
2191   map[ HiddenInput::Property::SHOW_LAST_CHARACTER_DURATION ] = 0;
2192   field.SetProperty( TextField::Property::HIDDEN_INPUT_SETTINGS, map );
2193   application.ProcessEvent( GenerateKey( "", "", "", DALI_KEY_BACKSPACE, 0, 0, Integration::KeyEvent::DOWN, "", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
2194   application.SendNotification();
2195   application.Render();
2196   application.ProcessEvent( GenerateKey( "d", "", "d", 0, 0, 0, Integration::KeyEvent::DOWN, "d", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
2197   application.SendNotification();
2198   application.Render();
2199
2200   map[ HiddenInput::Property::SHOW_LAST_CHARACTER_DURATION ] = 100;
2201   field.SetProperty( TextField::Property::HIDDEN_INPUT_SETTINGS, map );
2202   application.ProcessEvent( GenerateKey( "d", "", "d", 0, 0, 0, Integration::KeyEvent::DOWN, "d", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
2203   application.SendNotification();
2204   application.Render();
2205
2206   Property::Map mapGet;
2207   mapGet = field.GetProperty<Property::Map>( TextField::Property::HIDDEN_INPUT_SETTINGS );
2208   DALI_TEST_EQUALS( map.Count(), mapGet.Count(), TEST_LOCATION );
2209   DALI_TEST_EQUALS( DaliTestCheckMaps( map, mapGet ), true, TEST_LOCATION );
2210   END_TEST;
2211 }
2212
2213
2214 int utcDaliTextFieldStyleWhilstSelected(void)
2215 {
2216   ToolkitTestApplication application;
2217   tet_infoline(" utcDaliTextFieldStyleWhilstSelected");
2218
2219   // Change font and styles whilst text is selected whilst word selected
2220
2221   TextField field = TextField::New();
2222   DALI_TEST_CHECK( field );
2223   application.GetScene().Add( field );
2224   LoadMarkerImages(application, field);
2225   // Render and notify
2226   application.SendNotification();
2227   application.Render();
2228
2229   field.SetProperty( TextField::Property::TEXT, "This is a long text for the size of the text-field." );
2230   field.SetProperty( TextField::Property::POINT_SIZE, 10.f );
2231   field.SetProperty( Actor::Property::SIZE, Vector2( 300.f, 50.f ) );
2232   field.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT );
2233   field.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT );
2234
2235   // Avoid a crash when core load gl resources.
2236   application.GetGlAbstraction().SetCheckFramebufferStatusResult( GL_FRAMEBUFFER_COMPLETE );
2237   // Render and notify
2238   application.SendNotification();
2239   application.Render();
2240
2241   // Create a tap event to touch the text field.
2242   TestGenerateTap( application, 150.0f, 25.0f );
2243   // Render and notify
2244   application.SendNotification();
2245   application.Render();
2246
2247
2248   // Tap first to get the focus.
2249   TestGenerateTap( application, 1.0f, 25.0f );
2250
2251   // Render and notify
2252   application.SendNotification();
2253   application.Render();
2254
2255   // Double tap to select a word.
2256   TestGenerateTap( application, 1.0f, 25.0f );
2257
2258   // Render and notify
2259   application.SendNotification();
2260   application.Render();
2261
2262   field.SetProperty( TextField::Property::INPUT_FONT_FAMILY, "Setting input font family" );
2263   DALI_TEST_EQUALS( field.GetProperty<std::string>( TextField::Property::INPUT_FONT_FAMILY ), "Setting input font family", TEST_LOCATION );
2264
2265   Property::Map fontStyleMapSet;
2266   Property::Map fontStyleMapGet;
2267
2268   fontStyleMapSet.Insert( "weight", "bold" );
2269   fontStyleMapSet.Insert( "slant", "italic" );
2270   field.SetProperty( TextField::Property::INPUT_FONT_STYLE, fontStyleMapSet );
2271
2272   fontStyleMapGet = field.GetProperty<Property::Map>( TextField::Property::INPUT_FONT_STYLE );
2273   DALI_TEST_EQUALS( fontStyleMapGet.Count(), fontStyleMapSet.Count(), TEST_LOCATION );
2274   DALI_TEST_EQUALS( DaliTestCheckMaps( fontStyleMapGet, fontStyleMapSet ), true, TEST_LOCATION );
2275
2276   fontStyleMapSet.Clear();
2277   fontStyleMapSet.Insert( "width", "expanded" );
2278   fontStyleMapSet.Insert( "slant", "italic" );
2279   field.SetProperty( TextField::Property::INPUT_FONT_STYLE, fontStyleMapSet );
2280
2281   fontStyleMapGet = field.GetProperty<Property::Map>( TextField::Property::INPUT_FONT_STYLE );
2282   DALI_TEST_EQUALS( fontStyleMapGet.Count(), fontStyleMapSet.Count(), TEST_LOCATION );
2283   DALI_TEST_EQUALS( DaliTestCheckMaps( fontStyleMapGet, fontStyleMapSet ), true, TEST_LOCATION );
2284
2285   field.SetProperty( TextField::Property::INPUT_POINT_SIZE, 12.f );
2286   DALI_TEST_EQUALS( field.GetProperty<float>( TextField::Property::INPUT_POINT_SIZE ), 12.f, Math::MACHINE_EPSILON_1000, TEST_LOCATION );
2287
2288   field.SetProperty( TextField::Property::TEXT_COLOR, Color::RED );
2289   DALI_TEST_EQUALS( field.GetProperty<Vector4>( TextField::Property::TEXT_COLOR ), Color::RED, TEST_LOCATION );
2290
2291   fontStyleMapSet.Clear();
2292   fontStyleMapSet.Insert( "weight", "bold" );
2293   fontStyleMapSet.Insert( "slant", "italic" );
2294
2295   field.SetProperty( TextField::Property::FONT_STYLE, fontStyleMapSet );
2296
2297   fontStyleMapGet = field.GetProperty<Property::Map>( TextField::Property::FONT_STYLE );
2298   DALI_TEST_EQUALS( fontStyleMapGet.Count(), fontStyleMapSet.Count(), TEST_LOCATION );
2299   DALI_TEST_EQUALS( DaliTestCheckMaps( fontStyleMapGet, fontStyleMapSet ), true, TEST_LOCATION );
2300
2301   fontStyleMapSet.Clear();
2302   fontStyleMapSet.Insert( "width", "expanded" );
2303
2304   field.SetProperty( TextField::Property::FONT_STYLE, fontStyleMapSet );
2305
2306   fontStyleMapGet = field.GetProperty<Property::Map>( TextField::Property::FONT_STYLE );
2307   DALI_TEST_EQUALS( fontStyleMapGet.Count(), fontStyleMapSet.Count(), TEST_LOCATION );
2308   DALI_TEST_EQUALS( DaliTestCheckMaps( fontStyleMapGet, fontStyleMapSet ), true, TEST_LOCATION );
2309
2310   // Press Escape to increase coverage
2311   application.ProcessEvent( GenerateKey( "", "", "", DALI_KEY_ESCAPE, 0, 0, Integration::KeyEvent::UP, "", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
2312   application.SendNotification();
2313   application.Render();
2314
2315   DALI_TEST_CHECK( !field.HasKeyInputFocus() );
2316
2317   END_TEST;
2318 }
2319
2320 int utcDaliTextFieldEscKeyLoseFocus(void)
2321 {
2322   ToolkitTestApplication application;
2323   tet_infoline(" utcDaliTextFieldEscKeyLoseFocus");
2324
2325   // Creates a tap event. After creating a tap event the text field should
2326   // have the focus and add text with key events should be possible.
2327
2328   TextField field = TextField::New();
2329   DALI_TEST_CHECK( field );
2330
2331   application.GetScene().Add( field );
2332
2333   field.SetProperty( Actor::Property::SIZE, Vector2( 300.f, 50.f ) );
2334   field.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT );
2335   field.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT );
2336
2337   // Avoid a crash when core load gl resources.
2338   application.GetGlAbstraction().SetCheckFramebufferStatusResult( GL_FRAMEBUFFER_COMPLETE );
2339
2340   // Render and notify
2341   application.SendNotification();
2342   application.Render();
2343
2344   // Add a key event but as the text field has not the focus it should do nothing.
2345   application.ProcessEvent( GenerateKey( "a", "", "a", KEY_A_CODE, 0, 0, Integration::KeyEvent::DOWN, "a", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
2346   application.ProcessEvent( GenerateKey( "a", "", "a", KEY_A_CODE, 0, 0, Integration::KeyEvent::UP, "a", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
2347
2348   // Render and notify
2349   application.SendNotification();
2350   application.Render();
2351
2352   DALI_TEST_EQUALS( field.GetProperty<std::string>( TextField::Property::TEXT ), std::string(""), TEST_LOCATION );
2353
2354   // Create a tap event to touch the text field.
2355   TestGenerateTap( application, 150.0f, 25.0f );
2356
2357   // Render and notify
2358   application.SendNotification();
2359   application.Render();
2360
2361   // Now the text field has the focus, so it can handle the key events.
2362   application.ProcessEvent( GenerateKey( "a", "", "a", KEY_A_CODE, 0, 0, Integration::KeyEvent::DOWN, "a", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
2363   application.ProcessEvent( GenerateKey( "a", "", "a", KEY_A_CODE, 0, 0, Integration::KeyEvent::UP, "a", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
2364   application.ProcessEvent( GenerateKey( "d", "", "d", KEY_D_CODE, 0, 0, Integration::KeyEvent::DOWN, "d", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
2365   application.ProcessEvent( GenerateKey( "d", "", "d", KEY_D_CODE, 0, 0, Integration::KeyEvent::UP, "d", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
2366
2367   // Render and notify
2368   application.SendNotification();
2369   application.Render();
2370
2371   DALI_TEST_EQUALS( field.GetProperty<std::string>( TextField::Property::TEXT ), std::string("ad"), TEST_LOCATION );
2372
2373   // Generate a Esc key event. The text field should lose the focus.
2374   application.ProcessEvent( GenerateKey( "", "", "", DALI_KEY_ESCAPE, 0, 0, Integration::KeyEvent::DOWN, "", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
2375   application.ProcessEvent( GenerateKey( "", "", "", DALI_KEY_ESCAPE, 0, 0, Integration::KeyEvent::UP, "", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
2376
2377   // Render and notify
2378   application.SendNotification();
2379   application.Render();
2380
2381   DALI_TEST_EQUALS( false, field.HasKeyInputFocus(), TEST_LOCATION );
2382
2383   // No more text should be introduced
2384   application.ProcessEvent( GenerateKey( "a", "", "a", KEY_A_CODE, 0, 0, Integration::KeyEvent::DOWN, "a", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
2385   application.ProcessEvent( GenerateKey( "a", "", "a", KEY_A_CODE, 0, 0, Integration::KeyEvent::UP, "a", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
2386
2387   // Render and notify
2388   application.SendNotification();
2389   application.Render();
2390
2391   DALI_TEST_EQUALS( field.GetProperty<std::string>( TextField::Property::TEXT ), std::string("ad"), TEST_LOCATION );
2392
2393   END_TEST;
2394 }
2395
2396 int utcDaliTextFieldSomeSpecialKeys(void)
2397 {
2398   ToolkitTestApplication application;
2399   tet_infoline(" utcDaliTextFieldSomeSpecialKeys");
2400
2401   // Checks some special keys when the text is selected.
2402
2403   TextField field = TextField::New();
2404   DALI_TEST_CHECK( field );
2405   application.GetScene().Add( field );
2406   LoadMarkerImages(application, field);
2407   // Render and notify
2408   application.SendNotification();
2409   application.Render();
2410
2411   const std::string longText( "This is a long text for the size of the text-field." );
2412
2413   field.SetProperty( TextField::Property::TEXT, longText );
2414   field.SetProperty( TextField::Property::POINT_SIZE, 10.f );
2415   field.SetProperty( Actor::Property::SIZE, Vector2( 300.f, 50.f ) );
2416   field.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT );
2417   field.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT );
2418
2419   // Avoid a crash when core load gl resources.
2420   application.GetGlAbstraction().SetCheckFramebufferStatusResult( GL_FRAMEBUFFER_COMPLETE );
2421   // Render and notify
2422   application.SendNotification();
2423   application.Render();
2424
2425   // Create a tap event to touch the text field.
2426   TestGenerateTap( application, 150.0f, 25.0f );
2427
2428   // Render and notify
2429   application.SendNotification();
2430   application.Render();
2431
2432   // Tap first to get the focus.
2433   TestGenerateTap( application, 1.0f, 25.0f );
2434
2435   // Render and notify
2436   application.SendNotification();
2437   application.Render();
2438
2439   // Double tap to select a word.
2440   TestGenerateTap( application, 1.0f, 25.0f );
2441
2442   // Render and notify
2443   application.SendNotification();
2444   application.Render();
2445
2446   // Generate a Esc key event. The text field should lose the focus.
2447   application.ProcessEvent( GenerateKey( "XF86PowerOff", "", "XF86PowerOff", DALI_KEY_POWER, 0, 0, Integration::KeyEvent::DOWN, "XF86PowerOff", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
2448   application.ProcessEvent( GenerateKey( "XF86PowerOff", "", "XF86PowerOff", DALI_KEY_POWER, 0, 0, Integration::KeyEvent::UP, "XF86PowerOff", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
2449
2450   // Render and notify
2451   application.SendNotification();
2452   application.Render();
2453
2454   // Generate a Esc key event. The text field should lose the focus.
2455   application.ProcessEvent( GenerateKey( "XF86Menu", "", "XF86Menu", DALI_KEY_MENU, 0, 0, Integration::KeyEvent::DOWN, "XF86Menu", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
2456   application.ProcessEvent( GenerateKey( "XF86Menu", "", "XF86Menu", DALI_KEY_MENU, 0, 0, Integration::KeyEvent::UP, "XF86Menu", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
2457
2458   // Render and notify
2459   application.SendNotification();
2460   application.Render();
2461
2462   // Generate a Esc key event. The text field should lose the focus.
2463   application.ProcessEvent( GenerateKey( "XF86Home", "", "XF86Home", DALI_KEY_HOME, 0, 0, Integration::KeyEvent::DOWN, "XF86Home", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
2464   application.ProcessEvent( GenerateKey( "XF86Home", "", "XF86Home", DALI_KEY_HOME, 0, 0, Integration::KeyEvent::UP, "XF86Home", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
2465
2466   // Render and notify
2467   application.SendNotification();
2468   application.Render();
2469
2470   // The text shouldn't be deleted.
2471   DALI_TEST_EQUALS( field.GetProperty<std::string>( TextField::Property::TEXT ), longText, TEST_LOCATION );
2472
2473   END_TEST;
2474 }
2475
2476 int utcDaliTextFieldSizeUpdate(void)
2477 {
2478   ToolkitTestApplication application;
2479   tet_infoline("utcDaliTextFieldSizeUpdate");
2480
2481   // Checks some special keys when the text is selected.
2482   TextField field = TextField::New();
2483   DALI_TEST_CHECK( field );
2484   application.GetScene().Add( field );
2485
2486   float previousHeight = 0.0f;
2487   float currentHeight = 0.0f;
2488   const float fieldWidth = 1920.0f;
2489
2490
2491   // "ㅁ" is bigger then "ኢ"
2492   field.SetProperty( Actor::Property::SIZE, Vector2( fieldWidth ,10.0f ) );
2493   field.SetResizePolicy( ResizePolicy::FIXED , Dimension::WIDTH );
2494   field.SetResizePolicy( ResizePolicy::DIMENSION_DEPENDENCY , Dimension::HEIGHT );
2495
2496   field.SetProperty( TextField::Property::TEXT, "ኢ");
2497   field.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT );
2498   field.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT );
2499
2500   field.SetProperty( Actor::Property::KEYBOARD_FOCUSABLE,true);
2501   KeyboardFocusManager::Get().SetCurrentFocusActor( field );
2502
2503   application.SendNotification();
2504   application.Render();
2505
2506   previousHeight = field.GetHeightForWidth( fieldWidth );
2507   DALI_TEST_EQUALS( previousHeight, field.GetProperty<float>( Actor::Property::SIZE_HEIGHT ) , TEST_LOCATION );
2508
2509   // Add  another script characters ( glyph height is defferent )
2510   application.ProcessEvent( GenerateKey( "ㅁ", "", "ㅁ", KEY_A_CODE, 0, 0, Integration::KeyEvent::DOWN, "ㅁ", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
2511   application.ProcessEvent( GenerateKey( "ㅁ", "", "ㅁ", KEY_A_CODE, 0, 0, Integration::KeyEvent::UP, "ㅁ", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
2512
2513   application.SendNotification();
2514   application.Render();
2515
2516   currentHeight = field.GetHeightForWidth( fieldWidth );
2517   DALI_TEST_EQUALS( currentHeight, field.GetProperty<float>( Actor::Property::SIZE_HEIGHT ), TEST_LOCATION );
2518   DALI_TEST_EQUALS( (previousHeight < currentHeight), true , TEST_LOCATION );
2519
2520   END_TEST;
2521 }
2522
2523 int utcDaliTextFieldExtremlyLargePointSize(void)
2524 {
2525   ToolkitTestApplication application;
2526   tet_infoline(" utcDaliTextFieldExtremlyLargePointSize");
2527
2528   TextField field = TextField::New();
2529
2530   field.SetProperty( TextField::Property::TEXT, "Text" );
2531   field.SetProperty( Actor::Property::SIZE, Vector2( 300.f, 50.f ) );
2532   field.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT );
2533   field.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT );
2534   application.GetScene().Add( field );
2535
2536   try
2537   {
2538     field.SetProperty( TextField::Property::POINT_SIZE, 160.0f );
2539     application.SendNotification();
2540     DALI_TEST_CHECK( field );
2541   }
2542   catch (...)
2543   {
2544     tet_result(TET_FAIL);
2545   }
2546   END_TEST;
2547 }
2548
2549 int UtcDaliTextFieldDefaultFontStylePropertyCoverage(void)
2550 {
2551   ToolkitTestApplication application;
2552   tet_infoline("UtcDaliTextFieldFontStylePorpertyCoverage");
2553   TextField field = TextField::New();
2554   DALI_TEST_CHECK( field );
2555   application.GetScene().Add( field );
2556
2557   Property::Map fontStyleMapGet;
2558
2559   fontStyleMapGet = field.GetProperty<Property::Map>( TextField::Property::FONT_STYLE );
2560
2561   Property::Value* weightValue = NULL;
2562   Property::Value* widthValue = NULL;
2563   Property::Value* slantValue = NULL;
2564   weightValue = fontStyleMapGet.Find( "weight" );
2565   widthValue = fontStyleMapGet.Find( "width" );
2566   slantValue = fontStyleMapGet.Find( "slant" );
2567   DALI_TEST_CHECK( !weightValue );
2568   DALI_TEST_CHECK( !widthValue );
2569   DALI_TEST_CHECK( !slantValue );
2570
2571   END_TEST;
2572 }
2573
2574 int UtcDaliTextFieldSettingPlaceholder(void)
2575 {
2576   ToolkitTestApplication application;
2577   tet_infoline("UtcDaliTextFieldSettingPlaceholder");
2578
2579   TextField field = TextField::New();
2580   DALI_TEST_CHECK( field );
2581   application.GetScene().Add( field );
2582
2583   // Check the placeholder property with pixel size
2584   Property::Map placeholderPixelSizeMapSet;
2585   Property::Map placeholderPixelSizeMapGet;
2586   Property::Map placeholderFontstyleMap;
2587   placeholderPixelSizeMapSet[ Text::PlaceHolder::Property::TEXT ] = "Setting Placeholder Text";
2588   placeholderPixelSizeMapSet[ Text::PlaceHolder::Property::TEXT_FOCUSED ] = "Setting Placeholder Text Focused";
2589   placeholderPixelSizeMapSet[ Text::PlaceHolder::Property::COLOR ] = Color::BLUE;
2590   placeholderPixelSizeMapSet[ Text::PlaceHolder::Property::FONT_FAMILY ] = "Arial";
2591   placeholderPixelSizeMapSet[ Text::PlaceHolder::Property::PIXEL_SIZE ] = 15.0f;
2592   placeholderPixelSizeMapSet[ Text::PlaceHolder::Property::ELLIPSIS ] = true;
2593
2594   placeholderFontstyleMap.Insert( "weight", "bold" );
2595   placeholderPixelSizeMapSet[ Text::PlaceHolder::Property::FONT_STYLE ] = placeholderFontstyleMap;
2596   field.SetProperty( TextField::Property::PLACEHOLDER, placeholderPixelSizeMapSet );
2597
2598   placeholderPixelSizeMapGet = field.GetProperty<Property::Map>( TextField::Property::PLACEHOLDER );
2599   DALI_TEST_EQUALS( placeholderPixelSizeMapGet.Count(), placeholderPixelSizeMapSet.Count(), TEST_LOCATION );
2600   DALI_TEST_EQUALS( DaliTestCheckMaps( placeholderPixelSizeMapGet, placeholderPixelSizeMapSet ), true, TEST_LOCATION );
2601
2602   // Check the placeholder property with point size
2603   Property::Map placeholderMapSet;
2604   Property::Map placeholderMapGet;
2605   placeholderMapSet[ Text::PlaceHolder::Property::TEXT ] = "Setting Placeholder Text";
2606   placeholderMapSet[ Text::PlaceHolder::Property::TEXT_FOCUSED ] = "Setting Placeholder Text Focused";
2607   placeholderMapSet[ Text::PlaceHolder::Property::COLOR ] = Color::RED;
2608   placeholderMapSet[ Text::PlaceHolder::Property::FONT_FAMILY ] = "Arial";
2609   placeholderMapSet[ Text::PlaceHolder::Property::POINT_SIZE ] = 12.0f;
2610   placeholderMapSet[ Text::PlaceHolder::Property::ELLIPSIS ] = false;
2611
2612   // Check the placeholder font style property
2613   placeholderFontstyleMap.Clear();
2614
2615   placeholderFontstyleMap.Insert( "weight", "bold" );
2616   placeholderFontstyleMap.Insert( "width", "condensed" );
2617   placeholderFontstyleMap.Insert( "slant", "italic" );
2618   placeholderMapSet[ Text::PlaceHolder::Property::FONT_STYLE ] = placeholderFontstyleMap;
2619   field.SetProperty( TextField::Property::PLACEHOLDER, placeholderMapSet );
2620
2621   placeholderMapGet = field.GetProperty<Property::Map>( TextField::Property::PLACEHOLDER );
2622   DALI_TEST_EQUALS( placeholderMapGet.Count(), placeholderMapSet.Count(), TEST_LOCATION );
2623   DALI_TEST_EQUALS( DaliTestCheckMaps( placeholderMapGet, placeholderMapSet ), true, TEST_LOCATION );
2624
2625   // Reset font style.
2626   placeholderFontstyleMap.Clear();
2627   placeholderFontstyleMap.Insert( "weight", "normal" );
2628   placeholderFontstyleMap.Insert( "slant", "oblique" );
2629   placeholderMapSet[ Text::PlaceHolder::Property::FONT_STYLE ] = placeholderFontstyleMap;
2630   field.SetProperty( TextField::Property::PLACEHOLDER, placeholderMapSet );
2631
2632   placeholderMapGet = field.GetProperty<Property::Map>( TextField::Property::PLACEHOLDER );
2633   DALI_TEST_EQUALS( placeholderMapGet.Count(), placeholderMapSet.Count(), TEST_LOCATION );
2634   DALI_TEST_EQUALS( DaliTestCheckMaps( placeholderMapGet, placeholderMapSet ), true, TEST_LOCATION );
2635
2636   placeholderFontstyleMap.Clear();
2637   placeholderFontstyleMap.Insert( "slant", "roman" );
2638   placeholderMapSet[ Text::PlaceHolder::Property::FONT_STYLE ] = placeholderFontstyleMap;
2639   field.SetProperty( TextField::Property::PLACEHOLDER, placeholderMapSet );
2640
2641   placeholderMapGet = field.GetProperty<Property::Map>( TextField::Property::PLACEHOLDER );
2642
2643   placeholderFontstyleMap.Clear();
2644   placeholderMapSet[ Text::PlaceHolder::Property::FONT_STYLE ] = placeholderFontstyleMap;
2645
2646   field.SetProperty( TextField::Property::PLACEHOLDER, placeholderMapSet );
2647   placeholderMapGet = field.GetProperty<Property::Map>( TextField::Property::PLACEHOLDER );
2648   DALI_TEST_EQUALS( placeholderMapGet.Count(), placeholderMapSet.Count(), TEST_LOCATION );
2649   DALI_TEST_EQUALS( DaliTestCheckMaps( placeholderMapGet, placeholderMapSet ), true, TEST_LOCATION );
2650
2651   END_TEST;
2652 }
2653
2654 int UtcDaliTextFieldSetPaddingProperty(void)
2655 {
2656   ToolkitTestApplication application;
2657   tet_infoline("UtcDaliTextFieldSetPaddingProperty\n");
2658
2659   TextField field = TextField::New();
2660   DALI_TEST_CHECK( field );
2661   field.SetProperty( Actor::Property::SIZE, Vector2( 300.f, 50.f ) );
2662   field.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT );
2663   field.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT );
2664   application.GetScene().Add( field );
2665
2666   application.SendNotification();
2667   application.Render();
2668
2669   Vector3 originalSize = field.GetNaturalSize();
2670
2671   field.SetProperty( Toolkit::Control::Property::PADDING, Extents( 10, 10, 10, 10 ) );
2672
2673   application.SendNotification();
2674   application.Render();
2675
2676   DALI_TEST_EQUALS( field.GetProperty<Extents>( Toolkit::Control::Property::PADDING ), Extents( 10, 10, 10, 10 ), TEST_LOCATION );
2677
2678   Vector3 paddingAddedSize = field.GetNaturalSize();
2679
2680   DALI_TEST_EQUALS( originalSize.width + 10 + 10 , paddingAddedSize.width, Math::MACHINE_EPSILON_1000, TEST_LOCATION );
2681
2682   DALI_TEST_EQUALS( originalSize.height + 10 + 10 , paddingAddedSize.height, Math::MACHINE_EPSILON_1000, TEST_LOCATION );
2683
2684   END_TEST;
2685 }
2686
2687 int UtcDaliTextFieldEnableShiftSelectionProperty(void)
2688 {
2689   ToolkitTestApplication application;
2690   tet_infoline("UtcDaliTextFieldEnableShiftSelectionProperty");
2691
2692   TextField field = TextField::New();
2693   DALI_TEST_CHECK( field );
2694   field.SetProperty( Actor::Property::SIZE, Vector2( 300.f, 50.f ) );
2695   field.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT );
2696   field.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT );
2697   application.GetScene().Add( field );
2698
2699   application.SendNotification();
2700   application.Render();
2701
2702   // The default value of ENABLE_SHIFT_SELECTION is 'true'.
2703   DALI_TEST_EQUALS( field.GetProperty<bool>( DevelTextField::Property::ENABLE_SHIFT_SELECTION ), true, TEST_LOCATION );
2704
2705   // Check the enable shift selection property
2706   field.SetProperty( DevelTextField::Property::ENABLE_SHIFT_SELECTION, false );
2707   DALI_TEST_EQUALS( field.GetProperty<bool>( DevelTextField::Property::ENABLE_SHIFT_SELECTION ), false, TEST_LOCATION );
2708
2709   application.SendNotification();
2710   application.Render();
2711
2712   END_TEST;
2713 }
2714
2715 int UtcDaliTextFieldEnableGrabHandleProperty(void)
2716 {
2717   ToolkitTestApplication application;
2718   tet_infoline("UtcDaliTextFieldEnableGrabHandleProperty");
2719
2720   TextField field = TextField::New();
2721   DALI_TEST_CHECK( field );
2722   field.SetProperty( Actor::Property::SIZE, Vector2( 300.f, 50.f ) );
2723   field.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT );
2724   field.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT );
2725   application.GetScene().Add( field );
2726
2727   application.SendNotification();
2728   application.Render();
2729
2730   // The default value of ENABLE_GRAB_HANDLE is 'true'.
2731   DALI_TEST_EQUALS( field.GetProperty<bool>( DevelTextField::Property::ENABLE_GRAB_HANDLE ), true, TEST_LOCATION );
2732
2733   // Check the enable grab handle property
2734   field.SetProperty( DevelTextField::Property::ENABLE_GRAB_HANDLE, false );
2735   DALI_TEST_EQUALS( field.GetProperty<bool>( DevelTextField::Property::ENABLE_GRAB_HANDLE ), false, TEST_LOCATION );
2736
2737   application.SendNotification();
2738   application.Render();
2739
2740   END_TEST;
2741 }
2742
2743 int UtcDaliTextFieldMatchSystemLanguageDirectionProperty(void)
2744 {
2745   ToolkitTestApplication application;
2746   tet_infoline("UtcDaliTextFieldMatchSystemLanguageDirectionProperty");
2747
2748   TextField field = TextField::New();
2749   DALI_TEST_CHECK( field );
2750   field.SetProperty( Actor::Property::SIZE, Vector2( 300.f, 50.f ) );
2751   field.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT );
2752   field.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT );
2753   application.GetScene().Add( field );
2754
2755   application.SendNotification();
2756   application.Render();
2757
2758   // The default value of MATCH_SYSTEM_LANGUAGE_DIRECTION is 'false'.
2759   DALI_TEST_EQUALS( field.GetProperty<bool>( DevelTextField::Property::MATCH_SYSTEM_LANGUAGE_DIRECTION ), false, TEST_LOCATION );
2760
2761   // Check the match system language direction property
2762   field.SetProperty( DevelTextField::Property::MATCH_SYSTEM_LANGUAGE_DIRECTION, true );
2763   DALI_TEST_EQUALS( field.GetProperty<bool>( DevelTextField::Property::MATCH_SYSTEM_LANGUAGE_DIRECTION ), true, TEST_LOCATION );
2764
2765   application.SendNotification();
2766   application.Render();
2767
2768   END_TEST;
2769 }
2770
2771 int utcDaliTextFieldLayoutDirectionCoverage(void)
2772 {
2773   ToolkitTestApplication application;
2774   tet_infoline(" utcDaliTextFieldLayoutDirectionCoverage");
2775
2776   // Creates a tap event. After creating a tap event the text field should
2777   // have the focus and add text with key events should be possible.
2778   TextField field = TextField::New();
2779   DALI_TEST_CHECK( field );
2780
2781   application.GetScene().Add( field );
2782
2783   field.SetProperty( Actor::Property::SIZE, Vector2( 300.f, 50.f ) );
2784   field.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT );
2785   field.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT );
2786
2787   // Avoid a crash when core load gl resources.
2788   application.GetGlAbstraction().SetCheckFramebufferStatusResult( GL_FRAMEBUFFER_COMPLETE );
2789
2790   // Render and notify
2791   application.SendNotification();
2792   application.Render();
2793
2794   // init direction for coverage
2795   // Set horizontal alignment END
2796   field.SetProperty( TextField::Property::HORIZONTAL_ALIGNMENT, "END");
2797
2798   // Create a tap event to touch the text field.
2799   TestGenerateTap( application, 150.0f, 25.0f );
2800
2801   // Render and notify
2802   application.SendNotification();
2803   application.Render();
2804
2805   // Set MATCH_SYSTEM_LANGUAGE_DIRECTION to true to use the layout direction.
2806   field.SetProperty( DevelTextField::Property::MATCH_SYSTEM_LANGUAGE_DIRECTION, true );
2807   field.SetProperty( Actor::Property::LAYOUT_DIRECTION, LayoutDirection::RIGHT_TO_LEFT );
2808
2809   // Set horizontal alignment BEGIN
2810   field.SetProperty( TextField::Property::HORIZONTAL_ALIGNMENT, "BEGIN");
2811
2812   // Create a tap event to touch the text field.
2813   TestGenerateTap( application, 150.0f, 25.0f );
2814
2815   // Render and notify
2816   application.SendNotification();
2817   application.Render();
2818
2819   // Set horizontal alignment CENTER
2820   field.SetProperty( TextField::Property::HORIZONTAL_ALIGNMENT, "CENTER");
2821
2822   // Create a tap event to touch the text field.
2823   TestGenerateTap( application, 150.0f, 25.0f );
2824
2825   // Render and notify
2826   application.SendNotification();
2827   application.Render();
2828
2829   // Set horizontal alignment END
2830   field.SetProperty( TextField::Property::HORIZONTAL_ALIGNMENT, "END");
2831
2832   // Create a tap event to touch the text field.
2833   TestGenerateTap( application, 150.0f, 25.0f );
2834
2835   // Render and notify
2836   application.SendNotification();
2837   application.Render();
2838
2839   // Generate a Esc key event. The text field should lose the focus.
2840   application.ProcessEvent( GenerateKey( "", "", "", DALI_KEY_ESCAPE, 0, 0, Integration::KeyEvent::DOWN, "", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
2841   application.ProcessEvent( GenerateKey( "", "", "", DALI_KEY_ESCAPE, 0, 0, Integration::KeyEvent::UP, "", DEFAULT_DEVICE_NAME, Device::Class::NONE, Device::Subclass::NONE ) );
2842
2843   // Render and notify
2844   application.SendNotification();
2845   application.Render();
2846
2847   DALI_TEST_EQUALS( false, field.HasKeyInputFocus(), TEST_LOCATION );
2848
2849   END_TEST;
2850 }
2851
2852 int UtcDaliTextFieldGetInputMethodContext(void)
2853 {
2854   ToolkitTestApplication application;
2855   tet_infoline("UtcDaliTextFieldGetInputMethodContext");
2856
2857   TextField field = TextField::New();
2858   DALI_TEST_CHECK( DevelTextField::GetInputMethodContext( field ) );
2859
2860   END_TEST;
2861 }
2862
2863 int UtcDaliTextFieldSelectWholeText(void)
2864 {
2865   ToolkitTestApplication application;
2866   tet_infoline(" UtcDaliTextFieldSelectWholeText ");
2867
2868   TextField textField = TextField::New();
2869
2870   application.GetScene().Add( textField );
2871
2872   textField.SetProperty( Actor::Property::SIZE, Vector2( 300.f, 50.f ) );
2873   textField.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT );
2874   textField.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT );
2875
2876   // Avoid a crash when core load gl resources.
2877   application.GetGlAbstraction().SetCheckFramebufferStatusResult( GL_FRAMEBUFFER_COMPLETE );
2878
2879   application.SendNotification();
2880   application.Render();
2881
2882   DALI_TEST_EQUALS( 1u, textField.GetChildCount(), TEST_LOCATION );
2883
2884   DevelTextField::SelectWholeText( textField );
2885
2886   application.SendNotification();
2887   application.Render();
2888
2889   // Nothing should have been selected. The number of children is still 1
2890   DALI_TEST_EQUALS( 1u, textField.GetChildCount(), TEST_LOCATION );
2891
2892   textField.SetProperty( TextField::Property::TEXT, "Hello world" );
2893
2894   application.SendNotification();
2895   application.Render();
2896
2897   DevelTextField::SelectWholeText( textField );
2898
2899   application.SendNotification();
2900   application.Render();
2901
2902   // Should be 2 children, the stencil and the layer
2903   DALI_TEST_EQUALS( 2u, textField.GetChildCount(), TEST_LOCATION );
2904
2905   // The offscreen root actor should have two actors: the renderer and the highlight actor.
2906   Actor stencil = textField.GetChildAt( 0u );
2907
2908   // The highlight actor is drawn first, so is the first actor in the list
2909   Renderer highlight = stencil.GetChildAt( 0u ).GetRendererAt( 0u );
2910   DALI_TEST_CHECK( highlight );
2911
2912   END_TEST;
2913 }
2914
2915 int UtcDaliTextFieldSelectNone(void)
2916 {
2917   ToolkitTestApplication application;
2918   tet_infoline(" UtcDaliTextFieldSelectWholeText ");
2919
2920   TextField textField = TextField::New();
2921
2922   application.GetScene().Add( textField );
2923
2924   textField.SetProperty( Actor::Property::SIZE, Vector2( 300.f, 50.f ) );
2925   textField.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT );
2926   textField.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT );
2927
2928   // Avoid a crash when core load gl resources.
2929   application.GetGlAbstraction().SetCheckFramebufferStatusResult( GL_FRAMEBUFFER_COMPLETE );
2930
2931   application.SendNotification();
2932   application.Render();
2933
2934   textField.SetProperty( TextField::Property::TEXT, "Hello world" );
2935
2936   application.SendNotification();
2937   application.Render();
2938
2939   // Nothing is selected
2940   std::string selectedText = textField.GetProperty( DevelTextField::Property::SELECTED_TEXT ).Get<std::string>();
2941   DALI_TEST_EQUALS( "", selectedText, TEST_LOCATION );
2942
2943   DevelTextField::SelectWholeText( textField );
2944
2945   application.SendNotification();
2946   application.Render();
2947
2948   // whole text is selected
2949   selectedText = textField.GetProperty( DevelTextField::Property::SELECTED_TEXT ).Get<std::string>();
2950   DALI_TEST_EQUALS( "Hello world", selectedText, TEST_LOCATION );
2951
2952   DevelTextField::SelectNone( textField );
2953
2954   application.SendNotification();
2955   application.Render();
2956
2957   // Nothing is selected
2958   selectedText = textField.GetProperty( DevelTextField::Property::SELECTED_TEXT ).Get<std::string>();
2959   DALI_TEST_EQUALS( "", selectedText, TEST_LOCATION );
2960
2961   END_TEST;
2962 }