summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/io/qbuffer/tst_qbuffer.cpp
blob: 93e0d6fce836da3d0814b788e8cc0b49183c71d4 (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
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
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include <QTest>
#include <QTestEventLoop>

#include <QBuffer>
#include <QByteArray>
#include <QElapsedTimer>

#include <string>

class tst_QBuffer : public QObject
{
    Q_OBJECT
private slots:
    void open();
    void getSetCheck();
    void readBlock();
    void readBlockPastEnd();
    void writeBlock_data();
    void writeBlock();
    void seek();
    void invalidSeeks();
    void seekTest_data();
    void seekTest();
    void read_rawdata();
    void isSequential();
    void signalTest_data();
    void signalTest();
    void isClosedAfterClose();
    void readLine_data();
    void readLine();
    void canReadLine_data();
    void canReadLine();
    void atEnd();
    void readLineBoundaries();
    void getAndUngetChar();
    void writeAfterQByteArrayResize();
    void writeOfMoreThan2GiB();
    void read_null();

protected slots:
    void readyReadSlot();
    void bytesWrittenSlot(qint64 written);

private:
    qint64 totalBytesWritten;
    bool gotReadyRead;
};

// Testing get/set functions
void tst_QBuffer::getSetCheck()
{
    QBuffer obj1;
    // const QByteArray & QBuffer::data()
    // void QBuffer::setData(const QByteArray &)
    QByteArray var1("Bogus data");
    obj1.setData(var1);
    QCOMPARE(var1, obj1.data());
    obj1.setData(QByteArray());
    QCOMPARE(QByteArray(), obj1.data());
}

void tst_QBuffer::open()
{
    QByteArray data(10, 'f');

    QBuffer b;

    QTest::ignoreMessage(QtWarningMsg, "QBuffer::open: Buffer access not specified");
    QVERIFY(!b.open(QIODevice::NotOpen));
    QVERIFY(!b.isOpen());
    b.close();

    QTest::ignoreMessage(QtWarningMsg, "QBuffer::open: Buffer access not specified");
    QVERIFY(!b.open(QIODevice::Text));
    QVERIFY(!b.isOpen());
    b.close();

    QTest::ignoreMessage(QtWarningMsg, "QBuffer::open: Buffer access not specified");
    QVERIFY(!b.open(QIODevice::Unbuffered));
    QVERIFY(!b.isOpen());
    b.close();

    QVERIFY(b.open(QIODevice::ReadOnly));
    QVERIFY(b.isReadable());
    b.close();

    QVERIFY(b.open(QIODevice::WriteOnly));
    QVERIFY(b.isWritable());
    b.close();

    b.setData(data);
    QVERIFY(b.open(QIODevice::Append));
    QVERIFY(b.isWritable());
    QCOMPARE(b.size(), qint64(10));
    QCOMPARE(b.pos(), b.size());
    b.close();

    b.setData(data);
    QVERIFY(b.open(QIODevice::Truncate));
    QVERIFY(b.isWritable());
    QCOMPARE(b.size(), qint64(0));
    QCOMPARE(b.pos(), qint64(0));
    b.close();

    QVERIFY(b.open(QIODevice::ReadWrite));
    QVERIFY(b.isReadable());
    QVERIFY(b.isWritable());
    b.close();
}

// some status() tests, too
void tst_QBuffer::readBlock()
{
    const int arraySize = 10;
    char a[arraySize];
    QBuffer b;
    QCOMPARE(b.bytesAvailable(), (qint64) 0); // no data
    QCOMPARE(b.read(a, arraySize), (qint64) -1); // not opened
    QVERIFY(b.atEnd());

    QByteArray ba;
    ba.resize(arraySize);
    b.setBuffer(&ba);
    QCOMPARE(b.bytesAvailable(), (qint64) arraySize);
    b.open(QIODevice::WriteOnly);
    QCOMPARE(b.bytesAvailable(), (qint64) arraySize);
    QTest::ignoreMessage(QtWarningMsg, "QIODevice::read (QBuffer): WriteOnly device");
    QCOMPARE(b.read(a, arraySize), (qint64) -1); // no read access
    b.close();

    b.open(QIODevice::ReadOnly);
    QCOMPARE(b.bytesAvailable(), (qint64) arraySize);
    QCOMPARE(b.read(a, arraySize), (qint64) arraySize);
    QVERIFY(b.atEnd());
    QCOMPARE(b.bytesAvailable(), (qint64) 0);

    // up to 3.0.x reading beyond the end was an error while ok
    // this has been made consistent with other QIODevice sub classes in 3.1
    QCOMPARE(b.read(a, 1), qint64(0));
    QVERIFY(b.atEnd());

    // read in two chunks
    b.close();
    b.open(QIODevice::ReadOnly);
    QCOMPARE(b.bytesAvailable(), (qint64) arraySize);
    QCOMPARE(b.read(a, arraySize/2), (qint64) arraySize/2);
    QCOMPARE(b.bytesAvailable(), (qint64) arraySize/2);
    QCOMPARE(b.read(a + arraySize/2, arraySize - arraySize/2),
            (qint64)(arraySize - arraySize/2));
    QVERIFY(b.atEnd());
    QCOMPARE(b.bytesAvailable(), (qint64) 0);
}

void tst_QBuffer::readBlockPastEnd()
{
    QByteArray arr(4096 + 3616, 'd');
    QBuffer buf(&arr);

    buf.open(QIODevice::ReadOnly);
    char dummy[4096];

    buf.read(1);

    QCOMPARE(buf.read(dummy, 4096), qint64(4096));
    QCOMPARE(buf.read(dummy, 4096), qint64(3615));
    QVERIFY(buf.atEnd());
}

void tst_QBuffer::writeBlock_data()
{
    QTest::addColumn<QString>("str");

    QTest::newRow( "small_bytearray" ) << QString("Test");
    QTest::newRow( "large_bytearray" ) << QString(
        "The QBuffer class is an I/O device that operates on a QByteArray.\n"
        "QBuffer is used to read and write to a memory buffer. It is normally "
        "used with a QTextStream or a QDataStream. QBuffer has an associated "
        "QByteArray which holds the buffer data. The size() of the buffer is "
        "automatically adjusted as data is written.\n"
        "The constructor QBuffer(QByteArray) creates a QBuffer using an existing "
        "byte array. The byte array can also be set with setBuffer(). Writing to "
        "the QBuffer will modify the original byte array because QByteArray is "
        "explicitly shared.\n"
        "Use open() to open the buffer before use and to set the mode (read-only, "
        "write-only, etc.). close() closes the buffer. The buffer must be closed "
        "before reopening or calling setBuffer().\n"
        "A common way to use QBuffer is through QDataStream or QTextStream, which "
        "have constructors that take a QBuffer parameter. For convenience, there "
        "are also QDataStream and QTextStream constructors that take a QByteArray "
        "parameter. These constructors create and open an internal QBuffer.\n"
        "Note that QTextStream can also operate on a QString (a Unicode string); a "
        "QBuffer cannot.\n"
        "You can also use QBuffer directly through the standard QIODevice functions "
        "readBlock(), writeBlock() readLine(), at(), getch(), putch() and ungetch().\n"
        "See also QFile, QDataStream, QTextStream, QByteArray, Shared Classes, Collection "
        "Classes and Input/Output and Networking.\n\n"
        "The QBuffer class is an I/O device that operates on a QByteArray.\n"
        "QBuffer is used to read and write to a memory buffer. It is normally "
        "used with a QTextStream or a QDataStream. QBuffer has an associated "
        "QByteArray which holds the buffer data. The size() of the buffer is "
        "automatically adjusted as data is written.\n"
        "The constructor QBuffer(QByteArray) creates a QBuffer using an existing "
        "byte array. The byte array can also be set with setBuffer(). Writing to "
        "the QBuffer will modify the original byte array because QByteArray is "
        "explicitly shared.\n"
        "Use open() to open the buffer before use and to set the mode (read-only, "
        "write-only, etc.). close() closes the buffer. The buffer must be closed "
        "before reopening or calling setBuffer().\n"
        "A common way to use QBuffer is through QDataStream or QTextStream, which "
        "have constructors that take a QBuffer parameter. For convenience, there "
        "are also QDataStream and QTextStream constructors that take a QByteArray "
        "parameter. These constructors create and open an internal QBuffer.\n"
        "Note that QTextStream can also operate on a QString (a Unicode string); a "
        "QBuffer cannot.\n"
        "You can also use QBuffer directly through the standard QIODevice functions "
        "readBlock(), writeBlock() readLine(), at(), getch(), putch() and ungetch().\n"
        "See also QFile, QDataStream, QTextStream, QByteArray, Shared Classes, Collection "
        "Classes and Input/Output and Networking.\n\n"
        "The QBuffer class is an I/O device that operates on a QByteArray.\n"
        "QBuffer is used to read and write to a memory buffer. It is normally "
        "used with a QTextStream or a QDataStream. QBuffer has an associated "
        "QByteArray which holds the buffer data. The size() of the buffer is "
        "automatically adjusted as data is written.\n"
        "The constructor QBuffer(QByteArray) creates a QBuffer using an existing "
        "byte array. The byte array can also be set with setBuffer(). Writing to "
        "the QBuffer will modify the original byte array because QByteArray is "
        "explicitly shared.\n"
        "Use open() to open the buffer before use and to set the mode (read-only, "
        "write-only, etc.). close() closes the buffer. The buffer must be closed "
        "before reopening or calling setBuffer().\n"
        "A common way to use QBuffer is through QDataStream or QTextStream, which "
        "have constructors that take a QBuffer parameter. For convenience, there "
        "are also QDataStream and QTextStream constructors that take a QByteArray "
        "parameter. These constructors create and open an internal QBuffer.\n"
        "Note that QTextStream can also operate on a QString (a Unicode string); a "
        "QBuffer cannot.\n"
        "You can also use QBuffer directly through the standard QIODevice functions "
        "readBlock(), writeBlock() readLine(), at(), getch(), putch() and ungetch().\n"
        "See also QFile, QDataStream, QTextStream, QByteArray, Shared Classes, Collection "
        "Classes and Input/Output and Networking.");
}

void tst_QBuffer::writeBlock()
{
    QFETCH( QString, str );

    QByteArray ba;
    QBuffer buf( &ba );
    buf.open(QIODevice::ReadWrite);
    QByteArray data = str.toLatin1();
    QCOMPARE(buf.write( data.constData(), data.size() ), qint64(data.size()));

    QCOMPARE(buf.data(), str.toLatin1());
}

void tst_QBuffer::seek()
{
    QBuffer buffer;
    buffer.open(QIODevice::WriteOnly);
    QCOMPARE(buffer.size(), qint64(0));
    QCOMPARE(buffer.pos(), qint64(0));
    const qint64 pos = 10;
    QVERIFY(buffer.seek(pos));
    QCOMPARE(buffer.size(), pos);
}

void tst_QBuffer::invalidSeeks()
{
    if constexpr (sizeof(qsizetype) == sizeof(qint64)) {
        // sizeof(qsizetype) == sizeof(qint64), so +1 would overflow
        QSKIP("This is a 32-bit-only test.");
    } else {
        QBuffer buffer;
        buffer.open(QIODevice::WriteOnly);
        QCOMPARE(buffer.buffer().size(), qsizetype(0));
        QCOMPARE(buffer.pos(), qint64(0));
        constexpr qint64 MaxQByteArrayCapacity = (std::numeric_limits<qsizetype>::max)();
        // this should fail fast, not after trying to allocate nearly 2 GiB of data,
        // potentially crashing in the process:
        QVERIFY(!buffer.seek(2 * MaxQByteArrayCapacity - 1));
        QCOMPARE(buffer.buffer().size(), qsizetype(0));
        QCOMPARE(buffer.pos(), qint64(0));
        // ditto:
        QVERIFY(!buffer.seek(MaxQByteArrayCapacity + 1));
        QCOMPARE(buffer.buffer().size(), qsizetype(0));
        QCOMPARE(buffer.pos(), qint64(0));
    }
}

void tst_QBuffer::seekTest_data()
{
    writeBlock_data();
}

#define DO_VALID_SEEK(position) {                                            \
    char c;                                                                  \
    QVERIFY(buf.seek(qint64(position)));                                      \
    QCOMPARE(buf.pos(), qint64(position));                                    \
    QVERIFY(buf.getChar(&c));                                                 \
    QCOMPARE(QChar(c), str.at(qint64(position)));                             \
}
#define DO_INVALID_SEEK(position) {                                          \
    qint64 prev_pos = buf.pos();                                             \
    QVERIFY(!buf.seek(qint64(position)));                                     \
    QCOMPARE(buf.pos(), prev_pos); /* position should not be changed */                  \
}

