aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/PaintBreakTextTest.cpp
blob: d0b9c0827d173a999deea29f7adf53c52f6bddb3 (plain)
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
/*
 * Copyright 2011-2016 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include "SkAutoMalloc.h"
#include "SkPaint.h"
#include "Test.h"

static void test_monotonic(skiatest::Reporter* reporter,
                           const SkPaint& paint,
                           const char* msg) {
    const char* text = "sdfkljAKLDFJKEWkldfjlk#$%&sdfs.dsj";
    const size_t length = strlen(text);
    const SkScalar width = paint.measureText(text, length);

    SkScalar mm = 0;
    size_t nn = 0;
    const SkScalar step = SkMaxScalar(width / 10, SK_Scalar1);
    for (SkScalar w = 0; w <= width; w += step) {
        SkScalar m;
        const size_t n = paint.breakText(text, length, w, &m);

        REPORTER_ASSERT(reporter, n <= length, msg);
        REPORTER_ASSERT(reporter, m <= width, msg);

        if (n == 0) {
            REPORTER_ASSERT(reporter, m == 0, msg);
        } else {
            // now assert that we're monotonic
            if (n == nn) {
                REPORTER_ASSERT(reporter, m == mm, msg);
            } else {
                REPORTER_ASSERT(reporter, n > nn, msg);
                REPORTER_ASSERT(reporter, m > mm, msg);
            }
        }
        nn = n;
        mm = m;
    }
}

static void test_eq_measure_text(skiatest::Reporter* reporter,
                                 const SkPaint& paint,
                                 const char* msg) {
    const char* text = "The ultimate measure of a man is not where he stands in moments of comfort "
        "and convenience, but where he stands at times of challenge and controversy.";
    const size_t length = strlen(text);
    const SkScalar width = paint.measureText(text, length);

    SkScalar mm;
    const size_t length2 = paint.breakText(text, length, width, &mm);
    REPORTER_ASSERT(reporter, length2 == length, msg);
    REPORTER_ASSERT(reporter, mm == width, msg);
}

static void test_long_text(skiatest::Reporter* reporter,
                           const SkPaint& paint,
                           const char* msg) {
    static const int kSize = 16 * 1024;
    SkAutoMalloc block(kSize);
    memset(block.get(), 'a', kSize - 1);
    char* text = static_cast<char*>(block.get());
    text[kSize - 1] = '\0';
    const SkScalar width = paint.measureText(text, kSize);

    SkScalar mm;
    const size_t length = paint.breakText(text, kSize, width, &mm);
    REPORTER_ASSERT(reporter, length == kSize, msg);
    REPORTER_ASSERT(reporter, mm == width, msg);
}

DEF_TEST(PaintBreakText, reporter) {
    SkPaint paint;
    test_monotonic(reporter, paint, "default");
    test_eq_measure_text(reporter, paint, "default");
    test_long_text(reporter, paint, "default");
    paint.setTextSize(SkIntToScalar(1 << 17));
    test_monotonic(reporter, paint, "huge text size");
    test_eq_measure_text(reporter, paint, "huge text size");
    paint.setTextSize(0);
    test_monotonic(reporter, paint, "zero text size");
}