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
|
/*
This file is part of the KDE libraries
SPDX-FileCopyrightText: 2012 Rolf Eike Beer <kde@opensource.sf-tec.de>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include "httpobjecttest.h"
#include <QTest>
#include <QByteArray>
QTEST_MAIN(HeaderObjectTest)
static void runTest()
{
TestHTTPProtocol protocol("http", QByteArray(), "local://");
protocol.testParseContentDisposition(QStringLiteral("inline; filename=\"foo.pdf\""));
}
void HeaderObjectTest::runAllTests()
{
runTest();
}
TestHTTPProtocol::TestHTTPProtocol(const QByteArray &protocol, const QByteArray &pool, const QByteArray &app)
: HTTPProtocol(protocol, pool, app)
{
}
TestHTTPProtocol::~TestHTTPProtocol()
{
}
void TestHTTPProtocol::testParseContentDisposition(const QString &disposition)
{
parseContentDisposition(disposition);
}
#include "moc_httpobjecttest.cpp"
|