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