forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlabel_unittest.cc
657 lines (545 loc) · 23.8 KB
/
label_unittest.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/views/controls/label.h"
#include "base/i18n/rtl.h"
#include "base/strings/utf_string_conversions.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/accessibility/ax_view_state.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/compositor/canvas_painter.h"
#include "ui/gfx/canvas.h"
#include "ui/views/border.h"
#include "ui/views/test/focus_manager_test.h"
#include "ui/views/test/views_test_base.h"
#include "ui/views/widget/widget.h"
using base::ASCIIToUTF16;
namespace views {
typedef ViewsTestBase LabelTest;
class LabelFocusTest : public FocusManagerTest {
public:
LabelFocusTest() {}
~LabelFocusTest() override {}
protected:
views::Label* label() { return label_; }
private:
// FocusManagerTest:
void InitContentView() override {
label_ = new views::Label();
GetContentsView()->AddChildView(label_);
}
views::Label* label_;
};
// All text sizing measurements (width and height) should be greater than this.
const int kMinTextDimension = 4;
// A test utility function to set the application default text direction.
void SetRTL(bool rtl) {
// Override the current locale/direction.
base::i18n::SetICUDefaultLocale(rtl ? "he" : "en");
EXPECT_EQ(rtl, base::i18n::IsRTL());
}
TEST_F(LabelTest, FontPropertySymbol) {
Label label;
std::string font_name("symbol");
gfx::Font font(font_name, 26);
label.SetFontList(gfx::FontList(font));
gfx::Font font_used = label.font_list().GetPrimaryFont();
EXPECT_EQ(font_name, font_used.GetFontName());
EXPECT_EQ(26, font_used.GetFontSize());
}
TEST_F(LabelTest, FontPropertyArial) {
Label label;
std::string font_name("arial");
gfx::Font font(font_name, 30);
label.SetFontList(gfx::FontList(font));
gfx::Font font_used = label.font_list().GetPrimaryFont();
EXPECT_EQ(font_name, font_used.GetFontName());
EXPECT_EQ(30, font_used.GetFontSize());
}
TEST_F(LabelTest, TextProperty) {
Label label;
base::string16 test_text(ASCIIToUTF16("A random string."));
label.SetText(test_text);
EXPECT_EQ(test_text, label.text());
}
TEST_F(LabelTest, ColorProperty) {
Label label;
SkColor color = SkColorSetARGB(20, 40, 10, 5);
label.SetAutoColorReadabilityEnabled(false);
label.SetEnabledColor(color);
EXPECT_EQ(color, label.enabled_color());
}
TEST_F(LabelTest, AlignmentProperty) {
const bool was_rtl = base::i18n::IsRTL();
Label label;
for (size_t i = 0; i < 2; ++i) {
// Toggle the application default text direction (to try each direction).
SetRTL(!base::i18n::IsRTL());
bool reverse_alignment = base::i18n::IsRTL();
// The alignment should be flipped in RTL UI.
label.SetHorizontalAlignment(gfx::ALIGN_RIGHT);
EXPECT_EQ(reverse_alignment ? gfx::ALIGN_LEFT : gfx::ALIGN_RIGHT,
label.horizontal_alignment());
label.SetHorizontalAlignment(gfx::ALIGN_LEFT);
EXPECT_EQ(reverse_alignment ? gfx::ALIGN_RIGHT : gfx::ALIGN_LEFT,
label.horizontal_alignment());
label.SetHorizontalAlignment(gfx::ALIGN_CENTER);
EXPECT_EQ(gfx::ALIGN_CENTER, label.horizontal_alignment());
for (size_t j = 0; j < 2; ++j) {
label.SetHorizontalAlignment(gfx::ALIGN_TO_HEAD);
const bool rtl = j == 0;
label.SetText(rtl ? base::WideToUTF16(L"\x5d0") : ASCIIToUTF16("A"));
EXPECT_EQ(gfx::ALIGN_TO_HEAD, label.horizontal_alignment());
}
}
EXPECT_EQ(was_rtl, base::i18n::IsRTL());
}
TEST_F(LabelTest, ElideBehavior) {
Label label;
base::string16 text(ASCIIToUTF16("This is example text."));
label.SetText(text);
EXPECT_EQ(gfx::ELIDE_TAIL, label.elide_behavior());
gfx::Size size = label.GetPreferredSize();
label.SetBoundsRect(gfx::Rect(size));
EXPECT_EQ(text, label.GetDisplayTextForTesting());
size.set_width(size.width() / 2);
label.SetBoundsRect(gfx::Rect(size));
EXPECT_GT(text.size(), label.GetDisplayTextForTesting().size());
label.SetElideBehavior(gfx::NO_ELIDE);
EXPECT_EQ(text, label.GetDisplayTextForTesting());
}
TEST_F(LabelTest, MultiLineProperty) {
Label label;
EXPECT_FALSE(label.multi_line());
label.SetMultiLine(true);
EXPECT_TRUE(label.multi_line());
label.SetMultiLine(false);
EXPECT_FALSE(label.multi_line());
}
TEST_F(LabelTest, ObscuredProperty) {
Label label;
base::string16 test_text(ASCIIToUTF16("Password!"));
label.SetText(test_text);
label.SizeToPreferredSize();
// The text should be unobscured by default.
EXPECT_FALSE(label.obscured());
EXPECT_EQ(test_text, label.GetDisplayTextForTesting());
EXPECT_EQ(test_text, label.text());
label.SetObscured(true);
label.SizeToPreferredSize();
EXPECT_TRUE(label.obscured());
EXPECT_EQ(ASCIIToUTF16("*********"), label.GetDisplayTextForTesting());
EXPECT_EQ(test_text, label.text());
label.SetText(test_text + test_text);
label.SizeToPreferredSize();
EXPECT_EQ(ASCIIToUTF16("******************"),
label.GetDisplayTextForTesting());
EXPECT_EQ(test_text + test_text, label.text());
label.SetObscured(false);
label.SizeToPreferredSize();
EXPECT_FALSE(label.obscured());
EXPECT_EQ(test_text + test_text, label.GetDisplayTextForTesting());
EXPECT_EQ(test_text + test_text, label.text());
}
TEST_F(LabelTest, ObscuredSurrogatePair) {
// 'MUSICAL SYMBOL G CLEF': represented in UTF-16 as two characters
// forming the surrogate pair 0x0001D11E.
Label label;
base::string16 test_text = base::UTF8ToUTF16("\xF0\x9D\x84\x9E");
label.SetText(test_text);
label.SetObscured(true);
label.SizeToPreferredSize();
EXPECT_EQ(ASCIIToUTF16("*"), label.GetDisplayTextForTesting());
EXPECT_EQ(test_text, label.text());
}
// This test case verifies the label preferred size will change based on the
// current layout, which may seem wrong. However many of our code base assumes
// this behavior, therefore this behavior will have to be kept until the code
// with this assumption is fixed. See http://crbug.com/468494 and
// http://crbug.com/467526.
// TODO(mukai): fix the code assuming this behavior and then fix Label
// implementation, and remove this test case.
TEST_F(LabelTest, MultilinePreferredSizeTest) {
Label label;
label.SetText(ASCIIToUTF16("This is an example."));
gfx::Size single_line_size = label.GetPreferredSize();
label.SetMultiLine(true);
gfx::Size multi_line_size = label.GetPreferredSize();
EXPECT_EQ(single_line_size, multi_line_size);
int new_width = multi_line_size.width() / 2;
label.SetBounds(0, 0, new_width, label.GetHeightForWidth(new_width));
gfx::Size new_size = label.GetPreferredSize();
EXPECT_GT(multi_line_size.width(), new_size.width());
EXPECT_LT(multi_line_size.height(), new_size.height());
}
TEST_F(LabelTest, TooltipProperty) {
Label label;
label.SetText(ASCIIToUTF16("My cool string."));
// Initially, label has no bounds, its text does not fit, and therefore its
// text should be returned as the tooltip text.
base::string16 tooltip;
EXPECT_TRUE(label.GetTooltipText(gfx::Point(), &tooltip));
EXPECT_EQ(label.text(), tooltip);
// While tooltip handling is disabled, GetTooltipText() should fail.
label.SetHandlesTooltips(false);
EXPECT_FALSE(label.GetTooltipText(gfx::Point(), &tooltip));
label.SetHandlesTooltips(true);
// When set, custom tooltip text should be returned instead of the label's
// text.
base::string16 tooltip_text(ASCIIToUTF16("The tooltip!"));
label.SetTooltipText(tooltip_text);
EXPECT_TRUE(label.GetTooltipText(gfx::Point(), &tooltip));
EXPECT_EQ(tooltip_text, tooltip);
// While tooltip handling is disabled, GetTooltipText() should fail.
label.SetHandlesTooltips(false);
EXPECT_FALSE(label.GetTooltipText(gfx::Point(), &tooltip));
label.SetHandlesTooltips(true);
// When the tooltip text is set to an empty string, the original behavior is
// restored.
label.SetTooltipText(base::string16());
EXPECT_TRUE(label.GetTooltipText(gfx::Point(), &tooltip));
EXPECT_EQ(label.text(), tooltip);
// While tooltip handling is disabled, GetTooltipText() should fail.
label.SetHandlesTooltips(false);
EXPECT_FALSE(label.GetTooltipText(gfx::Point(), &tooltip));
label.SetHandlesTooltips(true);
// Make the label big enough to hold the text
// and expect there to be no tooltip.
label.SetBounds(0, 0, 1000, 40);
EXPECT_FALSE(label.GetTooltipText(gfx::Point(), &tooltip));
// Shrinking the single-line label's height shouldn't trigger a tooltip.
label.SetBounds(0, 0, 1000, label.GetPreferredSize().height() / 2);
EXPECT_FALSE(label.GetTooltipText(gfx::Point(), &tooltip));
// Verify that explicitly set tooltip text is shown, regardless of size.
label.SetTooltipText(tooltip_text);
EXPECT_TRUE(label.GetTooltipText(gfx::Point(), &tooltip));
EXPECT_EQ(tooltip_text, tooltip);
// Clear out the explicitly set tooltip text.
label.SetTooltipText(base::string16());
// Shrink the bounds and the tooltip should come back.
label.SetBounds(0, 0, 10, 10);
EXPECT_TRUE(label.GetTooltipText(gfx::Point(), &tooltip));
// Make the label obscured and there is no tooltip.
label.SetObscured(true);
EXPECT_FALSE(label.GetTooltipText(gfx::Point(), &tooltip));
// Obscuring the text shouldn't permanently clobber the tooltip.
label.SetObscured(false);
EXPECT_TRUE(label.GetTooltipText(gfx::Point(), &tooltip));
// Making the label multiline shouldn't eliminate the tooltip.
label.SetMultiLine(true);
EXPECT_TRUE(label.GetTooltipText(gfx::Point(), &tooltip));
// Expanding the multiline label bounds should eliminate the tooltip.
label.SetBounds(0, 0, 1000, 1000);
EXPECT_FALSE(label.GetTooltipText(gfx::Point(), &tooltip));
// Verify that setting the tooltip still shows it.
label.SetTooltipText(tooltip_text);
EXPECT_TRUE(label.GetTooltipText(gfx::Point(), &tooltip));
EXPECT_EQ(tooltip_text, tooltip);
// Clear out the tooltip.
label.SetTooltipText(base::string16());
}
TEST_F(LabelTest, Accessibility) {
Label label;
label.SetText(ASCIIToUTF16("My special text."));
ui::AXViewState state;
label.GetAccessibleState(&state);
EXPECT_EQ(ui::AX_ROLE_STATIC_TEXT, state.role);
EXPECT_EQ(label.text(), state.name);
EXPECT_TRUE(state.HasStateFlag(ui::AX_STATE_READ_ONLY));
}
TEST_F(LabelTest, TextChangeWithoutLayout) {
Label label;
label.SetText(ASCIIToUTF16("Example"));
label.SetBounds(0, 0, 200, 200);
gfx::Canvas canvas(gfx::Size(200, 200), 1.0f, true);
label.Paint(ui::CanvasPainter(&canvas, 1.f).context());
EXPECT_EQ(1u, label.lines_.size());
EXPECT_EQ(ASCIIToUTF16("Example"), label.lines_[0]->GetDisplayText());
label.SetText(ASCIIToUTF16("Altered"));
// The altered text should be painted even though Layout() or SetBounds() are
// not called.
label.Paint(ui::CanvasPainter(&canvas, 1.f).context());
EXPECT_EQ(1u, label.lines_.size());
EXPECT_EQ(ASCIIToUTF16("Altered"), label.lines_[0]->GetDisplayText());
}
TEST_F(LabelTest, EmptyLabelSizing) {
Label label;
const gfx::Size expected_size(0, gfx::FontList().GetHeight());
EXPECT_EQ(expected_size, label.GetPreferredSize());
label.SetMultiLine(!label.multi_line());
EXPECT_EQ(expected_size, label.GetPreferredSize());
}
TEST_F(LabelTest, SingleLineSizing) {
Label label;
label.SetText(ASCIIToUTF16("A not so random string in one line."));
const gfx::Size size = label.GetPreferredSize();
EXPECT_GT(size.height(), kMinTextDimension);
EXPECT_GT(size.width(), kMinTextDimension);
// Setting a size smaller than preferred should not change the preferred size.
label.SetSize(gfx::Size(size.width() / 2, size.height() / 2));
EXPECT_EQ(size, label.GetPreferredSize());
const gfx::Insets border(10, 20, 30, 40);
label.SetBorder(Border::CreateEmptyBorder(
border.top(), border.left(), border.bottom(), border.right()));
const gfx::Size size_with_border = label.GetPreferredSize();
EXPECT_EQ(size_with_border.height(), size.height() + border.height());
EXPECT_EQ(size_with_border.width(), size.width() + border.width());
EXPECT_EQ(size.height() + border.height(),
label.GetHeightForWidth(size_with_border.width()));
}
TEST_F(LabelTest, MultilineSmallAvailableWidthSizing) {
Label label;
label.SetMultiLine(true);
label.SetAllowCharacterBreak(true);
label.SetText(ASCIIToUTF16("Too Wide."));
// Check that Label can be laid out at a variety of small sizes,
// splitting the words into up to one character per line if necessary.
// Incorrect word splitting may cause infinite loops in text layout.
gfx::Size required_size = label.GetPreferredSize();
for (int i = 1; i < required_size.width(); ++i)
EXPECT_GT(label.GetHeightForWidth(i), 0);
}
// Verifies if SetAllowCharacterBreak(true) doesn't change the preferred size.
// See crbug.com/469559
TEST_F(LabelTest, PreferredSizeForAllowCharacterBreak) {
Label label(base::ASCIIToUTF16("Example"));
gfx::Size preferred_size = label.GetPreferredSize();
label.SetMultiLine(true);
label.SetAllowCharacterBreak(true);
EXPECT_EQ(preferred_size, label.GetPreferredSize());
}
TEST_F(LabelTest, MultiLineSizing) {
Label label;
label.SetFocusable(false);
label.SetText(
ASCIIToUTF16("A random string\nwith multiple lines\nand returns!"));
label.SetMultiLine(true);
// GetPreferredSize
gfx::Size required_size = label.GetPreferredSize();
EXPECT_GT(required_size.height(), kMinTextDimension);
EXPECT_GT(required_size.width(), kMinTextDimension);
// SizeToFit with unlimited width.
label.SizeToFit(0);
int required_width = label.GetLocalBounds().width();
EXPECT_GT(required_width, kMinTextDimension);
// SizeToFit with limited width.
label.SizeToFit(required_width - 1);
int constrained_width = label.GetLocalBounds().width();
#if defined(OS_WIN)
// Canvas::SizeStringInt (in ui/gfx/canvas_linux.cc)
// has to be fixed to return the size that fits to given width/height.
EXPECT_LT(constrained_width, required_width);
#endif
EXPECT_GT(constrained_width, kMinTextDimension);
// Change the width back to the desire width.
label.SizeToFit(required_width);
EXPECT_EQ(required_width, label.GetLocalBounds().width());
// General tests for GetHeightForWidth.
int required_height = label.GetHeightForWidth(required_width);
EXPECT_GT(required_height, kMinTextDimension);
int height_for_constrained_width = label.GetHeightForWidth(constrained_width);
#if defined(OS_WIN)
// Canvas::SizeStringInt (in ui/gfx/canvas_linux.cc)
// has to be fixed to return the size that fits to given width/height.
EXPECT_GT(height_for_constrained_width, required_height);
#endif
// Using the constrained width or the required_width - 1 should give the
// same result for the height because the constrainted width is the tight
// width when given "required_width - 1" as the max width.
EXPECT_EQ(height_for_constrained_width,
label.GetHeightForWidth(required_width - 1));
// Test everything with borders.
gfx::Insets border(10, 20, 30, 40);
label.SetBorder(Border::CreateEmptyBorder(
border.top(), border.left(), border.bottom(), border.right()));
// SizeToFit and borders.
label.SizeToFit(0);
int required_width_with_border = label.GetLocalBounds().width();
EXPECT_EQ(required_width_with_border, required_width + border.width());
// GetHeightForWidth and borders.
int required_height_with_border =
label.GetHeightForWidth(required_width_with_border);
EXPECT_EQ(required_height_with_border, required_height + border.height());
// Test that the border width is subtracted before doing the height
// calculation. If it is, then the height will grow when width
// is shrunk.
int height1 = label.GetHeightForWidth(required_width_with_border - 1);
#if defined(OS_WIN)
// Canvas::SizeStringInt (in ui/gfx/canvas_linux.cc)
// has to be fixed to return the size that fits to given width/height.
EXPECT_GT(height1, required_height_with_border);
#endif
EXPECT_EQ(height1, height_for_constrained_width + border.height());
// GetPreferredSize and borders.
label.SetBounds(0, 0, 0, 0);
gfx::Size required_size_with_border = label.GetPreferredSize();
EXPECT_EQ(required_size_with_border.height(),
required_size.height() + border.height());
EXPECT_EQ(required_size_with_border.width(),
required_size.width() + border.width());
}
// Verifies if the combination of text eliding and multiline doesn't cause
// any side effects of size / layout calculation.
TEST_F(LabelTest, MultiLineSizingWithElide) {
const base::string16 text =
ASCIIToUTF16("A random string\nwith multiple lines\nand returns!");
Label label;
label.SetFocusable(false);
label.SetText(text);
label.SetMultiLine(true);
gfx::Size required_size = label.GetPreferredSize();
EXPECT_GT(required_size.height(), kMinTextDimension);
EXPECT_GT(required_size.width(), kMinTextDimension);
label.SetBoundsRect(gfx::Rect(required_size));
label.SetElideBehavior(gfx::ELIDE_TAIL);
EXPECT_EQ(required_size.ToString(), label.GetPreferredSize().ToString());
EXPECT_EQ(text, label.GetDisplayTextForTesting());
label.SizeToFit(required_size.width() - 1);
gfx::Size narrow_size = label.GetPreferredSize();
EXPECT_GT(required_size.width(), narrow_size.width());
EXPECT_LT(required_size.height(), narrow_size.height());
// SetBounds() doesn't change the preferred size.
label.SetBounds(0, 0, narrow_size.width() - 1, narrow_size.height());
EXPECT_EQ(narrow_size.ToString(), label.GetPreferredSize().ToString());
// Paint() doesn't change the preferred size.
gfx::Canvas canvas;
label.Paint(ui::CanvasPainter(&canvas, 1.f).context());
EXPECT_EQ(narrow_size.ToString(), label.GetPreferredSize().ToString());
}
// Check that labels support GetTooltipHandlerForPoint.
TEST_F(LabelTest, GetTooltipHandlerForPoint) {
// A root view must be defined for this test because the hit-testing
// behaviour used by GetTooltipHandlerForPoint() is defined by
// the ViewTargeter installed on the root view.
Widget widget;
Widget::InitParams init_params =
CreateParams(Widget::InitParams::TYPE_POPUP);
init_params.ownership = Widget::InitParams::WIDGET_OWNS_NATIVE_WIDGET;
init_params.bounds = gfx::Rect(0, 0, 200, 200);
widget.Init(init_params);
Label label;
label.SetText(
ASCIIToUTF16("A string that's long enough to exceed the bounds"));
label.SetBounds(0, 0, 10, 10);
widget.SetContentsView(&label);
// By default, labels start out as tooltip handlers.
ASSERT_TRUE(label.handles_tooltips());
// There's a default tooltip if the text is too big to fit.
EXPECT_EQ(&label, label.GetTooltipHandlerForPoint(gfx::Point(2, 2)));
// If tooltip handling is disabled, the label should not provide a tooltip
// handler.
label.SetHandlesTooltips(false);
EXPECT_FALSE(label.GetTooltipHandlerForPoint(gfx::Point(2, 2)));
label.SetHandlesTooltips(true);
// If there's no default tooltip, this should return NULL.
label.SetBounds(0, 0, 500, 50);
EXPECT_FALSE(label.GetTooltipHandlerForPoint(gfx::Point(2, 2)));
label.SetTooltipText(ASCIIToUTF16("a tooltip"));
// If the point hits the label, and tooltip is set, the label should be
// returned as its tooltip handler.
EXPECT_EQ(&label, label.GetTooltipHandlerForPoint(gfx::Point(2, 2)));
// Additionally, GetTooltipHandlerForPoint should verify that the label
// actually contains the point.
EXPECT_FALSE(label.GetTooltipHandlerForPoint(gfx::Point(2, 51)));
EXPECT_FALSE(label.GetTooltipHandlerForPoint(gfx::Point(-1, 20)));
// Again, if tooltip handling is disabled, the label should not provide a
// tooltip handler.
label.SetHandlesTooltips(false);
EXPECT_FALSE(label.GetTooltipHandlerForPoint(gfx::Point(2, 2)));
EXPECT_FALSE(label.GetTooltipHandlerForPoint(gfx::Point(2, 51)));
EXPECT_FALSE(label.GetTooltipHandlerForPoint(gfx::Point(-1, 20)));
label.SetHandlesTooltips(true);
// GetTooltipHandlerForPoint works should work in child bounds.
label.SetBounds(2, 2, 10, 10);
EXPECT_EQ(&label, label.GetTooltipHandlerForPoint(gfx::Point(1, 5)));
EXPECT_FALSE(label.GetTooltipHandlerForPoint(gfx::Point(3, 11)));
}
// Check that label releases its internal layout data when it's unnecessary.
TEST_F(LabelTest, ResetRenderTextData) {
Label label;
label.SetText(ASCIIToUTF16("Example"));
label.SizeToPreferredSize();
gfx::Size preferred_size = label.GetPreferredSize();
EXPECT_NE(gfx::Size().ToString(), preferred_size.ToString());
EXPECT_EQ(0u, label.lines_.size());
gfx::Canvas canvas(preferred_size, 1.0f, true);
label.Paint(ui::CanvasPainter(&canvas, 1.f).context());
EXPECT_EQ(1u, label.lines_.size());
// Label should recreate its RenderText object when it's invisible, to release
// the layout structures and data.
label.SetVisible(false);
EXPECT_EQ(0u, label.lines_.size());
// Querying fields or size information should not recompute the layout
// unnecessarily.
EXPECT_EQ(ASCIIToUTF16("Example"), label.text());
EXPECT_EQ(0u, label.lines_.size());
EXPECT_EQ(preferred_size.ToString(), label.GetPreferredSize().ToString());
EXPECT_EQ(0u, label.lines_.size());
// RenderText data should be back when it's necessary.
label.SetVisible(true);
EXPECT_EQ(0u, label.lines_.size());
label.Paint(ui::CanvasPainter(&canvas, 1.f).context());
EXPECT_EQ(1u, label.lines_.size());
// Changing layout just resets |lines_|. It'll recover next time it's drawn.
label.SetBounds(0, 0, 10, 10);
EXPECT_EQ(0u, label.lines_.size());
label.Paint(ui::CanvasPainter(&canvas, 1.f).context());
EXPECT_EQ(1u, label.lines_.size());
}
#if !defined(OS_MACOSX)
TEST_F(LabelTest, MultilineSupportedRenderText) {
scoped_ptr<gfx::RenderText> render_text(gfx::RenderText::CreateInstance());
ASSERT_TRUE(render_text->MultilineSupported());
Label label;
label.SetText(ASCIIToUTF16("Example of\nmultilined label"));
label.SetMultiLine(true);
label.SizeToPreferredSize();
gfx::Canvas canvas(label.GetPreferredSize(), 1.0f, true);
label.Paint(ui::CanvasPainter(&canvas, 1.f).context());
// There's only one 'line', RenderText itself supports multiple lines.
EXPECT_EQ(1u, label.lines_.size());
}
#endif
TEST_F(LabelFocusTest, FocusBounds) {
label()->SetText(ASCIIToUTF16("Example"));
gfx::Size normal_size = label()->GetPreferredSize();
label()->SetFocusable(true);
label()->RequestFocus();
gfx::Size focusable_size = label()->GetPreferredSize();
// Focusable label requires larger size to paint the focus rectangle.
EXPECT_GT(focusable_size.width(), normal_size.width());
EXPECT_GT(focusable_size.height(), normal_size.height());
label()->SizeToPreferredSize();
gfx::Rect focus_bounds = label()->GetFocusBounds();
EXPECT_EQ(label()->GetLocalBounds().ToString(), focus_bounds.ToString());
label()->SetBounds(
0, 0, focusable_size.width() * 2, focusable_size.height() * 2);
label()->SetHorizontalAlignment(gfx::ALIGN_LEFT);
focus_bounds = label()->GetFocusBounds();
EXPECT_EQ(0, focus_bounds.x());
EXPECT_LT(0, focus_bounds.y());
EXPECT_GT(label()->bounds().bottom(), focus_bounds.bottom());
EXPECT_EQ(focusable_size.ToString(), focus_bounds.size().ToString());
label()->SetHorizontalAlignment(gfx::ALIGN_RIGHT);
focus_bounds = label()->GetFocusBounds();
EXPECT_LT(0, focus_bounds.x());
EXPECT_EQ(label()->bounds().right(), focus_bounds.right());
EXPECT_LT(0, focus_bounds.y());
EXPECT_GT(label()->bounds().bottom(), focus_bounds.bottom());
EXPECT_EQ(focusable_size.ToString(), focus_bounds.size().ToString());
label()->SetHorizontalAlignment(gfx::ALIGN_LEFT);
label()->SetElideBehavior(gfx::FADE_TAIL);
label()->SetBounds(0, 0, focusable_size.width() / 2, focusable_size.height());
focus_bounds = label()->GetFocusBounds();
EXPECT_EQ(0, focus_bounds.x());
EXPECT_EQ(focusable_size.width() / 2, focus_bounds.width());
}
TEST_F(LabelFocusTest, EmptyLabel) {
label()->SetFocusable(true);
label()->RequestFocus();
label()->SizeToPreferredSize();
gfx::Rect focus_bounds = label()->GetFocusBounds();
EXPECT_FALSE(focus_bounds.IsEmpty());
EXPECT_LT(label()->font_list().GetHeight(), focus_bounds.height());
}
} // namespace views