void tst_QBuffer::seekTest()
{
    QFETCH(QString, str);

    QByteArray ba;
    QBuffer buf(&ba);
    QCOMPARE(buf.pos(), qint64(0));

    buf.open(QIODevice::ReadWrite);
    QCOMPARE(buf.pos(), qint64(0));
    QCOMPARE(buf.bytesAvailable(), qint64(0));

    QByteArray data = str.toLatin1();
    QCOMPARE(buf.write( data.constData(), data.size() ), qint64(data.size()));
    QCOMPARE(buf.bytesAvailable(), qint64(0)); // we're at the end
    QCOMPARE(buf.size(), qint64(data.size()));

    QTest::ignoreMessage(QtWarningMsg, "QBuffer::seek: Invalid pos: -1");
    DO_INVALID_SEEK(-1);

    DO_VALID_SEEK(0);
    DO_VALID_SEEK(str.size() - 1);
    QVERIFY(buf.atEnd());
    DO_VALID_SEEK(str.size() / 2);

    // Special case: valid to seek one position past the buffer.
    // Its then legal to write, but not read.
    {
        char c = 'a';
        QVERIFY(buf.seek(qint64(str.size())));
        QCOMPARE(buf.bytesAvailable(), qint64(0));
        QCOMPARE(buf.read(&c, qint64(1)), qint64(0));
        QCOMPARE(c, 'a');
        QCOMPARE(buf.write(&c, qint64(1)), qint64(1));
    }

    // Special case 2: seeking to an arbitrary position beyond the buffer auto-expands it
    {
        char c;
        const int offset = 1; // any positive integer will do
        const qint64 pos = buf.size() + offset;
        QVERIFY(buf.seek(pos));
        QCOMPARE(buf.bytesAvailable(), qint64(0));
        QCOMPARE(buf.pos(), pos);
        QVERIFY(!buf.getChar(&c));
        QVERIFY(buf.seek(pos - 1));
        QVERIFY(buf.getChar(&c));
        QCOMPARE(c, buf.data().at(pos - 1));
        QVERIFY(buf.seek(pos));
        QVERIFY(buf.putChar(c));
    }
}

