/**************************************************************************** ** ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt Mobility Components. ** ** $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 "qmalgorithms.h" QTM_USE_NAMESPACE class tst_QMAlgorithms : public QObject { Q_OBJECT public: tst_QMAlgorithms() {} ~tst_QMAlgorithms() {} private slots: void initTestCase(); void partialSortContainer(); void partialSortIterator(); void partialSortWithLessThan(); void partialSortWithGreaterThan(); private: QList originalList; QList sorted; }; void tst_QMAlgorithms::initTestCase() { originalList.clear(); originalList << 21 << 38 << 19 << 36 << 12 << 3 << 0 << 14 << 16 << 6 << 31 << 24 << 25 << 5 << 8 << 39 << 15 << 28 << 37 << 18 << 2 << 4 << 34 << 32 << 13 << 7 << 10 << 9 << 23 << 1 << 30 << 17 << 22 << 20 << 11 << 29 << 33 << 27 << 26 << 35; sorted = originalList; qSort(sorted); } // Each of these tests are the same, just with different versions of partial sort void tst_QMAlgorithms::partialSortContainer() { for (int i = 0; i < originalList.size(); i++) { for (int j = i; j < originalList.size(); j++) { QList partiallySorted = originalList; qPartialSort(partiallySorted, i, j); for (int k = i; k < j; k++) { QCOMPARE(partiallySorted[k], sorted[k]); } } } } void tst_QMAlgorithms::partialSortIterator() { for (int i = 0; i < originalList.size(); i++) { for (int j = i; j < originalList.size(); j++) { QList partiallySorted = originalList; qPartialSort(partiallySorted.begin(), partiallySorted.end(), partiallySorted.begin() + i, partiallySorted.end() + j); for (int k = i; k < j; k++) { QCOMPARE(partiallySorted[k], sorted[k]); } } } } void tst_QMAlgorithms::partialSortWithLessThan() { for (int i = 0; i < originalList.size(); i++) { for (int j = i; j < originalList.size(); j++) { QList partiallySorted = originalList; qPartialSort(partiallySorted.begin(), partiallySorted.end(), partiallySorted.begin() + i, partiallySorted.end() + j, qLess()); for (int k = i; k < j; k++) { QCOMPARE(partiallySorted[k], sorted[k]); } } } } void tst_QMAlgorithms::partialSortWithGreaterThan() { qSort(sorted.begin(), sorted.end(), qGreater()); for (int i = 0; i < originalList.size(); i++) { for (int j = i; j < originalList.size(); j++) { QList partiallySorted = originalList; qPartialSort(partiallySorted.begin(), partiallySorted.end(), partiallySorted.begin()+i, partiallySorted.begin()+j, qGreater()); for (int k = i; k < j; k++) { QCOMPARE(partiallySorted[k], sorted[k]); } } } } QTEST_MAIN(tst_QMAlgorithms) #include "tst_qmalgorithms.moc"