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