void tst_QBuffer::read_rawdata()
{
    static const unsigned char mydata[] = {
        0x01, 0x00, 0x03, 0x84, 0x78, 0x9c, 0x3b, 0x76,
        0xec, 0x18, 0xc3, 0x31, 0x0a, 0xf1, 0xcc, 0x99,
        0x6d, 0x5b
    };

    QByteArray data = QByteArray::fromRawData((const char *)mydata, sizeof(mydata));
    QBuffer buffer(&data);
    buffer.open(QIODevice::ReadOnly);
    QDataStream in(&buffer);
    quint8 ch;
    for (int i = 0; i < (int)sizeof(mydata); ++i) {
        QVERIFY(!buffer.atEnd());
        in >> ch;
        QCOMPARE(ch, (quint8)mydata[i]);
    }
    QVERIFY(buffer.atEnd());
}

void tst_QBuffer::isSequential()
{
    QBuffer buf;
    QVERIFY(!buf.isSequential());
}

void tst_QBuffer::signalTest_data()
{
    QTest::addColumn<QByteArray>("sample");

    QTest::newRow("empty") << QByteArray();
    QTest::newRow("size 1") << QByteArray("1");
    QTest::newRow("size 2") << QByteArray("11");
    QTest::newRow("size 100") << QByteArray(100, '1');
}

