summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qfxtext/tst_qfxtext.cpp
blob: 2448898e5ec0ef45fa72934eedaf2aa7e070feaa (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
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
#include <qtest.h>
#include <QTextDocument>
#include <QtDeclarative/qmlengine.h>
#include <QtDeclarative/qmlcomponent.h>
#include <QtDeclarative/qfxtext.h>
#include <QFontMetrics>

class tst_qfxtext : public QObject

{
    Q_OBJECT
public:
    tst_qfxtext();

private slots:
    void text();
    void width();
    void wrap();
    void elide();

    // ### these tests may be trivial    
    void hAlign();
    void vAlign();
    void font();
    void style();
    void color();

private:
    QStringList standard;
    QStringList richText;

    QStringList hAlignmentStrings;
    QStringList vAlignmentStrings;

    QList<Qt::Alignment> vAlignments;
    QList<Qt::Alignment> hAlignments;

    QStringList styleStrings;
    QList<QFxText::TextStyle> styles;

    QStringList colorStrings;

    QmlEngine engine;
};

tst_qfxtext::tst_qfxtext()
{
    standard << "the quick brown fox jumped over the lazy dog"
             << "the quick brown fox\n jumped over the lazy dog";

    richText << "<i>the <b>quick</b> brown <a href=\"http://www.google.com\">fox</a> jumped over the <b>lazy</b> dog</i>"
             << "<i>the <b>quick</b> brown <a href=\"http://www.google.com\">fox</a><br>jumped over the <b>lazy</b> dog</i>";

    hAlignmentStrings << "AlignLeft"
                      << "AlignRight"
                      << "AlignHCenter";

    vAlignmentStrings << "AlignTop"
                      << "AlignBottom"
                      << "AlignVCenter";

    hAlignments << Qt::AlignLeft
                << Qt::AlignRight
                << Qt::AlignHCenter;

    vAlignments << Qt::AlignTop
                << Qt::AlignBottom
                << Qt::AlignVCenter;

    styleStrings << "Normal"
                 << "Outline"
                 << "Raised"
                 << "Sunken";

    styles << QFxText::Normal
           << QFxText::Outline
           << QFxText::Raised
           << QFxText::Sunken;

    colorStrings << "aliceblue"
                 << "antiquewhite"
                 << "aqua"
                 << "darkkhaki"
                 << "darkolivegreen"
                 << "dimgray"
                 << "palevioletred"
                 << "lightsteelblue"
                 << "#000000"
                 << "#AAAAAA"
                 << "#FFFFFF"
                 << "#2AC05F";
                 //
                 // need a different test to do alpha channel test
                 // << "#AA0011DD"
                 // << "#00F16B11";
                 // 
}

void tst_qfxtext::text()
{
    {
        QmlComponent textComponent(&engine, "<Text text=\"\" />");
        QFxText *textObject = qobject_cast<QFxText*>(textComponent.create());

        QVERIFY(textObject != 0);
        QCOMPARE(textObject->text(), QString(""));
    }

    for (int i = 0; i < standard.size(); i++)
    {
        QString componentStr = "<Text>" + standard.at(i) + "</Text>";
        QmlComponent textComponent(&engine, componentStr.toLatin1());
        QFxText *textObject = qobject_cast<QFxText*>(textComponent.create());

        QVERIFY(textObject != 0);
        QCOMPARE(textObject->text(), standard.at(i));
    }

    for (int i = 0; i < richText.size(); i++)
    {
        QString componentStr = "<Text><![CDATA[" + richText.at(i) + "]]></Text>";
        QmlComponent textComponent(&engine, componentStr.toLatin1());
        QFxText *textObject = qobject_cast<QFxText*>(textComponent.create());

        QVERIFY(textObject != 0);
        QCOMPARE(textObject->text(), richText.at(i));
    }
}

void tst_qfxtext::width()
{
    // uses Font metrics to find the width for standard and document to find the width for rich
    {
        QmlComponent textComponent(&engine, "<Text text=\"\"/>");
        QFxText *textObject = qobject_cast<QFxText*>(textComponent.create());

        QCOMPARE(textObject->width(), 0);
    }

    for (int i = 0; i < standard.size(); i++)
    {
        QFont f;
        QFontMetrics fm(f);
        int metricWidth = fm.size(Qt::TextExpandTabs && Qt::TextShowMnemonic, standard.at(i)).width();

        QString componentStr = "<Text>" + standard.at(i) + "</Text>";
        QmlComponent textComponent(&engine, componentStr.toLatin1());
        QFxText *textObject = qobject_cast<QFxText*>(textComponent.create());

        QCOMPARE(textObject->width(), metricWidth);
    }

    for (int i = 0; i < richText.size(); i++)
    {
        QTextDocument document;
        document.setHtml(richText.at(i));
        document.setDocumentMargin(0);

        int documentWidth = document.idealWidth();

        QString componentStr = "<Text><![CDATA[" + richText.at(i) + "]]></Text>";
        QmlComponent textComponent(&engine, componentStr.toLatin1());
        QFxText *textObject = qobject_cast<QFxText*>(textComponent.create());

        QCOMPARE(textObject->width(), documentWidth);
    }
}

void tst_qfxtext::wrap()
{
    // XXX Poor coverage - should at least be testing an expected height.

    // for specified width and wrap set true
    {
        QmlComponent textComponent(&engine, "<Text text=\"\" wrap=\"true\" width=\"300\"/>");
        QFxText *textObject = qobject_cast<QFxText*>(textComponent.create());

        QCOMPARE(textObject->width(), 300);
    }

    for (int i = 0; i < standard.size(); i++)
    {
        QString componentStr = "<Text wrap=\"true\" width=\"300\">" + standard.at(i) + "</Text>";
        QmlComponent textComponent(&engine, componentStr.toLatin1());
        QFxText *textObject = qobject_cast<QFxText*>(textComponent.create());

        QCOMPARE(textObject->width(), 300);
    }

    for (int i = 0; i < richText.size(); i++)
    {
        QString componentStr = "<Text wrap=\"true\" width=\"300\"><![CDATA[" + richText.at(i) + "]]></Text>";
        QmlComponent textComponent(&engine, componentStr.toLatin1());
        QFxText *textObject = qobject_cast<QFxText*>(textComponent.create());

        QCOMPARE(textObject->width(), 300);
    }

}

void tst_qfxtext::elide()
{
    for (Qt::TextElideMode m = Qt::ElideLeft; m<=Qt::ElideNone; m=Qt::TextElideMode(int(m)+1)) {
        const char* elidename[]={"ElideLeft", "ElideRight", "ElideMiddle", "ElideNone"};
        QString elide = "elide=\""+QString(elidename[int(m)])+"\"";

        // XXX Poor coverage.

        {
            QmlComponent textComponent(&engine, ("<Text text=\"\" "+elide+" width=\"300\"/>").toLatin1());
            QFxText *textObject = qobject_cast<QFxText*>(textComponent.create());

            QCOMPARE(textObject->width(), 300);
        }

        for (int i = 0; i < standard.size(); i++)
        {
            QString componentStr = "<Text "+elide+" width=\"300\">" + standard.at(i) + "</Text>";
            QmlComponent textComponent(&engine, componentStr.toLatin1());
            QFxText *textObject = qobject_cast<QFxText*>(textComponent.create());

            QCOMPARE(textObject->width(), 300);
        }

        // richtext - does nothing
        for (int i = 0; i < richText.size(); i++)
        {
            QString componentStr = "<Text "+elide+" width=\"300\"><![CDATA[" + richText.at(i) + "]]></Text>";
            QmlComponent textComponent(&engine, componentStr.toLatin1());
            QFxText *textObject = qobject_cast<QFxText*>(textComponent.create());

            QCOMPARE(textObject->width(), 300);
        }
    }
}

//the alignment tests may be trivial o.oa
void tst_qfxtext::hAlign()
{
    //test one align each, and then test if two align fails.

    for (int i = 0; i < standard.size(); i++)
    {
        for (int j=0; j < hAlignmentStrings.size(); j++)
        {
            QString componentStr = "<Text hAlign=\"" + hAlignmentStrings.at(j) + "\">" + standard.at(i) + "</Text>";
            QmlComponent textComponent(&engine, componentStr.toLatin1());
            QFxText *textObject = qobject_cast<QFxText*>(textComponent.create());

            QCOMPARE((int)textObject->hAlign(), (int)hAlignments.at(j));
        }
    }

    for (int i = 0; i < richText.size(); i++)
    {
        for (int j=0; j < hAlignmentStrings.size(); j++)
        {
            QString componentStr = "<Text hAlign=\"" + hAlignmentStrings.at(j) + "\"><![CDATA[" + richText.at(i) + "]]></Text>";
            QmlComponent textComponent(&engine, componentStr.toLatin1());
            QFxText *textObject = qobject_cast<QFxText*>(textComponent.create());

            QCOMPARE((int)textObject->hAlign(), (int)hAlignments.at(j));
        }
    }

}

void tst_qfxtext::vAlign()
{
    //test one align each, and then test if two align fails.

    for (int i = 0; i < standard.size(); i++)
    {
        for (int j=0; j < vAlignmentStrings.size(); j++)
        {
            QString componentStr = "<Text vAlign=\"" + vAlignmentStrings.at(j) + "\">" + standard.at(i) + "</Text>";
            QmlComponent textComponent(&engine, componentStr.toLatin1());
            QFxText *textObject = qobject_cast<QFxText*>(textComponent.create());

            QCOMPARE((int)textObject->vAlign(), (int)vAlignments.at(j));
        }
    }

    for (int i = 0; i < richText.size(); i++)
    {
        for (int j=0; j < vAlignmentStrings.size(); j++)
        {
            QString componentStr = "<Text vAlign=\"" + vAlignmentStrings.at(j) + "\"><![CDATA[" + richText.at(i) + "]]></Text>";
            QmlComponent textComponent(&engine, componentStr.toLatin1());
            QFxText *textObject = qobject_cast<QFxText*>(textComponent.create());

            QCOMPARE((int)textObject->vAlign(), (int)vAlignments.at(j));
        }
    }

}

void tst_qfxtext::font()
{
    //test size, then bold, then italic, then family
    { 
        QString componentStr = "<Text font.size=\"40\" text=\"Hello World\"/>";
        QmlComponent textComponent(&engine, componentStr.toLatin1());
        QFxText *textObject = qobject_cast<QFxText*>(textComponent.create());

        QCOMPARE(textObject->font()->size(), qreal(40));
        QCOMPARE(textObject->font()->bold(), false);
        QCOMPARE(textObject->font()->italic(), false);
    }

    { 
        QString componentStr = "<Text font.bold=\"true\" text=\"Hello World\"/>";
        QmlComponent textComponent(&engine, componentStr.toLatin1());
        QFxText *textObject = qobject_cast<QFxText*>(textComponent.create());

        QCOMPARE(textObject->font()->bold(), true);
        QCOMPARE(textObject->font()->italic(), false);
    }

    { 
        QString componentStr = "<Text font.italic=\"true\" text=\"Hello World\"/>";
        QmlComponent textComponent(&engine, componentStr.toLatin1());
        QFxText *textObject = qobject_cast<QFxText*>(textComponent.create());

        QCOMPARE(textObject->font()->italic(), true);
        QCOMPARE(textObject->font()->bold(), false);
    }
 
    { 
        QString componentStr = "<Text font.family=\"Helvetica\" text=\"Hello World\"/>";
        QmlComponent textComponent(&engine, componentStr.toLatin1());
        QFxText *textObject = qobject_cast<QFxText*>(textComponent.create());

        QCOMPARE(textObject->font()->family(), QString("Helvetica"));
        QCOMPARE(textObject->font()->bold(), false);
        QCOMPARE(textObject->font()->italic(), false);
    }

    { 
        QString componentStr = "<Text font.family=\"\" text=\"Hello World\"/>";
        QmlComponent textComponent(&engine, componentStr.toLatin1());
        QFxText *textObject = qobject_cast<QFxText*>(textComponent.create());

        QCOMPARE(textObject->font()->family(), QString(""));
    }
}

void tst_qfxtext::style()
{
    //test style
    for (int i = 0; i < styles.size(); i++)
    { 
        QString componentStr = "<Text style=\"" + styleStrings.at(i) + "\" text=\"Hello World\"/>";
        QmlComponent textComponent(&engine, componentStr.toLatin1());
        QFxText *textObject = qobject_cast<QFxText*>(textComponent.create());

        QCOMPARE((int)textObject->style(), (int)styles.at(i));
        QCOMPARE(textObject->styleColor(), QColor());
    }
}

void tst_qfxtext::color()
{
    //test style
    for (int i = 0; i < colorStrings.size(); i++)
    { 
        QString componentStr = "<Text color=\"" + colorStrings.at(i) + "\" text=\"Hello World\"/>";
        QmlComponent textComponent(&engine, componentStr.toLatin1());
        QFxText *textObject = qobject_cast<QFxText*>(textComponent.create());

        QCOMPARE(textObject->color(), QColor(colorStrings.at(i)));
        QCOMPARE(textObject->styleColor(), QColor());
    }

    for (int i = 0; i < colorStrings.size(); i++)
    { 
        QString componentStr = "<Text styleColor=\"" + colorStrings.at(i) + "\" text=\"Hello World\"/>";
        QmlComponent textComponent(&engine, componentStr.toLatin1());
        QFxText *textObject = qobject_cast<QFxText*>(textComponent.create());

        QCOMPARE(textObject->styleColor(), QColor(colorStrings.at(i)));
        // default color to black?
        QCOMPARE(textObject->color(), QColor("black"));
    }
    
    for (int i = 0; i < colorStrings.size(); i++)
    { 
        for (int j = 0; j < colorStrings.size(); j++)
        {
            QString componentStr = "<Text color=\"" + colorStrings.at(i) + "\" styleColor=\"" + colorStrings.at(j) + "\" text=\"Hello World\"/>";
            QmlComponent textComponent(&engine, componentStr.toLatin1());
            QFxText *textObject = qobject_cast<QFxText*>(textComponent.create());

            QCOMPARE(textObject->color(), QColor(colorStrings.at(i)));
            QCOMPARE(textObject->styleColor(), QColor(colorStrings.at(j)));
        }
    }
    {
        QString colorStr = "#AA001234";
        QColor testColor("#001234");
        testColor.setAlpha(170);

        QString componentStr = "<Text color=\"" + colorStr + "\" text=\"Hello World\"/>";
        QmlComponent textComponent(&engine, componentStr.toLatin1());
        QFxText *textObject = qobject_cast<QFxText*>(textComponent.create());

        QCOMPARE(textObject->color(), testColor);
    }
}
QTEST_MAIN(tst_qfxtext)

#include "tst_qfxtext.moc"