File: toxstring_test.cpp

package info (click to toggle)
qtox 1.18.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 28,996 kB
  • sloc: cpp: 48,067; xml: 8,560; python: 704; sh: 232; makefile: 14
file content (386 lines) | stat: -rw-r--r-- 11,394 bytes parent folder | download
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
/* SPDX-License-Identifier: GPL-3.0-or-later
 * Copyright © 2018-2019 by The qTox Project Contributors
 * Copyright © 2024-2025 The TokTok team.
 */

#include "src/core/toxstring.h"

#include "src/widget/form/settings/generalform.h" // getLocales

#include <QByteArray>
#include <QString>
#include <QtTest/QtTest>

class TestToxString : public QObject
{
    Q_OBJECT
private slots:
    void QStringTest();
    void QByteArrayTest();
    void uint8_tTest();
    void emptyQStrTest();
    void emptyQByteTest();
    void emptyUINT8Test();
    void nullptrUINT8Test();
    void localesTest();
    void filterTest();
    void emojiTest();
    void handshakeEmojiTest();
    void coloredEmojiTest();
    void combiningCharacterTest();
    void multiLineTest();
    void tabTest();

private:
    /* Test Strings */
    //"My Test String" - test text
    static const QString testStr;
    static const QByteArray testByte;
    static const uint8_t* testUINT8;
    static const int lengthUINT8;

    //"" - empty test text
    static const QString emptyStr;
    static const QByteArray emptyByte;
    static const uint8_t* emptyUINT8;
    static const int emptyLength;
};


/* Test Strings */
//"My Test String" - test text
const QString TestToxString::testStr = QStringLiteral("My Test String");
const QByteArray TestToxString::testByte = QByteArrayLiteral("My Test String");
const uint8_t* TestToxString::testUINT8 = reinterpret_cast<const uint8_t*>("My Test String");
const int TestToxString::lengthUINT8 = 14;

//"" - empty test text
const QString TestToxString::emptyStr = QStringLiteral("");
const QByteArray TestToxString::emptyByte = QByteArrayLiteral("");
const uint8_t* TestToxString::emptyUINT8 = reinterpret_cast<const uint8_t*>("");
const int TestToxString::emptyLength = 0;

/**
 * @brief Use QString as input data, check output: QString, QByteArray, size_t and uint8_t
 *        QVERIFY(expected == result);
 */
void TestToxString::QStringTest()
{
    // Create Test Object with QString constructor
    ToxString test(testStr);

    // Check QString
    QString test_string = test.getQString();
    QVERIFY(testStr == test_string);

    // Check QByteArray
    QByteArray test_byte = test.getBytes();
    QVERIFY(testByte == test_byte);

    // Check uint8_t pointer
    const uint8_t* test_int = test.data();
    size_t test_size = test.size();
    QVERIFY(lengthUINT8 == test_size);
    for (int i = 0; i <= lengthUINT8; i++) {
        QVERIFY(testUINT8[i] == test_int[i]);
    }
}

/**
 * @brief Use QByteArray as input data, check output: QString, QByteArray, size_t and uint8_t
 *        QVERIFY(expected == result);
 */
void TestToxString::QByteArrayTest()
{
    // Create Test Object with QByteArray constructor
    ToxString test(testByte);

    // Check QString
    QString test_string = test.getQString();
    QVERIFY(testStr == test_string);

    // Check QByteArray
    QByteArray test_byte = test.getBytes();
    QVERIFY(testByte == test_byte);

    // Check uint8_t pointer
    const uint8_t* test_int = test.data();
    size_t test_size = test.size();
    QVERIFY(lengthUINT8 == test_size);
    for (int i = 0; i <= lengthUINT8; i++) {
        QVERIFY(testUINT8[i] == test_int[i]);
    }
}

/**
 * @brief Use uint8t* and size_t as input data, check output: QString, QByteArray, size_t and
 * uint8_t QVERIFY(expected == result);
 */
void TestToxString::uint8_tTest()
{
    // Create Test Object with uint8_t constructor
    ToxString test(testUINT8, lengthUINT8);

    // Check QString
    QString test_string = test.getQString();
    QVERIFY(testStr == test_string);

    // Check QByteArray
    QByteArray test_byte = test.getBytes();
    QVERIFY(testByte == test_byte);

    // Check uint8_t pointer
    const uint8_t* test_int = test.data();
    size_t test_size = test.size();
    QVERIFY(lengthUINT8 == test_size);
    for (int i = 0; i <= lengthUINT8; i++) {
        QVERIFY(testUINT8[i] == test_int[i]);
    }
}