void tst_QBuffer::signalTest()
{
    QFETCH(QByteArray, sample);

    totalBytesWritten = 0;

    QBuffer buf;
    buf.open(QIODevice::WriteOnly);

    buf.buffer().resize(sample.size() * 10);
    connect(&buf, SIGNAL(readyRead()), this, SLOT(readyReadSlot()));
    connect(&buf, SIGNAL(bytesWritten(qint64)), this, SLOT(bytesWrittenSlot(qint64)));

    for (int i = 0; i < 10; ++i) {
        gotReadyRead = false;
        QCOMPARE(buf.write(sample), qint64(sample.size()));
        if (sample.size() > 0) {
            QTestEventLoop::instance().enterLoop(5);
            if (QTestEventLoop::instance().timeout())
                QFAIL("Timed out when waiting for readyRead()");
            QCOMPARE(totalBytesWritten, qint64(sample.size() * (i + 1)));
            QVERIFY(gotReadyRead);
        } else {
            QCOMPARE(totalBytesWritten, qint64(0));
            QVERIFY(!gotReadyRead);
        }
    }
}

void tst_QBuffer::readyReadSlot()
{
    gotReadyRead = true;
    QTestEventLoop::instance().exitLoop();
}

void tst_QBuffer::bytesWrittenSlot(qint64 written)
{
    totalBytesWritten += written;
}

