dd460f29c3f6426e4025c88623cd49fb5635ea8a
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit-internal / utc-Dali-TextLabel-internal.cpp
1 /*
2  * Copyright (c) 2022 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 <stdlib.h>
19 #include <iostream>
20
21 #include <dali-toolkit-test-suite-utils.h>
22 #include <dali-toolkit/dali-toolkit.h>
23
24 #include <dali-toolkit/internal/controls/text-controls/text-label-impl.h>
25 #include <dali-toolkit/internal/text/rendering/text-typesetter.h>
26 #include <dali-toolkit/internal/text/rendering/view-model.h>
27 #include <dali-toolkit/internal/text/text-controller-impl.h>
28 #include <dali-toolkit/internal/text/text-controller.h>
29
30 using namespace Dali;
31 using namespace Toolkit;
32 using namespace Text;
33
34 int UtcDaliTextLabelMarkupUnderline(void)
35 {
36   ToolkitTestApplication application;
37   tet_infoline(" UtcDaliTextLabelMarkupUnderline ");
38
39   TextLabel textLabel = TextLabel::New();
40
41   application.GetScene().Add(textLabel);
42
43   textLabel.SetProperty(TextLabel::Property::TEXT, "<u>ABC</u>EF<u>GH</u>");
44   textLabel.SetProperty(TextLabel ::Property::ENABLE_MARKUP, true);
45
46   application.SendNotification();
47   application.Render();
48
49   uint32_t expectedNumberOfUnderlineRuns = 2u;
50
51   Toolkit::Internal::TextLabel& textLabelImpl         = GetImpl(textLabel);
52   const Text::Length            numberOfUnderlineRuns = textLabelImpl.GetTextController()->GetTextModel()->GetNumberOfUnderlineRuns();
53
54   DALI_TEST_EQUALS(numberOfUnderlineRuns, expectedNumberOfUnderlineRuns, TEST_LOCATION);
55
56   Vector<UnderlinedGlyphRun> underlineRuns;
57   underlineRuns.Resize(numberOfUnderlineRuns);
58   textLabelImpl.GetTextController()->GetTextModel()->GetUnderlineRuns(underlineRuns.Begin(), 0u, numberOfUnderlineRuns);
59
60   //ABC are underlined
61   DALI_TEST_EQUALS(underlineRuns[0u].glyphRun.glyphIndex, 0u, TEST_LOCATION);
62   DALI_TEST_EQUALS(underlineRuns[0u].glyphRun.numberOfGlyphs, 3u, TEST_LOCATION);
63
64   //GH are underlined
65   DALI_TEST_EQUALS(underlineRuns[1u].glyphRun.glyphIndex, 5u, TEST_LOCATION);
66   DALI_TEST_EQUALS(underlineRuns[1u].glyphRun.numberOfGlyphs, 2u, TEST_LOCATION);
67
68   END_TEST;
69 }
70
71 int UtcDaliTextLabelMarkupUnderlineAttributes(void)
72 {
73   ToolkitTestApplication application;
74   tet_infoline(" UtcDaliTextLabelMarkupUnderlineAttributes ");
75
76   TextLabel textLabel = TextLabel::New();
77
78   application.GetScene().Add(textLabel);
79
80   std::string testText =
81     "start<u>ABC1</u>then"
82     "<u type='solid'>ABC2</u>then"
83     "<u type='dashed'>ABC3</u>then"
84     "<u type='double'>ABC4</u>then"
85     "<u color='green'>ABC5</u>then"
86     "<u height='5.0f'>ABC6</u>then"
87     "<u type='dashed' dash-gap='3.0f'>ABC7</u>then"
88     "<u type='dashed' dash-width='4.0f'>ABC8</u>then"
89     "<u color='blue' type='dashed' height='4.0f' dash-gap='2.0f' dash-width='3.0f'>ABC9</u>end"
90
91     ;
92
93   textLabel.SetProperty(TextLabel::Property::TEXT, testText);
94   textLabel.SetProperty(TextLabel ::Property::ENABLE_MARKUP, true);
95
96   application.SendNotification();
97   application.Render();
98
99   const uint32_t expectedNumberOfUnderlineRuns = 9u;
100
101   Toolkit::Internal::TextLabel& textLabelImpl         = GetImpl(textLabel);
102   const Text::Length            numberOfUnderlineRuns = textLabelImpl.GetTextController()->GetTextModel()->GetNumberOfUnderlineRuns();
103
104   DALI_TEST_EQUALS(numberOfUnderlineRuns, expectedNumberOfUnderlineRuns, TEST_LOCATION);
105
106   Vector<UnderlinedGlyphRun> underlineRuns;
107   underlineRuns.Resize(numberOfUnderlineRuns);
108   textLabelImpl.GetTextController()->GetTextModel()->GetUnderlineRuns(underlineRuns.Begin(), 0u, numberOfUnderlineRuns);
109
110   struct DataOfCase
111   {
112     std::string              title;
113     GlyphIndex               glyphIndex;
114     Length                   numberOfGlyphs;
115     UnderlineStyleProperties properties;
116   };
117   DataOfCase data[] =
118     {
119       //<u>ABC1</u>
120       {"<u>ABC1</u>",
121        5u,
122        4u,
123        {
124          Text::Underline::SOLID,
125          Color::BLACK,
126          0u,
127          1u,
128          2u,
129          false,
130          false,
131          false,
132          false,
133          false,
134        }},
135
136       //<u type='solid'>ABC2</u>
137       {"<u type='solid'>ABC2</u>",
138        13u,
139        4u,
140        {
141          Text::Underline::SOLID,
142          Color::BLACK,
143          0u,
144          1u,
145          2u,
146          true,
147          false,
148          false,
149          false,
150          false,
151        }},
152
153       //<u type='dashed'>ABC3</u>
154       {"<u type='dashed'>ABC3</u>",
155        21u,
156        4u,
157        {
158          Text::Underline::DASHED,
159          Color::BLACK,
160          0u,
161          1u,
162          2u,
163          true,
164          false,
165          false,
166          false,
167          false,
168        }},
169
170       //<u type='double'>ABC4</u>
171       {"<u type='double'>ABC4</u>",
172        29u,
173        4u,
174        {
175          Text::Underline::DOUBLE,
176          Color::BLACK,
177          0u,
178          1u,
179          2u,
180          true,
181          false,
182          false,
183          false,
184          false,
185        }},
186
187       //<u color='green'>ABC5</u>
188       {"<u color='green'>ABC5</u>",
189        37u,
190        4u,
191        {
192          Text::Underline::SOLID,
193          Color::GREEN,
194          0u,
195          1u,
196          2u,
197          false,
198          true,
199          false,
200          false,
201          false,
202        }},
203
204       //<u height='5.0f'>ABC6</u>
205       {"<u height='5.0f'>ABC6</u>",
206        45u,
207        4u,
208        {
209          Text::Underline::SOLID,
210          Color::BLACK,
211          5u,
212          1u,
213          2u,
214          false,
215          false,
216          true,
217          false,
218          false,
219        }},
220
221       //<u type='dashed' dash-gap='3.0f'>ABC7</u>
222       {"<u type='dashed' dash-gap='3.0f'>ABC7</u>",
223        53u,
224        4u,
225        {
226          Text::Underline::DASHED,
227          Color::BLACK,
228          0u,
229          3u,
230          2u,
231          true,
232          false,
233          false,
234          true,
235          false,
236        }},
237
238       //<u type='dashed' dash-width='4.0f'>ABC8</u>
239       {"<u type='dashed' dash-width='4.0f'>ABC8</u>",
240        61u,
241        4u,
242        {
243          Text::Underline::DASHED,
244          Color::BLACK,
245          0u,
246          1u,
247          4u,
248          true,
249          false,
250          false,
251          false,
252          true,
253        }},
254
255       //<u color='blue' type='dashed' height='4.0f' dash-gap='2.0f' dash-width='3.0f'>
256       {"<u color='blue' type='dashed' height='4.0f' dash-gap='2.0f' dash-width='3.0f'>",
257        69u,
258        4u,
259        {
260          Text::Underline::DASHED,
261          Color::BLUE,
262          4u,
263          2u,
264          3u,
265          true,
266          true,
267          true,
268          true,
269          true,
270        }},
271
272     };
273
274   for(uint32_t i = 0; i < expectedNumberOfUnderlineRuns; i++)
275   {
276     tet_infoline(data[i].title.c_str());
277     DALI_TEST_EQUALS(underlineRuns[i].glyphRun.glyphIndex, data[i].glyphIndex, TEST_LOCATION);
278     DALI_TEST_EQUALS(underlineRuns[i].glyphRun.numberOfGlyphs, data[i].numberOfGlyphs, TEST_LOCATION);
279     DALI_TEST_CHECK(data[i].properties == underlineRuns[i].properties);
280   }
281
282   END_TEST;
283 }
284
285 int UtcDaliTextLabelMarkupSpanUnderline(void)
286 {
287   ToolkitTestApplication application;
288   tet_infoline(" UtcDaliTextLabelMarkupSpanUnderline ");
289
290   TextLabel textLabel = TextLabel::New();
291
292   application.GetScene().Add(textLabel);
293
294   std::string testText =
295     "start<span font-size='45' font-family='DejaVu Sans' font-width='condensed' font-slant='italic' text-color='red'>ABC1</span>then"
296     "<span font-size='45' font-family='DejaVu Sans' font-width='condensed' font-slant='italic' text-color='red' u-type='solid'>ABC2</span>then"
297     "<span font-size='45' font-family='DejaVu Sans' font-width='condensed' font-slant='italic' text-color='red' u-type='dashed'>ABC3</span>then"
298     "<span font-size='45' font-family='DejaVu Sans' font-width='condensed' font-slant='italic' text-color='red' u-type='double'>ABC4</span>then"
299     "<span font-size='45' font-family='DejaVu Sans' font-width='condensed' font-slant='italic' text-color='red' u-color='green'>ABC5</span>then"
300     "<span font-size='45' font-family='DejaVu Sans' font-width='condensed' font-slant='italic' text-color='red' u-height='5.0f'>ABC6</span>then"
301     "<span font-size='45' font-family='DejaVu Sans' font-width='condensed' font-slant='italic' text-color='red' u-type='dashed' u-dash-gap='3.0f'>ABC7</span>then"
302     "<span font-size='45' font-family='DejaVu Sans' font-width='condensed' font-slant='italic' text-color='red' u-type='dashed' u-dash-width='4.0f'>ABC8</span>then"
303     "<span font-size='45' font-family='DejaVu Sans' font-width='condensed' font-slant='italic' text-color='red' u-color='blue' u-type='dashed' u-height='4.0f' u-dash-gap='2.0f' u-dash-width='3.0f'>ABC9</span>end";
304
305   textLabel.SetProperty(TextLabel::Property::TEXT, testText);
306   textLabel.SetProperty(TextLabel ::Property::ENABLE_MARKUP, true);
307
308   application.SendNotification();
309   application.Render();
310
311   const uint32_t expectedNumberOfUnderlineRuns = 8u;
312
313   Toolkit::Internal::TextLabel& textLabelImpl         = GetImpl(textLabel);
314   const Text::Length            numberOfUnderlineRuns = textLabelImpl.GetTextController()->GetTextModel()->GetNumberOfUnderlineRuns();
315
316   DALI_TEST_EQUALS(numberOfUnderlineRuns, expectedNumberOfUnderlineRuns, TEST_LOCATION);
317
318   Vector<UnderlinedGlyphRun> underlineRuns;
319   underlineRuns.Resize(numberOfUnderlineRuns);
320   textLabelImpl.GetTextController()->GetTextModel()->GetUnderlineRuns(underlineRuns.Begin(), 0u, numberOfUnderlineRuns);
321
322   struct DataOfCase
323   {
324     std::string              title;
325     GlyphIndex               glyphIndex;
326     Length                   numberOfGlyphs;
327     UnderlineStyleProperties properties;
328   };
329   DataOfCase data[] =
330     {
331       //<u type='solid'>ABC2</u>
332       {"<span font-size='45' font-family='DejaVu Sans' font-width='condensed' font-slant='italic' text-color='red' u-type='solid'>ABC2</span>",
333        13u,
334        4u,
335        {
336          Text::Underline::SOLID,
337          Color::BLACK,
338          0u,
339          1u,
340          2u,
341          true,
342          false,
343          false,
344          false,
345          false,
346        }},
347
348       //<u type='dashed'>ABC3</u>
349       {"<span font-size='45' font-family='DejaVu Sans' font-width='condensed' font-slant='italic' text-color='red' u-type='dashed'>ABC3</span>",
350        21u,
351        4u,
352        {
353          Text::Underline::DASHED,
354          Color::BLACK,
355          0u,
356          1u,
357          2u,
358          true,
359          false,
360          false,
361          false,
362          false,
363        }},
364
365       //<u type='double'>ABC4</u>
366       {"<span font-size='45' font-family='DejaVu Sans' font-width='condensed' font-slant='italic' text-color='red' u-type='double'>ABC4</span>",
367        29u,
368        4u,
369        {
370          Text::Underline::DOUBLE,
371          Color::BLACK,
372          0u,
373          1u,
374          2u,
375          true,
376          false,
377          false,
378          false,
379          false,
380        }},
381
382       //<u color='green'>ABC5</u>
383       {"<span font-size='45' font-family='DejaVu Sans' font-width='condensed' font-slant='italic' text-color='red' u-color='green'>ABC5</span>",
384        37u,
385        4u,
386        {
387          Text::Underline::SOLID,
388          Color::GREEN,
389          0u,
390          1u,
391          2u,
392          false,
393          true,
394          false,
395          false,
396          false,
397        }},
398
399       //<u height='5.0f'>ABC6</u>
400       {"<span font-size='45' font-family='DejaVu Sans' font-width='condensed' font-slant='italic' text-color='red' u-height='5.0f'>ABC6</span>",
401        45u,
402        4u,
403        {
404          Text::Underline::SOLID,
405          Color::BLACK,
406          5u,
407          1u,
408          2u,
409          false,
410          false,
411          true,
412          false,
413          false,
414        }},
415
416       //<u type='dashed' dash-gap='3.0f'>ABC7</u>
417       {"<span font-size='45' font-family='DejaVu Sans' font-width='condensed' font-slant='italic' text-color='red' u-type='dashed' u-dash-gap='3.0f'>ABC7</span>",
418        53u,
419        4u,
420        {
421          Text::Underline::DASHED,
422          Color::BLACK,
423          0u,
424          3u,
425          2u,
426          true,
427          false,
428          false,
429          true,
430          false,
431        }},
432
433       //<u type='dashed' dash-width='4.0f'>ABC8</u>
434       {"<span font-size='45' font-family='DejaVu Sans' font-width='condensed' font-slant='italic' text-color='red' u-type='dashed' u-dash-width='4.0f'>ABC8</span>",
435        61u,
436        4u,
437        {
438          Text::Underline::DASHED,
439          Color::BLACK,
440          0u,
441          1u,
442          4u,
443          true,
444          false,
445          false,
446          false,
447          true,
448        }},
449
450       //<u color='blue' type='dashed' height='4.0f' dash-gap='2.0f' dash-width='3.0f'>
451       {"<span font-size='45' font-family='DejaVu Sans' font-width='condensed' font-slant='italic' text-color='red' u-color='blue' u-type='dashed' u-height='4.0f' u-dash-gap='2.0f' u-dash-width='3.0f'>ABC9</span>",
452        69u,
453        4u,
454        {
455          Text::Underline::DASHED,
456          Color::BLUE,
457          4u,
458          2u,
459          3u,
460          true,
461          true,
462          true,
463          true,
464          true,
465        }},
466
467     };
468
469   for(uint32_t i = 0; i < expectedNumberOfUnderlineRuns; i++)
470   {
471     tet_infoline(data[i].title.c_str());
472     DALI_TEST_EQUALS(underlineRuns[i].glyphRun.glyphIndex, data[i].glyphIndex, TEST_LOCATION);
473     DALI_TEST_EQUALS(underlineRuns[i].glyphRun.numberOfGlyphs, data[i].numberOfGlyphs, TEST_LOCATION);
474     DALI_TEST_CHECK(data[i].properties == underlineRuns[i].properties);
475   }
476
477   END_TEST;
478 }
479
480 int UtcDaliTextLabelMarkupNestedUnderlineTags(void)
481 {
482   ToolkitTestApplication application;
483   tet_infoline(" UtcDaliTextLabelMarkupNestedUnderlineTags ");
484
485   TextLabel textLabel = TextLabel::New();
486
487   application.GetScene().Add(textLabel);
488
489   std::string testText = "start<u height='5.0f' color='green' >AB<u color='blue' >XYZ</u>CDE</u>end";
490
491   textLabel.SetProperty(TextLabel::Property::TEXT, testText);
492   textLabel.SetProperty(TextLabel ::Property::ENABLE_MARKUP, true);
493
494   application.SendNotification();
495   application.Render();
496
497   const uint32_t expectedNumberOfUnderlineRuns = 2u;
498
499   Toolkit::Internal::TextLabel& textLabelImpl         = GetImpl(textLabel);
500   const Text::Length            numberOfUnderlineRuns = textLabelImpl.GetTextController()->GetTextModel()->GetNumberOfUnderlineRuns();
501
502   DALI_TEST_EQUALS(numberOfUnderlineRuns, expectedNumberOfUnderlineRuns, TEST_LOCATION);
503
504   Vector<UnderlinedGlyphRun> underlineRuns;
505   underlineRuns.Resize(numberOfUnderlineRuns);
506   textLabelImpl.GetTextController()->GetTextModel()->GetUnderlineRuns(underlineRuns.Begin(), 0u, numberOfUnderlineRuns);
507
508   struct DataOfCase
509   {
510     std::string              title;
511     GlyphIndex               glyphIndex;
512     Length                   numberOfGlyphs;
513     UnderlineStyleProperties properties;
514   };
515   DataOfCase data[] =
516     {
517       //Outter
518       {"<u height='5.0f' color='green' >AB<u color='blue' >XYZ</u>CDE</u>",
519        5u,
520        8u,
521        {
522          Text::Underline::SOLID,
523          Color::GREEN,
524          5u,
525          1u,
526          2u,
527          false,
528          true,
529          true,
530          false,
531          false,
532        }},
533
534       //Inner
535       {"<u color='blue' >XYZ</u>",
536        7u,
537        3u,
538        {
539          Text::Underline::SOLID,
540          Color::BLUE,
541          5u,
542          1u,
543          2u,
544          false,
545          true,
546          true,
547          false,
548          false,
549        }},
550
551     };
552
553   for(uint32_t i = 0; i < expectedNumberOfUnderlineRuns; i++)
554   {
555     tet_infoline(data[i].title.c_str());
556     DALI_TEST_EQUALS(underlineRuns[i].glyphRun.glyphIndex, data[i].glyphIndex, TEST_LOCATION);
557     DALI_TEST_EQUALS(underlineRuns[i].glyphRun.numberOfGlyphs, data[i].numberOfGlyphs, TEST_LOCATION);
558     DALI_TEST_CHECK(data[i].properties == underlineRuns[i].properties);
559   }
560
561   END_TEST;
562 }
563
564 int UtcDaliTextLabelBackgroundTag(void)
565 {
566   ToolkitTestApplication application;
567   tet_infoline("UtcDaliTextLabelBackgroundTag\n");
568
569   TextLabel label = TextLabel::New();
570   DALI_TEST_CHECK(label);
571
572   label.SetProperty(TextLabel ::Property::ENABLE_MARKUP, true);
573   label.SetProperty(TextLabel::Property::TEXT, "H<background color='red'>e</background> Worl<background color='yellow'>d</background>");
574   application.GetScene().Add(label);
575   application.SendNotification();
576   application.Render();
577
578   Toolkit::Internal::TextLabel& labelImpl                    = GetImpl(label);
579   const ColorIndex* const       backgroundColorIndicesBuffer = labelImpl.GetTextController()->GetTextModel()->GetBackgroundColorIndices();
580
581   DALI_TEST_CHECK(backgroundColorIndicesBuffer);
582
583   //default color
584   DALI_TEST_EQUALS(backgroundColorIndicesBuffer[0], 0u, TEST_LOCATION);
585
586   //red color
587   DALI_TEST_EQUALS(backgroundColorIndicesBuffer[1], 1u, TEST_LOCATION);
588
589   //yellow color
590   DALI_TEST_EQUALS(backgroundColorIndicesBuffer[7], 2u, TEST_LOCATION);
591
592   END_TEST;
593 }
594
595 int UtcDaliToolkitTextlabelEllipsisInternalAPIs(void)
596 {
597   ToolkitTestApplication application;
598   tet_infoline(" UtcDaliToolkitTextlabelEllipsisInternalAPIs ");
599   TextLabel textLabel = TextLabel::New();
600
601   Toolkit::Internal::TextLabel& textLabelImpl = GetImpl(textLabel);
602   const ModelInterface* const   textModel     = textLabelImpl.GetTextController()->GetTextModel();
603
604   tet_infoline(" UtcDaliToolkitTextlabelEllipsisInternalAPIs - ELLIPSIS Disabled");
605   textLabel.SetProperty(DevelTextLabel::Property::ELLIPSIS, false);
606   DALI_TEST_EQUALS(textLabel.GetProperty<bool>(DevelTextLabel::Property::ELLIPSIS), false, TEST_LOCATION);
607   DALI_TEST_CHECK(!(textModel->IsTextElideEnabled()));
608
609   tet_infoline(" UtcDaliToolkitTextlabelEllipsisInternalAPIs - ELLIPSIS Enabled");
610   textLabel.SetProperty(DevelTextLabel::Property::ELLIPSIS, true);
611   DALI_TEST_EQUALS(textLabel.GetProperty<bool>(DevelTextLabel::Property::ELLIPSIS), true, TEST_LOCATION);
612   DALI_TEST_CHECK(textModel->IsTextElideEnabled());
613
614   tet_infoline(" UtcDaliToolkitTextlabelEllipsisInternalAPIs - GetStartIndexOfElidedGlyphs Default");
615   DALI_TEST_EQUALS(textModel->GetStartIndexOfElidedGlyphs(), 0u, TEST_LOCATION);
616
617   tet_infoline(" UtcDaliToolkitTextlabelEllipsisInternalAPIs - GetEndIndexOfElidedGlyphs Default");
618   DALI_TEST_EQUALS(textModel->GetEndIndexOfElidedGlyphs(), 0u, TEST_LOCATION);
619
620   tet_infoline(" UtcDaliToolkitTextlabelEllipsisInternalAPIs - GetFirstMiddleIndexOfElidedGlyphs Default");
621   DALI_TEST_EQUALS(textModel->GetFirstMiddleIndexOfElidedGlyphs(), 0u, TEST_LOCATION);
622
623   tet_infoline(" UtcDaliToolkitTextlabelEllipsisInternalAPIs - GetSecondMiddleIndexOfElidedGlyphs Default");
624   DALI_TEST_EQUALS(textModel->GetSecondMiddleIndexOfElidedGlyphs(), 0u, TEST_LOCATION);
625
626   // Tests the rendering controller has been created.
627   TypesetterPtr typesetter = Typesetter::New(textModel);
628   DALI_TEST_CHECK(typesetter);
629
630   // Tests the view model has been created.
631   ViewModel* model = typesetter->GetViewModel();
632
633   tet_infoline(" UtcDaliToolkitTextlabelEllipsisInternalAPIs - IsTextElideEnabled ViewModel");
634   DALI_TEST_CHECK(model->IsTextElideEnabled());
635
636   tet_infoline(" UtcDaliToolkitTextlabelEllipsisInternalAPIs - GetStartIndexOfElidedGlyphs ViewModel");
637   DALI_TEST_EQUALS(model->GetStartIndexOfElidedGlyphs(), 0u, TEST_LOCATION);
638
639   tet_infoline(" UtcDaliToolkitTextlabelEllipsisInternalAPIs - GetEndIndexOfElidedGlyphs ViewModel");
640   DALI_TEST_EQUALS(model->GetEndIndexOfElidedGlyphs(), 0u, TEST_LOCATION);
641
642   tet_infoline(" UtcDaliToolkitTextlabelEllipsisInternalAPIs - GetFirstMiddleIndexOfElidedGlyphs ViewModel");
643   DALI_TEST_EQUALS(model->GetFirstMiddleIndexOfElidedGlyphs(), 0u, TEST_LOCATION);
644
645   tet_infoline(" UtcDaliToolkitTextlabelEllipsisInternalAPIs - GetSecondMiddleIndexOfElidedGlyphs ViewModel");
646   DALI_TEST_EQUALS(model->GetSecondMiddleIndexOfElidedGlyphs(), 0u, TEST_LOCATION);
647
648   END_TEST;
649 }
650 int UtcDaliTextLabelTextWithSpan(void)
651 {
652   ToolkitTestApplication application;
653   tet_infoline("UtcDaliTextLabelTextWithSpan\n");
654
655   TextLabel label = TextLabel::New();
656   DALI_TEST_CHECK(label);
657
658   label.SetProperty(TextLabel ::Property::ENABLE_MARKUP, true);
659   label.SetProperty(TextLabel::Property::TEXT, "Hello Span");
660   application.GetScene().Add(label);
661
662   application.SendNotification();
663   application.Render();
664
665   Vector3 originalSize = label.GetNaturalSize();
666   label.SetProperty(TextLabel::Property::TEXT, "H<span font-size='45' font-family='DejaVu Sans' font-width='condensed' font-slant='italic' text-color='red'>ello</span> Span");
667
668   application.SendNotification();
669   application.Render();
670
671   Vector3 spanSize = label.GetNaturalSize();
672
673   DALI_TEST_GREATER(spanSize.width, originalSize.width, TEST_LOCATION);
674
675   Toolkit::Internal::TextLabel& labelImpl           = GetImpl(label);
676   const ColorIndex* const       colorIndicesBuffer1 = labelImpl.GetTextController()->GetTextModel()->GetColorIndices();
677
678   DALI_TEST_CHECK(colorIndicesBuffer1);
679
680   //default color
681   DALI_TEST_EQUALS(colorIndicesBuffer1[0], 0u, TEST_LOCATION);
682
683   //span color
684   DALI_TEST_EQUALS(colorIndicesBuffer1[1], 1u, TEST_LOCATION);
685
686   //default color
687   DALI_TEST_EQUALS(colorIndicesBuffer1[6], 0u, TEST_LOCATION);
688
689   label.SetProperty(TextLabel::Property::TEXT, "<span font-size='45'>H</span>ello <span text-color='red'>S</span>pan");
690
691   application.SendNotification();
692   application.Render();
693
694   const ColorIndex* const colorIndicesBuffer2 = labelImpl.GetTextController()->GetTextModel()->GetColorIndices();
695
696   DALI_TEST_CHECK(colorIndicesBuffer2);
697
698   //default color
699   DALI_TEST_EQUALS(colorIndicesBuffer2[0], 0u, TEST_LOCATION);
700
701   //default color
702   DALI_TEST_EQUALS(colorIndicesBuffer2[1], 0u, TEST_LOCATION);
703
704   //span color
705   DALI_TEST_EQUALS(colorIndicesBuffer2[6], 1u, TEST_LOCATION);
706
707   //default color
708   DALI_TEST_EQUALS(colorIndicesBuffer2[7], 0u, TEST_LOCATION);
709
710   END_TEST;
711 }
712
713 int UtcDaliTextLabelMarkupStrikethrough(void)
714 {
715   ToolkitTestApplication application;
716   tet_infoline(" UtcDaliTextLabelMarkupStrikethrough ");
717
718   TextLabel textLabel = TextLabel::New();
719
720   application.GetScene().Add(textLabel);
721
722   textLabel.SetProperty(TextLabel::Property::TEXT, "<s color='red'>ABC</s>EF<s color='green'>GH</s>");
723   textLabel.SetProperty(TextLabel ::Property::ENABLE_MARKUP, true);
724
725   application.SendNotification();
726   application.Render();
727
728   uint32_t expectedNumberOfStrikethroughGlyphs = 2u;
729
730   Toolkit::Internal::TextLabel& textLabelImpl             = GetImpl(textLabel);
731   const Text::Length            numberOfStrikethroughRuns = textLabelImpl.GetTextController()->GetTextModel()->GetNumberOfStrikethroughRuns();
732
733   DALI_TEST_EQUALS(numberOfStrikethroughRuns, expectedNumberOfStrikethroughGlyphs, TEST_LOCATION);
734
735   Vector<StrikethroughGlyphRun> strikethroughRuns;
736   strikethroughRuns.Resize(numberOfStrikethroughRuns);
737   textLabelImpl.GetTextController()->GetTextModel()->GetStrikethroughRuns(strikethroughRuns.Begin(), 0u, numberOfStrikethroughRuns);
738
739   //ABC have strikethrough
740   DALI_TEST_EQUALS(strikethroughRuns[0u].glyphRun.glyphIndex, 0u, TEST_LOCATION);
741   DALI_TEST_EQUALS(strikethroughRuns[0u].glyphRun.numberOfGlyphs, 3u, TEST_LOCATION);
742   DALI_TEST_CHECK(strikethroughRuns[0u].isColorSet);
743   DALI_TEST_EQUALS(strikethroughRuns[0u].color.r, 1u, TEST_LOCATION);
744   DALI_TEST_EQUALS(strikethroughRuns[0u].color.g, 0u, TEST_LOCATION);
745   DALI_TEST_EQUALS(strikethroughRuns[0u].color.b, 0u, TEST_LOCATION);
746
747   //GH have strikethrough
748   DALI_TEST_EQUALS(strikethroughRuns[1u].glyphRun.glyphIndex, 5u, TEST_LOCATION);
749   DALI_TEST_EQUALS(strikethroughRuns[1u].glyphRun.numberOfGlyphs, 2u, TEST_LOCATION);
750   DALI_TEST_CHECK(strikethroughRuns[1u].isColorSet);
751   DALI_TEST_EQUALS(strikethroughRuns[1u].color.r, 0u, TEST_LOCATION);
752   DALI_TEST_EQUALS(strikethroughRuns[1u].color.g, 1u, TEST_LOCATION);
753   DALI_TEST_EQUALS(strikethroughRuns[1u].color.b, 0u, TEST_LOCATION);
754
755   END_TEST;
756 }
757
758 int UtcDaliTextLabelMarkupStrikethroughNoEndTag(void)
759 {
760   ToolkitTestApplication application;
761   tet_infoline(" UtcDaliTextLabelMarkupStrikethroughNoEndTag ");
762
763   TextLabel textLabel = TextLabel::New();
764
765   application.GetScene().Add(textLabel);
766
767   textLabel.SetProperty(TextLabel::Property::TEXT, "<s>ABC");
768   textLabel.SetProperty(TextLabel ::Property::ENABLE_MARKUP, true);
769
770   application.SendNotification();
771   application.Render();
772
773   uint32_t expectedNumberOfStrikethroughGlyphs = 0u;
774
775   Toolkit::Internal::TextLabel& textLabelImpl             = GetImpl(textLabel);
776   Text::Length                  numberOfStrikethroughRuns = textLabelImpl.GetTextController()->GetTextModel()->GetNumberOfStrikethroughRuns();
777
778   DALI_TEST_EQUALS(numberOfStrikethroughRuns, expectedNumberOfStrikethroughGlyphs, TEST_LOCATION);
779
780   END_TEST;
781 }
782
783 int UtcDaliTextLabelMarkupParagraphTag(void)
784
785 {
786   ToolkitTestApplication application;
787
788   tet_infoline(" UtcDaliTextLabelMarkupParagraphTag ");
789   TextLabel textLabel = TextLabel::New();
790
791   application.GetScene().Add(textLabel);
792
793   textLabel.SetProperty(TextLabel::Property::TEXT, "text one <p>Paragraph two</p> text three <p>Paragraph four</p> text five");
794   textLabel.SetProperty(TextLabel ::Property::ENABLE_MARKUP, true);
795   textLabel.SetProperty(TextLabel::Property::MULTI_LINE, true);
796
797   application.SendNotification();
798   application.Render();
799
800   uint32_t expectedNumberOfBoundedParagraphRuns = 2u;
801
802   Toolkit::Internal::TextLabel& textLabelImpl                = GetImpl(textLabel);
803   const Text::Length            numberOfBoundedParagraphRuns = textLabelImpl.GetTextController()->GetTextModel()->GetNumberOfBoundedParagraphRuns();
804   DALI_TEST_EQUALS(numberOfBoundedParagraphRuns, expectedNumberOfBoundedParagraphRuns, TEST_LOCATION);
805
806   const Vector<BoundedParagraphRun>& boundedParagraphRuns = textLabelImpl.GetTextController()->GetTextModel()->GetBoundedParagraphRuns();
807
808   //<p>Paragraph two</p>
809   DALI_TEST_EQUALS(boundedParagraphRuns[0u].characterRun.characterIndex, 10u, TEST_LOCATION);
810   DALI_TEST_EQUALS(boundedParagraphRuns[0u].characterRun.numberOfCharacters, 14u, TEST_LOCATION);
811
812   //<p>Paragraph four</p>
813   DALI_TEST_EQUALS(boundedParagraphRuns[1u].characterRun.characterIndex, 37u, TEST_LOCATION);
814   DALI_TEST_EQUALS(boundedParagraphRuns[1u].characterRun.numberOfCharacters, 15u, TEST_LOCATION);
815
816   END_TEST;
817 }
818
819 int UtcDaliTextLabelMarkupParagraphTagAlignAttribute(void)
820 {
821   ToolkitTestApplication application;
822   tet_infoline(" UtcDaliTextLabelMarkupParagraphTagAlignAttribute ");
823
824   // Apply alignment for each type on property level on three paragraphs and in-between text.
825   // Apply align in markup on the three paragraphs (each one a type).
826   // Using the same text to gain similar results from both the property level and the markup.
827   // Compare line alignment between the property level and the markup.
828
829   std::string textAlignOnPropertyLevel = "text outside<p>Paragraph end</p>text outside<p>Paragraph center</p>text outside<p>Paragraph begin</p><p>Paragraph property alignment</p>";
830   std::string textAlignInMarkup        = "text outside<p align='end'>Paragraph end</p>text outside<p align='center'>Paragraph center</p>text outside<p align='begin' >Paragraph begin</p><p>Paragraph property alignment</p>";
831
832   //Set size to avoid automatic eliding
833   Vector2 controllerSize = Vector2(1025, 1025);
834
835   TextLabel textLabelBeginAlign  = TextLabel::New();
836   TextLabel textLabelCenterAlign = TextLabel::New();
837   TextLabel textLabelEndAlign    = TextLabel::New();
838   TextLabel textLabelMultiAlign  = TextLabel::New();
839
840   application.GetScene().Add(textLabelBeginAlign);
841   application.GetScene().Add(textLabelCenterAlign);
842   application.GetScene().Add(textLabelEndAlign);
843   application.GetScene().Add(textLabelMultiAlign);
844
845   textLabelBeginAlign.SetProperty(TextLabel::Property::TEXT, textAlignOnPropertyLevel);
846   textLabelBeginAlign.SetProperty(TextLabel ::Property::ENABLE_MARKUP, true);
847   textLabelBeginAlign.SetProperty(TextLabel::Property::MULTI_LINE, true);
848   textLabelBeginAlign.SetProperty(TextLabel::Property::ELLIPSIS, false);
849   textLabelBeginAlign.SetProperty(TextLabel::Property::HORIZONTAL_ALIGNMENT, Dali::Toolkit::Text::HorizontalAlignment::BEGIN);
850   textLabelBeginAlign.SetProperty(Actor::Property::SIZE, controllerSize);
851
852   textLabelCenterAlign.SetProperty(TextLabel::Property::TEXT, textAlignOnPropertyLevel);
853   textLabelCenterAlign.SetProperty(TextLabel ::Property::ENABLE_MARKUP, true);
854   textLabelCenterAlign.SetProperty(TextLabel::Property::MULTI_LINE, true);
855   textLabelCenterAlign.SetProperty(TextLabel::Property::ELLIPSIS, false);
856   textLabelCenterAlign.SetProperty(TextLabel::Property::HORIZONTAL_ALIGNMENT, Dali::Toolkit::Text::HorizontalAlignment::CENTER);
857   textLabelCenterAlign.SetProperty(Actor::Property::SIZE, controllerSize);
858
859   textLabelEndAlign.SetProperty(TextLabel::Property::TEXT, textAlignOnPropertyLevel);
860   textLabelEndAlign.SetProperty(TextLabel ::Property::ENABLE_MARKUP, true);
861   textLabelEndAlign.SetProperty(TextLabel::Property::MULTI_LINE, true);
862   textLabelEndAlign.SetProperty(TextLabel::Property::ELLIPSIS, false);
863   textLabelEndAlign.SetProperty(TextLabel::Property::HORIZONTAL_ALIGNMENT, Dali::Toolkit::Text::HorizontalAlignment::END);
864   textLabelEndAlign.SetProperty(Actor::Property::SIZE, controllerSize);
865
866   textLabelMultiAlign.SetProperty(TextLabel::Property::TEXT, textAlignInMarkup);
867   textLabelMultiAlign.SetProperty(TextLabel ::Property::ENABLE_MARKUP, true);
868   textLabelMultiAlign.SetProperty(TextLabel::Property::MULTI_LINE, true);
869   textLabelMultiAlign.SetProperty(TextLabel::Property::ELLIPSIS, false);
870   textLabelMultiAlign.SetProperty(TextLabel::Property::HORIZONTAL_ALIGNMENT, Dali::Toolkit::Text::HorizontalAlignment::CENTER);
871   textLabelMultiAlign.SetProperty(Actor::Property::SIZE, controllerSize);
872
873   application.SendNotification();
874   application.Render();
875
876   uint32_t expectedNumberOfBoundedParagraphRuns = 4u;
877   uint32_t expectedNumberOfLines                = 7u;
878
879   Toolkit::Internal::TextLabel& textLabelMultiAlignImpl  = GetImpl(textLabelMultiAlign);
880   Toolkit::Internal::TextLabel& textLabelBeginAlignImpl  = GetImpl(textLabelBeginAlign);
881   Toolkit::Internal::TextLabel& textLabelCenterAlignImpl = GetImpl(textLabelCenterAlign);
882   Toolkit::Internal::TextLabel& textLabelEndAlignImpl    = GetImpl(textLabelEndAlign);
883
884   const Text::Length numberOfBoundedParagraphRuns = textLabelMultiAlignImpl.GetTextController()->GetTextModel()->GetNumberOfBoundedParagraphRuns();
885   DALI_TEST_EQUALS(numberOfBoundedParagraphRuns, expectedNumberOfBoundedParagraphRuns, TEST_LOCATION);
886
887   DALI_TEST_EQUALS(textLabelMultiAlignImpl.GetTextController()->GetTextModel()->GetNumberOfLines(), expectedNumberOfLines, TEST_LOCATION);
888   DALI_TEST_CHECK(textLabelMultiAlignImpl.GetTextController()->GetTextModel()->GetLines());
889
890   DALI_TEST_EQUALS(textLabelBeginAlignImpl.GetTextController()->GetTextModel()->GetNumberOfLines(), expectedNumberOfLines, TEST_LOCATION);
891   DALI_TEST_CHECK(textLabelBeginAlignImpl.GetTextController()->GetTextModel()->GetLines());
892
893   DALI_TEST_EQUALS(textLabelCenterAlignImpl.GetTextController()->GetTextModel()->GetNumberOfLines(), expectedNumberOfLines, TEST_LOCATION);
894   DALI_TEST_CHECK(textLabelCenterAlignImpl.GetTextController()->GetTextModel()->GetLines());
895
896   DALI_TEST_EQUALS(textLabelEndAlignImpl.GetTextController()->GetTextModel()->GetNumberOfLines(), expectedNumberOfLines, TEST_LOCATION);
897   DALI_TEST_CHECK(textLabelEndAlignImpl.GetTextController()->GetTextModel()->GetLines());
898
899   const uint32_t LINE_INDEX_ALIGN_END    = 1u;
900   const uint32_t LINE_INDEX_ALIGN_CENTER = 3u;
901   const uint32_t LINE_INDEX_ALIGN_BEGIN  = 5u;
902   const uint32_t LINE_INDEX_OUTSIDE_1    = 0u;
903   const uint32_t LINE_INDEX_OUTSIDE_2    = 2u;
904   const uint32_t LINE_INDEX_OUTSIDE_3    = 4u;
905   const uint32_t LINE_INDEX_PARAGRAPH    = 6u;
906
907   //<p align='end'>Paragraph end</p>
908   const LineRun& lineEndFromMultiAlign = *(textLabelMultiAlignImpl.GetTextController()->GetTextModel()->GetLines() + LINE_INDEX_ALIGN_END);
909   const LineRun& lineEndFromEndAlign   = *(textLabelEndAlignImpl.GetTextController()->GetTextModel()->GetLines() + LINE_INDEX_ALIGN_END);
910   tet_infoline(" UtcDaliTextLabelMarkupParagraphTagAlignAttribute - <p align='end'>Paragraph end</p>");
911   DALI_TEST_EQUALS(lineEndFromMultiAlign.alignmentOffset, lineEndFromEndAlign.alignmentOffset, TEST_LOCATION);
912   DALI_TEST_EQUALS(lineEndFromMultiAlign.width, lineEndFromEndAlign.width, TEST_LOCATION);
913
914   //<p align='center'>Paragraph center</p>
915   const LineRun& lineCenterFromMultiAlign = *(textLabelMultiAlignImpl.GetTextController()->GetTextModel()->GetLines() + LINE_INDEX_ALIGN_CENTER);
916   const LineRun& lineEndFromCenterAlign   = *(textLabelCenterAlignImpl.GetTextController()->GetTextModel()->GetLines() + LINE_INDEX_ALIGN_CENTER);
917   tet_infoline(" UtcDaliTextLabelMarkupParagraphTagAlignAttribute - <p align='center'>Paragraph center</p>");
918   DALI_TEST_EQUALS(lineCenterFromMultiAlign.alignmentOffset, lineEndFromCenterAlign.alignmentOffset, TEST_LOCATION);
919   DALI_TEST_EQUALS(lineCenterFromMultiAlign.width, lineEndFromCenterAlign.width, TEST_LOCATION);
920
921   //<p align='begin' >Paragraph begin</p>
922   const LineRun& lineBeginFromMultiAlign = *(textLabelMultiAlignImpl.GetTextController()->GetTextModel()->GetLines() + LINE_INDEX_ALIGN_BEGIN);
923   const LineRun& lineEndFromBeginAlign   = *(textLabelBeginAlignImpl.GetTextController()->GetTextModel()->GetLines() + LINE_INDEX_ALIGN_BEGIN);
924   tet_infoline(" UtcDaliTextLabelMarkupParagraphTagAlignAttribute - <p align='begin' >Paragraph begin</p>");
925   DALI_TEST_EQUALS(lineBeginFromMultiAlign.alignmentOffset, lineEndFromBeginAlign.alignmentOffset, TEST_LOCATION);
926   DALI_TEST_EQUALS(lineBeginFromMultiAlign.width, lineEndFromBeginAlign.width, TEST_LOCATION);
927
928   //text outside
929   const LineRun& lineOutsideOneFromMultiAlign  = *(textLabelMultiAlignImpl.GetTextController()->GetTextModel()->GetLines() + LINE_INDEX_OUTSIDE_1);
930   const LineRun& lineOutsideOneFromCenterAlign = *(textLabelCenterAlignImpl.GetTextController()->GetTextModel()->GetLines() + LINE_INDEX_OUTSIDE_1);
931   tet_infoline(" UtcDaliTextLabelMarkupParagraphTagAlignAttribute - text outside one");
932   DALI_TEST_EQUALS(lineOutsideOneFromMultiAlign.alignmentOffset, lineOutsideOneFromCenterAlign.alignmentOffset, TEST_LOCATION);
933   DALI_TEST_EQUALS(lineOutsideOneFromMultiAlign.width, lineOutsideOneFromCenterAlign.width, TEST_LOCATION);
934
935   const LineRun& lineOutsideTwoFromMultiAlign  = *(textLabelMultiAlignImpl.GetTextController()->GetTextModel()->GetLines() + LINE_INDEX_OUTSIDE_2);
936   const LineRun& lineOutsideTwoFromCenterAlign = *(textLabelCenterAlignImpl.GetTextController()->GetTextModel()->GetLines() + LINE_INDEX_OUTSIDE_2);
937   tet_infoline(" UtcDaliTextLabelMarkupParagraphTagAlignAttribute - text outside two");
938   DALI_TEST_EQUALS(lineOutsideTwoFromMultiAlign.alignmentOffset, lineOutsideTwoFromCenterAlign.alignmentOffset, TEST_LOCATION);
939   DALI_TEST_EQUALS(lineOutsideTwoFromMultiAlign.width, lineOutsideTwoFromCenterAlign.width, TEST_LOCATION);
940
941   const LineRun& lineOutsideThreeFromMultiAlign  = *(textLabelMultiAlignImpl.GetTextController()->GetTextModel()->GetLines() + LINE_INDEX_OUTSIDE_3);
942   const LineRun& lineOutsideThreeFromCenterAlign = *(textLabelCenterAlignImpl.GetTextController()->GetTextModel()->GetLines() + LINE_INDEX_OUTSIDE_3);
943   tet_infoline(" UtcDaliTextLabelMarkupParagraphTagAlignAttribute - text outside three");
944   DALI_TEST_EQUALS(lineOutsideThreeFromMultiAlign.alignmentOffset, lineOutsideThreeFromCenterAlign.alignmentOffset, TEST_LOCATION);
945   DALI_TEST_EQUALS(lineOutsideThreeFromMultiAlign.width, lineOutsideThreeFromCenterAlign.width, TEST_LOCATION);
946
947   const LineRun& lineParagraphFromMultiAlign  = *(textLabelMultiAlignImpl.GetTextController()->GetTextModel()->GetLines() + LINE_INDEX_PARAGRAPH);
948   const LineRun& lineParagraphFromCenterAlign = *(textLabelCenterAlignImpl.GetTextController()->GetTextModel()->GetLines() + LINE_INDEX_PARAGRAPH);
949   tet_infoline(" UtcDaliTextLabelMarkupParagraphTagAlignAttribute - <p>Paragraph property alignment</p>");
950   DALI_TEST_EQUALS(lineParagraphFromMultiAlign.alignmentOffset, lineParagraphFromCenterAlign.alignmentOffset, TEST_LOCATION);
951   DALI_TEST_EQUALS(lineParagraphFromMultiAlign.width, lineParagraphFromCenterAlign.width, TEST_LOCATION);
952
953   END_TEST;
954 }