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