/**
 * @brief Use empty QString as input data, check output: QString, QByteArray, size_t and uint8_t
 *        QVERIFY(expected == result);
 */
void TestToxString::emptyQStrTest()
{
    // Create Test Object with QString constructor
    ToxString test(emptyStr);

    // Check QString
    QString test_string = test.getQString();
    QVERIFY(emptyStr == test_string);

    // Check QByteArray
    QByteArray test_byte = test.getBytes();
    QVERIFY(emptyByte == test_byte);

    // Check uint8_t pointer
    const uint8_t* test_int = test.data();
    size_t test_size = test.size();
    QVERIFY(emptyLength == test_size);
    for (int i = 0; i <= emptyLength; i++) {
        QVERIFY(emptyUINT8[i] == test_int[i]);
    }
}

/**
 * @brief Use empty QByteArray as input data, check output: QString, QByteArray, size_t and uint8_t
 *        QVERIFY(expected == result);
 */
void TestToxString::emptyQByteTest()
{
    // Create Test Object with QByteArray constructor
    ToxString test(emptyByte);

    // Check QString
    QString test_string = test.getQString();
    QVERIFY(emptyStr == test_string);

    // Check QByteArray
    QByteArray test_byte = test.getBytes();
    QVERIFY(emptyByte == test_byte);

    // Check uint8_t pointer
    const uint8_t* test_int = test.data();
    size_t test_size = test.size();
    QVERIFY(emptyLength == test_size);
    for (int i = 0; i <= emptyLength; i++) {
        QVERIFY(emptyUINT8[i] == test_int[i]);
    }
}

/**
 * @brief Use empty uint8_t as input data, check output: QString, QByteArray, size_t and uint8_t
 *        QVERIFY(expected == result);
 */
void TestToxString::emptyUINT8Test()
{
    // Create Test Object with uint8_t constructor
    ToxString test(emptyUINT8, emptyLength);

    // Check QString
    QString test_string = test.getQString();
    QVERIFY(emptyStr == test_string);

    // Check QByteArray
    QByteArray test_byte = test.getBytes();
    QVERIFY(emptyByte == test_byte);

    // Check uint8_t pointer
    const uint8_t* test_int = test.data();
    size_t test_size = test.size();
    QVERIFY(emptyLength == test_size);
    for (int i = 0; i <= emptyLength; i++) {
        QVERIFY(emptyUINT8[i] == test_int[i]);
    }
}

/**
 * @brief Use nullptr and size_t 5 as input data, check output: QString, QByteArray, size_t and
 * uint8_t QVERIFY(expected == result);
 */
void TestToxString::nullptrUINT8Test()
{
    // Create Test Object with uint8_t constructor
    ToxString test(nullptr, 5); // nullptr and length = 5

    // Check QString
    QString test_string = test.getQString();
    QVERIFY(emptyStr == test_string);

    // Check QByteArray
    QByteArray test_byte = test.getBytes();
    QVERIFY(emptyByte == test_byte);

    // Check uint8_t pointer
    const uint8_t* test_int = test.data();
    size_t test_size = test.size();
    QVERIFY(emptyLength == test_size);
    for (int i = 0; i <= emptyLength; i++) {
        QVERIFY(emptyUINT8[i] == test_int[i]);
    }
}

/**
 * @brief Check that we can encode and decode all native locale names.
 *
 * This is a smoke test as opposed to anything comprehensive, but it ensures that scripts used
 * in the languages we have translations for can be encoded and decoded.
 */
void TestToxString::localesTest()
{
    const QStringList& locales = GeneralForm::getLocales();
    for (const QString& locale : locales) {
        const QString lang = QLocale(locale).nativeLanguageName();
        ToxString test(lang);
        const QString test_string = test.getQString();
        QCOMPARE(lang, test_string);
    }
}

/**
 * @brief Check that we filter out non-printable characters.
 */
