/**************************************************************************** ** ** Copyright (C) 2015 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** ** This file is part of the test suite of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see http://www.qt.io/terms-conditions. For further ** information use the contact form at http://www.qt.io/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 or version 3 as published by the Free ** Software Foundation and appearing in the file LICENSE.LGPLv21 and ** LICENSE.LGPLv3 included in the packaging of this file. Please review the ** following information to ensure the GNU Lesser General Public License ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** As a special exception, The Qt Company gives you certain additional ** rights. These rights are described in The Qt Company LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include #include #include //TESTED_FILES= QT_FORWARD_DECLARE_CLASS(Q3UriDrag) class tst_Q3UriDrag : public QObject { Q_OBJECT public: tst_Q3UriDrag(); virtual ~tst_Q3UriDrag(); public slots: void initTestCase(); void cleanupTestCase(); private slots: void decodeLocalFiles_data(); void decodeLocalFiles(); void decodeToUnicodeUris_data(); void decodeToUnicodeUris(); void uriToLocalFile_data(); void uriToLocalFile(); void localFileToUri_data(); void localFileToUri(); private: Q3UriDrag *uriDrag; }; tst_Q3UriDrag::tst_Q3UriDrag() { } tst_Q3UriDrag::~tst_Q3UriDrag() { } void tst_Q3UriDrag::initTestCase() { uriDrag = new Q3UriDrag(); } void tst_Q3UriDrag::cleanupTestCase() { delete uriDrag; uriDrag = 0; } void tst_Q3UriDrag::decodeLocalFiles_data() { QTest::addColumn("localFiles"); QTest::addColumn("decodedFiles"); #ifdef Q_WS_WIN QTest::newRow("singleFileWithAbsPath") << QStringList("c:/main.cpp") << QStringList("c:/main.cpp"); #else QTest::newRow("singleFileWithAbsPath") << QStringList("/main.cpp") << QStringList("/main.cpp"); #endif QStringList multipleFilesWithAbsPaths; #ifdef Q_WS_WIN multipleFilesWithAbsPaths << "c:/main.cpp" << "c:/home/test.cpp" << "e:/andy/quridrag.cpp" << "//somehost/somfile"; #else multipleFilesWithAbsPaths << "/main.cpp" << "/home/test.cpp" << "/andy/quridrag.cpp"; #endif QTest::newRow("multipleFilesWithAbsPaths") << multipleFilesWithAbsPaths << multipleFilesWithAbsPaths; QTest::newRow("nonLocalFile") << QStringList("http://qt.nokia.com") << QStringList(); QStringList mixOfLocalAndNonLocalFiles; #ifdef Q_WS_WIN mixOfLocalAndNonLocalFiles << "http://qt.nokia.com" << "c:/main.cpp" << "ftp://qt.nokia.com/doc"; QTest::newRow("mixOfLocalAndNonLocalFiles") << mixOfLocalAndNonLocalFiles << QStringList("c:/main.cpp"); #else mixOfLocalAndNonLocalFiles << "http://qt.nokia.com" << "/main.cpp" << "ftp://qt.nokia.com/doc"; QTest::newRow("mixOfLocalAndNonLocalFiles") << mixOfLocalAndNonLocalFiles << QStringList("/main.cpp"); #endif } void tst_Q3UriDrag::decodeLocalFiles() { QFETCH(QStringList, localFiles); QFETCH(QStringList, decodedFiles); uriDrag->setFileNames(localFiles); QStringList decodeList; QVERIFY(Q3UriDrag::decodeLocalFiles(uriDrag, decodeList)); QCOMPARE(decodeList.join(";;"), decodedFiles.join(";;")); // Need to add the unicodeUris test separately } void tst_Q3UriDrag::decodeToUnicodeUris_data() { QTest::addColumn("unicodeUris"); QTest::addColumn("decodedFiles"); #ifdef Q_WS_WIN QTest::newRow("singleFileWithAbsPath") << QStringList("c:/main.cpp") << QStringList("c:/main.cpp"); #else QTest::newRow("singleFileWithAbsPath") << QStringList("/main.cpp") << QStringList("/main.cpp"); #endif QStringList multipleFiles; QStringList multipleFilesUU; #ifdef Q_WS_WIN multipleFiles << "c:/main.cpp" << "c:/home/with space test.cpp" << "e:/andy/~quridrag.cpp"; multipleFilesUU << "c:/main.cpp" << "c:/home/with space test.cpp" << "e:/andy/~quridrag.cpp"; #else multipleFiles << "/main.cpp" << "/home/with space test.cpp" << "/andy/~quridrag.cpp"; multipleFilesUU << "/main.cpp" << "/home/with space test.cpp" << "/andy/~quridrag.cpp"; #endif QTest::newRow("multipleFiles") << multipleFiles << multipleFilesUU; QTest::newRow("nonLocalUris") << QStringList("http://qt.nokia.com") << QStringList("http://qt.nokia.com"); QStringList mixOfLocalAndNonLocalUris; QStringList mixOfLocalAndNonLocalUrisUU; #ifdef Q_WS_WIN mixOfLocalAndNonLocalUris << "http://qt.nokia.com" << "c:/with space main.cpp" << "ftp://qt.nokia.com/doc"; mixOfLocalAndNonLocalUrisUU << "http://qt.nokia.com" << "c:/with space main.cpp" << "ftp://qt.nokia.com/doc"; #else mixOfLocalAndNonLocalUris << "http://qt.nokia.com" << "/main.cpp" << "ftp://qt.nokia.com/doc"; mixOfLocalAndNonLocalUrisUU << "http://qt.nokia.com" << "/main.cpp" << "ftp://qt.nokia.com/doc"; #endif QTest::newRow("mixOfLocalAndNonLocalUris") << mixOfLocalAndNonLocalUris << mixOfLocalAndNonLocalUrisUU; } void tst_Q3UriDrag::decodeToUnicodeUris() { // RFC 2396 used for reference // // Possible AbsoluteURIs are: // // http://qt.nokia.com // c:/main.cpp // QFETCH(QStringList, unicodeUris); QFETCH(QStringList, decodedFiles); uriDrag->setUnicodeUris(unicodeUris); QStringList decodeList; QVERIFY(Q3UriDrag::decodeToUnicodeUris(uriDrag, decodeList)); QCOMPARE(decodeList.join(";;"), decodedFiles.join(";;")); // Need to test setFileNames separately } void tst_Q3UriDrag::uriToLocalFile_data() { QTest::addColumn("uri"); QTest::addColumn("localFile"); //QTest::newRow("localFileNoEncoding") << QString("main.cpp") << QString("main.cpp"); //QTest::newRow("localFileAbsPathNoEnc") << QString("c:/main.cpp") << QString("c:/main.cpp"); //QTest::newRow("localFileAbsPathNoEnc-2") << QString("/main.cpp") << QString("/main.cpp"); //QTest::newRow("localFileEncoding") << QString("Fran%c3%a7ois") << QString::fromUtf8("François"); //QTest::newRow("localFileAbsPathEnc") << QString("c:/main.cpp") << QString("c:/main.cpp"); //QTest::newRow("localFileAbsPathEnc-2") << QString("/main.cpp") << QString("/main.cpp"); QTest::newRow("fileSchemelocalFileNoEncoding") << QString("file:///main.cpp") << QString("/main.cpp"); #ifdef Q_WS_WIN QTest::newRow("fileSchemelocalFileAbsPathNoEnc") << QString("file:///c:/main.cpp") << QString("c:/main.cpp"); QTest::newRow("fileSchemelocalFileWindowsNetworkPath") << QString("file://somehost/somefile") << QString("//somehost/somefile"); #endif QTest::newRow("fileSchemelocalFileEncoding") << QString("file:///Fran%e7ois") << QString::fromUtf8("/François"); QTest::newRow("nonLocalFile") << QString("http://qt.nokia.com") << QString(); } void tst_Q3UriDrag::uriToLocalFile() { QFETCH(QString, uri); QFETCH(QString, localFile); QCOMPARE(Q3UriDrag::uriToLocalFile(uri.utf8()), localFile); } void tst_Q3UriDrag::localFileToUri_data() { QTest::addColumn("localFile"); QTest::addColumn("uri"); #ifdef Q_WS_WIN QTest::newRow("fileSchemelocalFileWindowsNetworkPath") << QString("//somehost/somefile") << QString("file://somehost/somefile"); QTest::newRow("hash in path") << QString("c:/tmp/p#d") << QString("file:///c:/tmp/p%23d"); #else QTest::newRow("fileSchemelocalFile") << QString("/somehost/somefile") << QString("file:///somehost/somefile"); QTest::newRow("hash in path") << QString("/tmp/p#d") << QString("file:///tmp/p%23d"); #endif } void tst_Q3UriDrag::localFileToUri() { QFETCH(QString, localFile); QFETCH(QString, uri); QCOMPARE(Q3UriDrag::localFileToUri(localFile), uri.toUtf8()); } QTEST_MAIN(tst_Q3UriDrag) #include "tst_q3uridrag.moc"