void tst_QBuffer::isClosedAfterClose()
{
    QBuffer buffer;
    buffer.open(QBuffer::ReadOnly);
    QVERIFY(buffer.isOpen());
    buffer.close();
    QVERIFY(!buffer.isOpen());
}

void tst_QBuffer::readLine_data()
{
    QTest::addColumn<QByteArray>("src");
    QTest::addColumn<int>("maxlen");
    QTest::addColumn<QByteArray>("expected");

    QTest::newRow("1") << QByteArray("line1\nline2\n") << 1024
                    << QByteArray("line1\n");
    QTest::newRow("2") << QByteArray("hi there") << 1024
                    << QByteArray("hi there");
    QTest::newRow("3") << QByteArray("l\n") << 3 << QByteArray("l\n");
    QTest::newRow("4") << QByteArray("l\n") << 2 << QByteArray("l");
}

void tst_QBuffer::readLine()
{
    QFETCH(QByteArray, src);
    QFETCH(int, maxlen);
    QFETCH(QByteArray, expected);

    QBuffer buf;
    buf.setBuffer(&src);
    char *result = new char[maxlen + 1];
    result[maxlen] = '\0';

    QVERIFY(buf.open(QIODevice::ReadOnly));

    qint64 bytes_read = buf.readLine(result, maxlen);

    QCOMPARE(bytes_read, qint64(expected.size()));
    QCOMPARE(QByteArray(result), expected);

    buf.close();
    delete[] result;

}

void tst_QBuffer::canReadLine_data()
{
    QTest::addColumn<QByteArray>("src");
    QTest::addColumn<bool>("expected");

    QTest::newRow("1") << QByteArray("no newline") << false;
    QTest::newRow("2") << QByteArray("two \n lines\n") << true;
    QTest::newRow("3") << QByteArray("\n") << true;
    QTest::newRow("4") << QByteArray() << false;
}

void tst_QBuffer::canReadLine()
{
    QFETCH(QByteArray, src);
    QFETCH(bool, expected);

    QBuffer buf;
    buf.setBuffer(&src);
    QVERIFY(!buf.canReadLine());
    QVERIFY(buf.open(QIODevice::ReadOnly));
    QCOMPARE(buf.canReadLine(), expected);
}

void tst_QBuffer::atEnd()
{
    QBuffer buffer;
    buffer.open(QBuffer::Append);
    buffer.write("heisann");
    buffer.close();

    buffer.open(QBuffer::ReadOnly);
    buffer.seek(buffer.size());
    char c;
    QVERIFY(!buffer.getChar(&c));
    QCOMPARE(buffer.read(&c, 1), qint64(0));
}

// Test that reading data out of a QBuffer a line at a time gives the same
// result as reading the whole buffer at once.
void tst_QBuffer::readLineBoundaries()
{
    QByteArray line = "This is a line\n";
    QBuffer buffer;
    buffer.open(QIODevice::ReadWrite);
    while (buffer.size() < 16384)
        buffer.write(line);

    buffer.seek(0);
    QByteArray lineByLine;
    while (!buffer.atEnd())
        lineByLine.append(buffer.readLine());

    buffer.seek(0);
    QCOMPARE(buffer.bytesAvailable(), lineByLine.size());

    QByteArray all = buffer.readAll();
    QCOMPARE(all.size(), lineByLine.size());
    QCOMPARE(all, lineByLine);
}

