/**************************************************************************** ** ** Copyright (C) 2013 BlackBerry Limited. All rights reserved. ** Contact: http://www.qt-project.org/legal ** ** 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 Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/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 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt 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 #include #include #include #include #include #include #include #include #include const ushort selectorIndicator = '+'; class tst_QFileSelector : public QObject { Q_OBJECT public: tst_QFileSelector() {} private slots: void basicTest_data(); void basicTest(); void urlConvenience_data(); void urlConvenience(); }; void tst_QFileSelector::basicTest_data() { /* Files existing for this test * platform/test * platform/+/test for all in QFileSelectorPrivate::platformSelectors() * extras/test * extras/test2 to test for when selector directories exist, but don't have the files * extras/+custom1/test * extras/+custom1/test3 to test for when base file doesn't exist * extras/+custom2/test * extras/+custom3/test * extras/+custom3/+custom2/test * extras/+custom3/+custom4/test * extras/+custom3/+custom5/test * extras/+custom5/+custom3/test */ QTest::addColumn("testPath"); QTest::addColumn("customSelectors"); QTest::addColumn("expectedPath"); QString test("/test");// '/' is here so dir string can also be selector string QTest::newRow("platform") << QString(":/platforms/test") << QStringList() << QString(":/platforms/") + QLatin1Char(selectorIndicator) + QFileSelectorPrivate::platformSelectors().first() + test; QString resourceTestPath(":/extras/test"); QString custom1("custom1"); QTest::newRow("custom1-noselector") << resourceTestPath << QStringList() << QString(":/extras") + test; QTest::newRow("custom1-withselector") << resourceTestPath << (QStringList() << custom1) << QString(":/extras/") + QLatin1Char(selectorIndicator) + custom1 + test; QTest::newRow("customX-withselector-nofile") << QString(":/extras/test2") << (QStringList() << custom1) << QString(":/extras/test2"); QTest::newRow("custom1-withselector-nobasefile") << QString(":/extras/test3") << (QStringList() << custom1) << QString(":/extras/test3"); QString custom2("custom2"); QString custom3("custom3"); QString custom4("custom4"); QString custom5("custom5"); QString slash("/"); QTest::newRow("custom12") << resourceTestPath << (QStringList() << custom1 << custom2) << QString(":/extras/") + QLatin1Char(selectorIndicator) + custom1 + test; QTest::newRow("custom21") << resourceTestPath << (QStringList() << custom2 << custom1) << QString(":/extras/") + QLatin1Char(selectorIndicator) + custom2 + test; QTest::newRow("custom213") << resourceTestPath << (QStringList() << custom2 << custom1 << custom3) << QString(":/extras/") + QLatin1Char(selectorIndicator) + custom2 + test; QTest::newRow("custom23") << resourceTestPath << (QStringList() << custom2 << custom3) << QString(":/extras/") + QLatin1Char(selectorIndicator) + custom2 + test; QTest::newRow("custom34nested") << resourceTestPath << (QStringList() << custom3 << custom4) << QString(":/extras/") + QLatin1Char(selectorIndicator) + custom3 + slash + QLatin1Char(selectorIndicator) + custom4 + test; QTest::newRow("custom43nested") << resourceTestPath << (QStringList() << custom4 << custom3) << QString(":/extras/") + QLatin1Char(selectorIndicator) + custom3 + slash + QLatin1Char(selectorIndicator) + custom4 + test; QTest::newRow("custom35conflict") << resourceTestPath << (QStringList() << custom3 << custom5) << QString(":/extras/") + QLatin1Char(selectorIndicator) + custom3 + slash + QLatin1Char(selectorIndicator) + custom5 + test; QTest::newRow("relativePaths") << QFINDTESTDATA("extras/test") << (QStringList() << custom1) << QFINDTESTDATA(QString("extras/") + QLatin1Char(selectorIndicator) + custom1 + QString("/test")); } void tst_QFileSelector::basicTest() { QFETCH(QString, testPath); QFETCH(QStringList, customSelectors); QFETCH(QString, expectedPath); QFileSelector fs; fs.setExtraSelectors(customSelectors); QCOMPARE(fs.select(testPath), expectedPath); } void tst_QFileSelector::urlConvenience_data() { /* Files existing for this test * extras/test * extras/+custom1/test */ QTest::addColumn("testUrl"); QTest::addColumn("customSelectors"); QTest::addColumn("expectedUrl"); QString test("/test");// '/' is here so dir string can also be selector string QString custom1("custom1"); QTest::newRow("qrc") << QUrl("qrc:///extras/test") << (QStringList() << custom1) << QUrl(QString("qrc:///extras/") + QLatin1Char(selectorIndicator) + custom1 + test); QString fileBasePath = QFINDTESTDATA("extras/test"); QString fileSelectedPath = QFINDTESTDATA(QString("extras/") + QLatin1Char(selectorIndicator) + custom1 + QString("/test")); QTest::newRow("file") << QUrl::fromLocalFile(fileBasePath) << (QStringList() << custom1) << QUrl::fromLocalFile(fileSelectedPath); // http://qt-project.org/images/qtdn/sprites-combined-latest.png is chosen as a representative real world URL // But note that this test is checking that http urls are NOT selected so it shouldn't be checked QUrl testHttpUrl("http://qt-project.org/images/sprites-combined-latest.png"); QTest::newRow("http") << testHttpUrl << (QStringList() << QString("qtdn")) << testHttpUrl; } void tst_QFileSelector::urlConvenience() { QFETCH(QUrl, testUrl); QFETCH(QStringList, customSelectors); QFETCH(QUrl, expectedUrl); QFileSelector fs; //All rows of this test use only custom selectors, so should not select before the setExtra call QCOMPARE(fs.select(testUrl), testUrl); fs.setExtraSelectors(customSelectors); QCOMPARE(fs.select(testUrl), expectedUrl); } QTEST_MAIN(tst_QFileSelector) #include "tst_qfileselector.moc"