void TestToxString::filterTest()
{
    const struct TestCase
    {
        QString input;
        QString expected;
    } testCases[] = {
        {QStringLiteral("Hello, World!"), QStringLiteral("Hello, World!")},
        {QStringLiteral("Hello, \x00World!"), QStringLiteral("Hello, World!")},
        {QStringLiteral("Hello, \x01World!"), QStringLiteral("Hello, World!")},
        {QStringLiteral("Hello, \x7FWorld!"), QStringLiteral("Hello, World!")},
        {QStringLiteral("Hello, \x80World!"), QStringLiteral("Hello, World!")},
    };
    for (const auto& testCase : testCases) {
        QCOMPARE(ToxString(testCase.input).getQString(), testCase.expected);
    }
}

/**
 * @brief Check that we can encode and decode emojis.
 *
 * These are high code point characters that are not single code units in UTF-16.
 */
void TestToxString::emojiTest()
{
    const QString testCases[] = {
        QStringLiteral("🙂"), QStringLiteral("🙁"), QStringLiteral("🤣"), QStringLiteral("🤷"),
        QStringLiteral("🤼"), QStringLiteral("🥃"), QStringLiteral("🥌"), QStringLiteral("🥐"),
    };

    for (const auto& testCase : testCases) {
        QCOMPARE(ToxString(testCase).getQString(), testCase);
    }
}

/**
 * @brief Check that we can encode and decode emojis with color modifiers.
 *
 * These use modifier characters to change the color of the emoji.
 */
void TestToxString::coloredEmojiTest()
{
    const QString testCases[] = {
        QStringLiteral("👨🏻‍👩🏻‍👧🏻‍👦🏻"),
        QStringLiteral("👨🏼‍👩🏼‍👧🏼‍👦🏼"),
        QStringLiteral("👨🏽‍👩🏽‍👧🏽‍👦🏽"),
        QStringLiteral("👨🏾‍👩🏾‍👧🏾‍👦🏾"),
        QStringLiteral("👨🏿‍👩🏿‍👧🏿‍👦🏿"),
    };
    for (const auto& testCase : testCases) {
        QCOMPARE(ToxString(testCase).getQString(), testCase);
    }
}

void TestToxString::handshakeEmojiTest()
{
    if (QChar::category(0x1FAF1) == QChar::Other_NotAssigned) {
        QSKIP("Emoji U+1FAF1 (Rightwards Hand) not supported by Qt");
    }
    const QString testCases[] = {
        QStringLiteral("🫱🏼‍🫲🏽"),
    };

    for (const auto& testCase : testCases) {
        QCOMPARE(ToxString(testCase).getQString(), testCase);
    }
}

/**
 * @brief Check that we can encode and decode combining characters.
 *
 * These are codepoints that add diacritics and other decorations around characters.
 */
void TestToxString::combiningCharacterTest()
{
    const struct TestCase
    {
        QString input;
        QString expected;
    } testCases[] = {
        // U+0303 Combining Tilde
        // U+0320 Combining Minus Sign Below
        // U+0337 Combining Short Solidus Overlay
        {QStringLiteral(u"o\u0303\u0337\u0320"), QStringLiteral(u"o\u0303\u0337\u0320")},
    };

    for (const auto& testCase : testCases) {
        QCOMPARE(ToxString(testCase.input).getQString(), testCase.expected);
    }
}

/**
 * @brief Check that we can encode and decode multi-line strings.
 */
void TestToxString::multiLineTest()
{
    const struct TestCase
    {
        QString input;
        QString expected;
    } testCases[] = {
        {QStringLiteral("Hello,\nWorld!"), QStringLiteral("Hello,\nWorld!")},
        {QStringLiteral("Hello,\r\nWorld!"), QStringLiteral("Hello,\r\nWorld!")},
        {QStringLiteral("Hello,\rWorld!"), QStringLiteral("Hello,\rWorld!")},
    };

    for (const auto& testCase : testCases) {
        QCOMPARE(ToxString(testCase.input).getQString(), testCase.expected);
    }
}

/**
 * @brief Check that we can encode and decode tabs.
 */
void TestToxString::tabTest()
{
    QCOMPARE(ToxString(QStringLiteral("Hello,\tWorld!")).getQString(),
             QStringLiteral("Hello,\tWorld!"));
}

QTEST_GUILESS_MAIN(TestToxString)
#include "toxstring_test.moc"