Support span tag: background
[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 UtcDaliTextLabelSpanBackgroundTag(void)
596 {
597   ToolkitTestApplication application;
598   tet_infoline("UtcDaliTextLabelSpanBackgroundTag\n");
599
600   TextLabel label = TextLabel::New();
601   DALI_TEST_CHECK(label);
602
603   label.SetProperty(TextLabel ::Property::ENABLE_MARKUP, true);
604   label.SetProperty(TextLabel::Property::TEXT, "H<span background-color='red'>e</span> Worl<span background-color='yellow'>d</span>");
605   application.GetScene().Add(label);
606   application.SendNotification();
607   application.Render();
608
609   Toolkit::Internal::TextLabel& labelImpl                    = GetImpl(label);
610   const ColorIndex* const       backgroundColorIndicesBuffer = labelImpl.GetTextController()->GetTextModel()->GetBackgroundColorIndices();
611
612   DALI_TEST_CHECK(backgroundColorIndicesBuffer);
613
614   //default color
615   DALI_TEST_EQUALS(backgroundColorIndicesBuffer[0], 0u, TEST_LOCATION);
616
617   //red color
618   DALI_TEST_EQUALS(backgroundColorIndicesBuffer[1], 1u, TEST_LOCATION);
619
620   //yellow color
621   DALI_TEST_EQUALS(backgroundColorIndicesBuffer[7], 2u, TEST_LOCATION);
622
623   END_TEST;
624 }
625
626 int UtcDaliToolkitTextlabelEllipsisInternalAPIs(void)
627 {
628   ToolkitTestApplication application;
629   tet_infoline(" UtcDaliToolkitTextlabelEllipsisInternalAPIs ");
630   TextLabel textLabel = TextLabel::New();
631
632   Toolkit::Internal::TextLabel& textLabelImpl = GetImpl(textLabel);
633   const ModelInterface* const   textModel     = textLabelImpl.GetTextController()->GetTextModel();
634
635   tet_infoline(" UtcDaliToolkitTextlabelEllipsisInternalAPIs - ELLIPSIS Disabled");
636   textLabel.SetProperty(DevelTextLabel::Property::ELLIPSIS, false);
637   DALI_TEST_EQUALS(textLabel.GetProperty<bool>(DevelTextLabel::Property::ELLIPSIS), false, TEST_LOCATION);
638   DALI_TEST_CHECK(!(textModel->IsTextElideEnabled()));
639
640   tet_infoline(" UtcDaliToolkitTextlabelEllipsisInternalAPIs - ELLIPSIS Enabled");
641   textLabel.SetProperty(DevelTextLabel::Property::ELLIPSIS, true);
642   DALI_TEST_EQUALS(textLabel.GetProperty<bool>(DevelTextLabel::Property::ELLIPSIS), true, TEST_LOCATION);
643   DALI_TEST_CHECK(textModel->IsTextElideEnabled());
644
645   tet_infoline(" UtcDaliToolkitTextlabelEllipsisInternalAPIs - GetStartIndexOfElidedGlyphs Default");
646   DALI_TEST_EQUALS(textModel->GetStartIndexOfElidedGlyphs(), 0u, TEST_LOCATION);
647
648   tet_infoline(" UtcDaliToolkitTextlabelEllipsisInternalAPIs - GetEndIndexOfElidedGlyphs Default");
649   DALI_TEST_EQUALS(textModel->GetEndIndexOfElidedGlyphs(), 0u, TEST_LOCATION);
650
651   tet_infoline(" UtcDaliToolkitTextlabelEllipsisInternalAPIs - GetFirstMiddleIndexOfElidedGlyphs Default");
652   DALI_TEST_EQUALS(textModel->GetFirstMiddleIndexOfElidedGlyphs(), 0u, TEST_LOCATION);
653
654   tet_infoline(" UtcDaliToolkitTextlabelEllipsisInternalAPIs - GetSecondMiddleIndexOfElidedGlyphs Default");
655   DALI_TEST_EQUALS(textModel->GetSecondMiddleIndexOfElidedGlyphs(), 0u, TEST_LOCATION);
656
657   // Tests the rendering controller has been created.
658   TypesetterPtr typesetter = Typesetter::New(textModel);
659   DALI_TEST_CHECK(typesetter);
660
661   // Tests the view model has been created.
662   ViewModel* model = typesetter->GetViewModel();
663
664   tet_infoline(" UtcDaliToolkitTextlabelEllipsisInternalAPIs - IsTextElideEnabled ViewModel");
665   DALI_TEST_CHECK(model->IsTextElideEnabled());
666
667   tet_infoline(" UtcDaliToolkitTextlabelEllipsisInternalAPIs - GetStartIndexOfElidedGlyphs ViewModel");
668   DALI_TEST_EQUALS(model->GetStartIndexOfElidedGlyphs(), 0u, TEST_LOCATION);
669
670   tet_infoline(" UtcDaliToolkitTextlabelEllipsisInternalAPIs - GetEndIndexOfElidedGlyphs ViewModel");
671   DALI_TEST_EQUALS(model->GetEndIndexOfElidedGlyphs(), 0u, TEST_LOCATION);
672
673   tet_infoline(" UtcDaliToolkitTextlabelEllipsisInternalAPIs - GetFirstMiddleIndexOfElidedGlyphs ViewModel");
674   DALI_TEST_EQUALS(model->GetFirstMiddleIndexOfElidedGlyphs(), 0u, TEST_LOCATION);
675
676   tet_infoline(" UtcDaliToolkitTextlabelEllipsisInternalAPIs - GetSecondMiddleIndexOfElidedGlyphs ViewModel");
677   DALI_TEST_EQUALS(model->GetSecondMiddleIndexOfElidedGlyphs(), 0u, TEST_LOCATION);
678
679   END_TEST;
680 }
681 int UtcDaliTextLabelTextWithSpan(void)
682 {
683   ToolkitTestApplication application;
684   tet_infoline("UtcDaliTextLabelTextWithSpan\n");
685
686   TextLabel label = TextLabel::New();
687   DALI_TEST_CHECK(label);
688
689   label.SetProperty(TextLabel ::Property::ENABLE_MARKUP, true);
690   label.SetProperty(TextLabel::Property::TEXT, "Hello Span");
691   application.GetScene().Add(label);
692
693   application.SendNotification();
694   application.Render();
695
696   Vector3 originalSize = label.GetNaturalSize();
697   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");
698
699   application.SendNotification();
700   application.Render();
701
702   Vector3 spanSize = label.GetNaturalSize();
703
704   DALI_TEST_GREATER(spanSize.width, originalSize.width, TEST_LOCATION);
705
706   Toolkit::Internal::TextLabel& labelImpl           = GetImpl(label);
707   const ColorIndex* const       colorIndicesBuffer1 = labelImpl.GetTextController()->GetTextModel()->GetColorIndices();
708
709   DALI_TEST_CHECK(colorIndicesBuffer1);
710
711   //default color
712   DALI_TEST_EQUALS(colorIndicesBuffer1[0], 0u, TEST_LOCATION);
713
714   //span color
715   DALI_TEST_EQUALS(colorIndicesBuffer1[1], 1u, TEST_LOCATION);
716
717   //default color
718   DALI_TEST_EQUALS(colorIndicesBuffer1[6], 0u, TEST_LOCATION);
719
720   label.SetProperty(TextLabel::Property::TEXT, "<span font-size='45'>H</span>ello <span text-color='red'>S</span>pan");
721
722   application.SendNotification();
723   application.Render();
724
725   const ColorIndex* const colorIndicesBuffer2 = labelImpl.GetTextController()->GetTextModel()->GetColorIndices();
726
727   DALI_TEST_CHECK(colorIndicesBuffer2);
728
729   //default color
730   DALI_TEST_EQUALS(colorIndicesBuffer2[0], 0u, TEST_LOCATION);
731
732   //default color
733   DALI_TEST_EQUALS(colorIndicesBuffer2[1], 0u, TEST_LOCATION);
734
735   //span color
736   DALI_TEST_EQUALS(colorIndicesBuffer2[6], 1u, TEST_LOCATION);
737
738   //default color
739   DALI_TEST_EQUALS(colorIndicesBuffer2[7], 0u, TEST_LOCATION);
740
741   END_TEST;
742 }
743
744 int UtcDaliTextLabelMarkupStrikethrough(void)
745 {
746   ToolkitTestApplication application;
747   tet_infoline(" UtcDaliTextLabelMarkupStrikethrough ");
748
749   TextLabel textLabel = TextLabel::New();
750
751   application.GetScene().Add(textLabel);
752
753   textLabel.SetProperty(TextLabel::Property::TEXT, "<s color='red'>ABC</s>EF<s color='green'>GH</s>");
754   textLabel.SetProperty(TextLabel ::Property::ENABLE_MARKUP, true);
755
756   application.SendNotification();
757   application.Render();
758
759   uint32_t expectedNumberOfStrikethroughGlyphs = 2u;
760
761   Toolkit::Internal::TextLabel& textLabelImpl             = GetImpl(textLabel);
762   const Text::Length            numberOfStrikethroughRuns = textLabelImpl.GetTextController()->GetTextModel()->GetNumberOfStrikethroughRuns();
763
764   DALI_TEST_EQUALS(numberOfStrikethroughRuns, expectedNumberOfStrikethroughGlyphs, TEST_LOCATION);
765
766   Vector<StrikethroughGlyphRun> strikethroughRuns;
767   strikethroughRuns.Resize(numberOfStrikethroughRuns);
768   textLabelImpl.GetTextController()->GetTextModel()->GetStrikethroughRuns(strikethroughRuns.Begin(), 0u, numberOfStrikethroughRuns);
769
770   //ABC have strikethrough
771   DALI_TEST_EQUALS(strikethroughRuns[0u].glyphRun.glyphIndex, 0u, TEST_LOCATION);
772   DALI_TEST_EQUALS(strikethroughRuns[0u].glyphRun.numberOfGlyphs, 3u, TEST_LOCATION);
773   DALI_TEST_CHECK(strikethroughRuns[0u].isColorSet);
774   DALI_TEST_EQUALS(strikethroughRuns[0u].color.r, 1u, TEST_LOCATION);
775   DALI_TEST_EQUALS(strikethroughRuns[0u].color.g, 0u, TEST_LOCATION);
776   DALI_TEST_EQUALS(strikethroughRuns[0u].color.b, 0u, TEST_LOCATION);
777
778   //GH have strikethrough
779   DALI_TEST_EQUALS(strikethroughRuns[1u].glyphRun.glyphIndex, 5u, TEST_LOCATION);
780   DALI_TEST_EQUALS(strikethroughRuns[1u].glyphRun.numberOfGlyphs, 2u, TEST_LOCATION);
781   DALI_TEST_CHECK(strikethroughRuns[1u].isColorSet);
782   DALI_TEST_EQUALS(strikethroughRuns[1u].color.r, 0u, TEST_LOCATION);
783   DALI_TEST_EQUALS(strikethroughRuns[1u].color.g, 1u, TEST_LOCATION);
784   DALI_TEST_EQUALS(strikethroughRuns[1u].color.b, 0u, TEST_LOCATION);
785
786   END_TEST;
787 }
788
789 int UtcDaliTextLabelMarkupStrikethroughNoEndTag(void)
790 {
791   ToolkitTestApplication application;
792   tet_infoline(" UtcDaliTextLabelMarkupStrikethroughNoEndTag ");
793
794   TextLabel textLabel = TextLabel::New();
795
796   application.GetScene().Add(textLabel);
797
798   textLabel.SetProperty(TextLabel::Property::TEXT, "<s>ABC");
799   textLabel.SetProperty(TextLabel ::Property::ENABLE_MARKUP, true);
800
801   application.SendNotification();
802   application.Render();
803
804   uint32_t expectedNumberOfStrikethroughGlyphs = 0u;
805
806   Toolkit::Internal::TextLabel& textLabelImpl             = GetImpl(textLabel);
807   Text::Length                  numberOfStrikethroughRuns = textLabelImpl.GetTextController()->GetTextModel()->GetNumberOfStrikethroughRuns();
808
809   DALI_TEST_EQUALS(numberOfStrikethroughRuns, expectedNumberOfStrikethroughGlyphs, TEST_LOCATION);
810
811   END_TEST;
812 }
813
814 int UtcDaliTextLabelMarkupParagraphTag(void)
815
816 {
817   ToolkitTestApplication application;
818
819   tet_infoline(" UtcDaliTextLabelMarkupParagraphTag ");
820   TextLabel textLabel = TextLabel::New();
821
822   application.GetScene().Add(textLabel);
823
824   textLabel.SetProperty(TextLabel::Property::TEXT, "text one <p>Paragraph two</p> text three <p>Paragraph four</p> text five");
825   textLabel.SetProperty(TextLabel ::Property::ENABLE_MARKUP, true);
826   textLabel.SetProperty(TextLabel::Property::MULTI_LINE, true);
827
828   application.SendNotification();
829   application.Render();
830
831   uint32_t expectedNumberOfBoundedParagraphRuns = 2u;
832
833   Toolkit::Internal::TextLabel& textLabelImpl                = GetImpl(textLabel);
834   const Text::Length            numberOfBoundedParagraphRuns = textLabelImpl.GetTextController()->GetTextModel()->GetNumberOfBoundedParagraphRuns();
835   DALI_TEST_EQUALS(numberOfBoundedParagraphRuns, expectedNumberOfBoundedParagraphRuns, TEST_LOCATION);
836
837   const Vector<BoundedParagraphRun>& boundedParagraphRuns = textLabelImpl.GetTextController()->GetTextModel()->GetBoundedParagraphRuns();
838
839   //<p>Paragraph two</p>
840   DALI_TEST_EQUALS(boundedParagraphRuns[0u].characterRun.characterIndex, 10u, TEST_LOCATION);
841   DALI_TEST_EQUALS(boundedParagraphRuns[0u].characterRun.numberOfCharacters, 14u, TEST_LOCATION);
842
843   //<p>Paragraph four</p>
844   DALI_TEST_EQUALS(boundedParagraphRuns[1u].characterRun.characterIndex, 37u, TEST_LOCATION);
845   DALI_TEST_EQUALS(boundedParagraphRuns[1u].characterRun.numberOfCharacters, 15u, TEST_LOCATION);
846
847   END_TEST;
848 }
849
850 int UtcDaliTextLabelMarkupParagraphTagAlignAttribute(void)
851 {
852   ToolkitTestApplication application;
853   tet_infoline(" UtcDaliTextLabelMarkupParagraphTagAlignAttribute ");
854
855   // Apply alignment for each type on property level on three paragraphs and in-between text.
856   // Apply align in markup on the three paragraphs (each one a type).
857   // Using the same text to gain similar results from both the property level and the markup.
858   // Compare line alignment between the property level and the markup.
859
860   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>";
861   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>";
862
863   //Set size to avoid automatic eliding
864   Vector2 controllerSize = Vector2(1025, 1025);
865
866   TextLabel textLabelBeginAlign  = TextLabel::New();
867   TextLabel textLabelCenterAlign = TextLabel::New();
868   TextLabel textLabelEndAlign    = TextLabel::New();
869   TextLabel textLabelMultiAlign  = TextLabel::New();
870
871   application.GetScene().Add(textLabelBeginAlign);
872   application.GetScene().Add(textLabelCenterAlign);
873   application.GetScene().Add(textLabelEndAlign);
874   application.GetScene().Add(textLabelMultiAlign);
875
876   textLabelBeginAlign.SetProperty(TextLabel::Property::TEXT, textAlignOnPropertyLevel);
877   textLabelBeginAlign.SetProperty(TextLabel ::Property::ENABLE_MARKUP, true);
878   textLabelBeginAlign.SetProperty(TextLabel::Property::MULTI_LINE, true);
879   textLabelBeginAlign.SetProperty(TextLabel::Property::ELLIPSIS, false);
880   textLabelBeginAlign.SetProperty(TextLabel::Property::HORIZONTAL_ALIGNMENT, Dali::Toolkit::Text::HorizontalAlignment::BEGIN);
881   textLabelBeginAlign.SetProperty(Actor::Property::SIZE, controllerSize);
882
883   textLabelCenterAlign.SetProperty(TextLabel::Property::TEXT, textAlignOnPropertyLevel);
884   textLabelCenterAlign.SetProperty(TextLabel ::Property::ENABLE_MARKUP, true);
885   textLabelCenterAlign.SetProperty(TextLabel::Property::MULTI_LINE, true);
886   textLabelCenterAlign.SetProperty(TextLabel::Property::ELLIPSIS, false);
887   textLabelCenterAlign.SetProperty(TextLabel::Property::HORIZONTAL_ALIGNMENT, Dali::Toolkit::Text::HorizontalAlignment::CENTER);
888   textLabelCenterAlign.SetProperty(Actor::Property::SIZE, controllerSize);
889
890   textLabelEndAlign.SetProperty(TextLabel::Property::TEXT, textAlignOnPropertyLevel);
891   textLabelEndAlign.SetProperty(TextLabel ::Property::ENABLE_MARKUP, true);
892   textLabelEndAlign.SetProperty(TextLabel::Property::MULTI_LINE, true);
893   textLabelEndAlign.SetProperty(TextLabel::Property::ELLIPSIS, false);
894   textLabelEndAlign.SetProperty(TextLabel::Property::HORIZONTAL_ALIGNMENT, Dali::Toolkit::Text::HorizontalAlignment::END);
895   textLabelEndAlign.SetProperty(Actor::Property::SIZE, controllerSize);
896
897   textLabelMultiAlign.SetProperty(TextLabel::Property::TEXT, textAlignInMarkup);
898   textLabelMultiAlign.SetProperty(TextLabel ::Property::ENABLE_MARKUP, true);
899   textLabelMultiAlign.SetProperty(TextLabel::Property::MULTI_LINE, true);
900   textLabelMultiAlign.SetProperty(TextLabel::Property::ELLIPSIS, false);
901   textLabelMultiAlign.SetProperty(TextLabel::Property::HORIZONTAL_ALIGNMENT, Dali::Toolkit::Text::HorizontalAlignment::CENTER);
902   textLabelMultiAlign.SetProperty(Actor::Property::SIZE, controllerSize);
903
904   application.SendNotification();
905   application.Render();
906
907   uint32_t expectedNumberOfBoundedParagraphRuns = 4u;
908   uint32_t expectedNumberOfLines                = 7u;
909
910   Toolkit::Internal::TextLabel& textLabelMultiAlignImpl  = GetImpl(textLabelMultiAlign);
911   Toolkit::Internal::TextLabel& textLabelBeginAlignImpl  = GetImpl(textLabelBeginAlign);
912   Toolkit::Internal::TextLabel& textLabelCenterAlignImpl = GetImpl(textLabelCenterAlign);
913   Toolkit::Internal::TextLabel& textLabelEndAlignImpl    = GetImpl(textLabelEndAlign);
914
915   const Text::Length numberOfBoundedParagraphRuns = textLabelMultiAlignImpl.GetTextController()->GetTextModel()->GetNumberOfBoundedParagraphRuns();
916   DALI_TEST_EQUALS(numberOfBoundedParagraphRuns, expectedNumberOfBoundedParagraphRuns, TEST_LOCATION);
917
918   DALI_TEST_EQUALS(textLabelMultiAlignImpl.GetTextController()->GetTextModel()->GetNumberOfLines(), expectedNumberOfLines, TEST_LOCATION);
919   DALI_TEST_CHECK(textLabelMultiAlignImpl.GetTextController()->GetTextModel()->GetLines());
920
921   DALI_TEST_EQUALS(textLabelBeginAlignImpl.GetTextController()->GetTextModel()->GetNumberOfLines(), expectedNumberOfLines, TEST_LOCATION);
922   DALI_TEST_CHECK(textLabelBeginAlignImpl.GetTextController()->GetTextModel()->GetLines());
923
924   DALI_TEST_EQUALS(textLabelCenterAlignImpl.GetTextController()->GetTextModel()->GetNumberOfLines(), expectedNumberOfLines, TEST_LOCATION);
925   DALI_TEST_CHECK(textLabelCenterAlignImpl.GetTextController()->GetTextModel()->GetLines());
926
927   DALI_TEST_EQUALS(textLabelEndAlignImpl.GetTextController()->GetTextModel()->GetNumberOfLines(), expectedNumberOfLines, TEST_LOCATION);
928   DALI_TEST_CHECK(textLabelEndAlignImpl.GetTextController()->GetTextModel()->GetLines());
929
930   const uint32_t LINE_INDEX_ALIGN_END    = 1u;
931   const uint32_t LINE_INDEX_ALIGN_CENTER = 3u;
932   const uint32_t LINE_INDEX_ALIGN_BEGIN  = 5u;
933   const uint32_t LINE_INDEX_OUTSIDE_1    = 0u;
934   const uint32_t LINE_INDEX_OUTSIDE_2    = 2u;
935   const uint32_t LINE_INDEX_OUTSIDE_3    = 4u;
936   const uint32_t LINE_INDEX_PARAGRAPH    = 6u;
937
938   //<p align='end'>Paragraph end</p>
939   const LineRun& lineEndFromMultiAlign = *(textLabelMultiAlignImpl.GetTextController()->GetTextModel()->GetLines() + LINE_INDEX_ALIGN_END);
940   const LineRun& lineEndFromEndAlign   = *(textLabelEndAlignImpl.GetTextController()->GetTextModel()->GetLines() + LINE_INDEX_ALIGN_END);
941   tet_infoline(" UtcDaliTextLabelMarkupParagraphTagAlignAttribute - <p align='end'>Paragraph end</p>");
942   DALI_TEST_EQUALS(lineEndFromMultiAlign.alignmentOffset, lineEndFromEndAlign.alignmentOffset, TEST_LOCATION);
943   DALI_TEST_EQUALS(lineEndFromMultiAlign.width, lineEndFromEndAlign.width, TEST_LOCATION);
944
945   //<p align='center'>Paragraph center</p>
946   const LineRun& lineCenterFromMultiAlign = *(textLabelMultiAlignImpl.GetTextController()->GetTextModel()->GetLines() + LINE_INDEX_ALIGN_CENTER);
947   const LineRun& lineEndFromCenterAlign   = *(textLabelCenterAlignImpl.GetTextController()->GetTextModel()->GetLines() + LINE_INDEX_ALIGN_CENTER);
948   tet_infoline(" UtcDaliTextLabelMarkupParagraphTagAlignAttribute - <p align='center'>Paragraph center</p>");
949   DALI_TEST_EQUALS(lineCenterFromMultiAlign.alignmentOffset, lineEndFromCenterAlign.alignmentOffset, TEST_LOCATION);
950   DALI_TEST_EQUALS(lineCenterFromMultiAlign.width, lineEndFromCenterAlign.width, TEST_LOCATION);
951
952   //<p align='begin' >Paragraph begin</p>
953   const LineRun& lineBeginFromMultiAlign = *(textLabelMultiAlignImpl.GetTextController()->GetTextModel()->GetLines() + LINE_INDEX_ALIGN_BEGIN);
954   const LineRun& lineEndFromBeginAlign   = *(textLabelBeginAlignImpl.GetTextController()->GetTextModel()->GetLines() + LINE_INDEX_ALIGN_BEGIN);
955   tet_infoline(" UtcDaliTextLabelMarkupParagraphTagAlignAttribute - <p align='begin' >Paragraph begin</p>");
956   DALI_TEST_EQUALS(lineBeginFromMultiAlign.alignmentOffset, lineEndFromBeginAlign.alignmentOffset, TEST_LOCATION);
957   DALI_TEST_EQUALS(lineBeginFromMultiAlign.width, lineEndFromBeginAlign.width, TEST_LOCATION);
958
959   //text outside
960   const LineRun& lineOutsideOneFromMultiAlign  = *(textLabelMultiAlignImpl.GetTextController()->GetTextModel()->GetLines() + LINE_INDEX_OUTSIDE_1);
961   const LineRun& lineOutsideOneFromCenterAlign = *(textLabelCenterAlignImpl.GetTextController()->GetTextModel()->GetLines() + LINE_INDEX_OUTSIDE_1);
962   tet_infoline(" UtcDaliTextLabelMarkupParagraphTagAlignAttribute - text outside one");
963   DALI_TEST_EQUALS(lineOutsideOneFromMultiAlign.alignmentOffset, lineOutsideOneFromCenterAlign.alignmentOffset, TEST_LOCATION);
964   DALI_TEST_EQUALS(lineOutsideOneFromMultiAlign.width, lineOutsideOneFromCenterAlign.width, TEST_LOCATION);
965
966   const LineRun& lineOutsideTwoFromMultiAlign  = *(textLabelMultiAlignImpl.GetTextController()->GetTextModel()->GetLines() + LINE_INDEX_OUTSIDE_2);
967   const LineRun& lineOutsideTwoFromCenterAlign = *(textLabelCenterAlignImpl.GetTextController()->GetTextModel()->GetLines() + LINE_INDEX_OUTSIDE_2);
968   tet_infoline(" UtcDaliTextLabelMarkupParagraphTagAlignAttribute - text outside two");
969   DALI_TEST_EQUALS(lineOutsideTwoFromMultiAlign.alignmentOffset, lineOutsideTwoFromCenterAlign.alignmentOffset, TEST_LOCATION);
970   DALI_TEST_EQUALS(lineOutsideTwoFromMultiAlign.width, lineOutsideTwoFromCenterAlign.width, TEST_LOCATION);
971
972   const LineRun& lineOutsideThreeFromMultiAlign  = *(textLabelMultiAlignImpl.GetTextController()->GetTextModel()->GetLines() + LINE_INDEX_OUTSIDE_3);
973   const LineRun& lineOutsideThreeFromCenterAlign = *(textLabelCenterAlignImpl.GetTextController()->GetTextModel()->GetLines() + LINE_INDEX_OUTSIDE_3);
974   tet_infoline(" UtcDaliTextLabelMarkupParagraphTagAlignAttribute - text outside three");
975   DALI_TEST_EQUALS(lineOutsideThreeFromMultiAlign.alignmentOffset, lineOutsideThreeFromCenterAlign.alignmentOffset, TEST_LOCATION);
976   DALI_TEST_EQUALS(lineOutsideThreeFromMultiAlign.width, lineOutsideThreeFromCenterAlign.width, TEST_LOCATION);
977
978   const LineRun& lineParagraphFromMultiAlign  = *(textLabelMultiAlignImpl.GetTextController()->GetTextModel()->GetLines() + LINE_INDEX_PARAGRAPH);
979   const LineRun& lineParagraphFromCenterAlign = *(textLabelCenterAlignImpl.GetTextController()->GetTextModel()->GetLines() + LINE_INDEX_PARAGRAPH);
980   tet_infoline(" UtcDaliTextLabelMarkupParagraphTagAlignAttribute - <p>Paragraph property alignment</p>");
981   DALI_TEST_EQUALS(lineParagraphFromMultiAlign.alignmentOffset, lineParagraphFromCenterAlign.alignmentOffset, TEST_LOCATION);
982   DALI_TEST_EQUALS(lineParagraphFromMultiAlign.width, lineParagraphFromCenterAlign.width, TEST_LOCATION);
983
984   END_TEST;
985 }