// Test that any character in a buffer can be read and pushed back.
void tst_QBuffer::getAndUngetChar()
{
    // Create some data in a buffer
    QByteArray line = "This is a line\n";
    QBuffer buffer;
    buffer.open(QIODevice::ReadWrite);
    while (buffer.size() < 16384)
        buffer.write(line);

    // Take a copy of the data held in the buffer
    buffer.seek(0);
    QCOMPARE(buffer.bytesAvailable(), buffer.size());
    QByteArray data = buffer.readAll();
    QCOMPARE(buffer.bytesAvailable(), qint64(0));

    // Get and unget each character in order
    for (qint64 i = 0; i < buffer.size(); ++i) {
        buffer.seek(i);
        char c;
        QVERIFY(buffer.getChar(&c));
        QCOMPARE(c, data.at((uint)i));
        buffer.ungetChar(c);
    }

    // Get and unget each character in reverse order
    for (qint64 i = buffer.size() - 1; i >= 0; --i) {
        buffer.seek(i);
        char c;
        QVERIFY(buffer.getChar(&c));
        QCOMPARE(c, data.at((uint)i));
        buffer.ungetChar(c);
    }

    // Verify that the state of the buffer still matches the original data.
    buffer.seek(0);
    QCOMPARE(buffer.bytesAvailable(), data.size());
    QCOMPARE(buffer.readAll(), data);
    QCOMPARE(buffer.bytesAvailable(), qint64(0));
}

void tst_QBuffer::writeAfterQByteArrayResize()
{
    QBuffer buffer;
    QVERIFY(buffer.open(QIODevice::WriteOnly));

    buffer.write(QByteArray().fill('a', 1000));
    QCOMPARE(buffer.buffer().size(), 1000);

    // resize the QByteArray behind QBuffer's back
    buffer.buffer().clear();
    buffer.seek(0);
    QCOMPARE(buffer.buffer().size(), 0);

    buffer.write(QByteArray().fill('b', 1000));
    QCOMPARE(buffer.buffer().size(), 1000);
}

void tst_QBuffer::writeOfMoreThan2GiB()
{
    if constexpr (sizeof(void*) == 4)
        QSKIP("This is a 64-bit-only test");

    [[maybe_unused]] constexpr size_t GiB = 1024 * 1024 * 1024;

#ifndef QT_NO_EXCEPTIONS

    try {
        //
        // GIVEN: an empty QBuffer open for writing
        //
        QBuffer buffer;
        QVERIFY(buffer.open(QIODevice::WriteOnly));

        //
        // WHEN: writing more than 2GiB in a singe chunk:
        //
        QElapsedTimer timer;
        timer.start();

        const std::string input(2 * GiB + 1, 42);

        qDebug("created dataset in %lld ms", timer.restart());

        const auto inputSize = qint64(input.size());

        QCOMPARE(buffer.write(input.data(), inputSize), inputSize);

        qDebug("performed write in %lld ms", timer.restart());

        //
        // THEN: the buffer contains the written data
        //
        QCOMPARE(buffer.buffer().size(), inputSize);
        QVERIFY(buffer.buffer() == QByteArrayView{input});

        qDebug("verified result in %lld ms", timer.elapsed());

    } catch (const std::bad_alloc &) {
        QSKIP("Cannot allocate enough memory for this test");
    }

#else
    QSKIP("This test requires exceptions enabled.");
#endif // QT_NO_EXCEPTIONS
}

void tst_QBuffer::read_null()
{
    QByteArray buffer;
    buffer.resize(32000);
    for (int i = 0; i < buffer.size(); ++i)
        buffer[i] = char(i & 0xff);

    QBuffer in(&buffer);
    in.open(QIODevice::ReadOnly);

    QByteArray chunk;

    chunk.resize(16380);
    in.read(chunk.data(), 16380);

    QCOMPARE(chunk, buffer.mid(0, chunk.size()));

    in.read(chunk.data(), 0);

    chunk.resize(8);
    in.read(chunk.data(), chunk.size());

    QCOMPARE(chunk, buffer.mid(16380, chunk.size()));
}

QTEST_MAIN(tst_QBuffer)
#include "tst_qbuffer.moc"