diff options
author | abcd <amos.choy@nokia.com> | 2011-12-08 15:52:59 +1000 |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2011-12-14 01:40:53 +0100 |
commit | c256ce44ffc97d9d94f7a2d6bada3a4b9b113bbc (patch) | |
tree | 2a96761c879ac070ede4e77d01bebbb5ee04a18e /tests/auto | |
parent | 58862b02339570b2ca51347d3e248d768f52f8f0 (diff) | |
download | qtlocation-c256ce44ffc97d9d94f7a2d6bada3a4b9b113bbc.tar.gz |
Add test for user
Change-Id: I2bd338d3dc81e741b46674c171b505d28196ba69
Reviewed-by: Aaron McCarthy <aaron.mccarthy@nokia.com>
Diffstat (limited to 'tests/auto')
-rw-r--r-- | tests/auto/auto.pro | 1 | ||||
-rw-r--r-- | tests/auto/qplaceuser/qplaceuser.pro | 7 | ||||
-rw-r--r-- | tests/auto/qplaceuser/tst_qplaceuser.cpp | 152 |
3 files changed, 160 insertions, 0 deletions
diff --git a/tests/auto/auto.pro b/tests/auto/auto.pro index 3c4005a7..4ac1d5c9 100644 --- a/tests/auto/auto.pro +++ b/tests/auto/auto.pro @@ -15,6 +15,7 @@ SUBDIRS += qplace \ qplacesearchrequest \ qplacesupplier \ qplacesearchresult \ + qplaceuser \ qmlinterface SUBDIRS += geotestplugin \ diff --git a/tests/auto/qplaceuser/qplaceuser.pro b/tests/auto/qplaceuser/qplaceuser.pro new file mode 100644 index 00000000..3eab1267 --- /dev/null +++ b/tests/auto/qplaceuser/qplaceuser.pro @@ -0,0 +1,7 @@ +TEMPLATE = app +CONFIG += testcase +TARGET = tst_qplaceuser + +SOURCES += tst_qplaceuser.cpp + +QT += location testlib diff --git a/tests/auto/qplaceuser/tst_qplaceuser.cpp b/tests/auto/qplaceuser/tst_qplaceuser.cpp new file mode 100644 index 00000000..0f85d595 --- /dev/null +++ b/tests/auto/qplaceuser/tst_qplaceuser.cpp @@ -0,0 +1,152 @@ +/**************************************************************************** +** +** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the test suite of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** GNU Lesser General Public License Usage +** 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, Nokia gives you certain additional +** rights. These rights are described in the Nokia 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. +** +** Other Usage +** Alternatively, this file may be used in accordance with the terms and +** conditions contained in a signed written agreement between you and Nokia. +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#include <QtCore/QString> +#include <QtTest/QtTest> + +#include <QtLocation/QPlaceUser> + +QT_USE_NAMESPACE + +class tst_QPlaceUser : public QObject +{ + Q_OBJECT + +public: + tst_QPlaceUser(); + +private Q_SLOTS: + void constructorTest(); + void nameTest(); + void userIdTest(); + void operatorsTest(); + void operatorsTest_data(); +}; + +tst_QPlaceUser::tst_QPlaceUser() +{ +} + +void tst_QPlaceUser::constructorTest() +{ + QPlaceUser user; + QVERIFY(user.name().isEmpty()); + QVERIFY(user.userId().isEmpty()); + + user.setName(QLatin1String("Thomas Anderson")); + user.setUserId(QLatin1String("Neo")); + + QPlaceUser user2(user); + QCOMPARE(user2.name(), QLatin1String("Thomas Anderson")); + QCOMPARE(user2.userId(), QLatin1String("Neo")); +} + +void tst_QPlaceUser::nameTest() +{ + QPlaceUser user; + user.setName(QLatin1String("Thomas Anderson")); + QCOMPARE(user.name(), QLatin1String("Thomas Anderson")); + user.setName(QString()); + QVERIFY(user.name().isEmpty()); +} + +void tst_QPlaceUser::userIdTest() +{ + QPlaceUser user; + user.setUserId(QLatin1String("Neo")); + QCOMPARE(user.userId(), QLatin1String("Neo")); + user.setUserId(QString()); + QVERIFY(user.userId().isEmpty()); +} + +void tst_QPlaceUser::operatorsTest() +{ + QPlaceUser user1; + user1.setName(QLatin1String("Thomas Anderson")); + user1.setUserId(QLatin1String("Neo")); + + QPlaceUser user2; + user2.setName(QLatin1String("Thomas Anderson")); + user2.setUserId(QLatin1String("Neo")); + + QVERIFY(user1 == user2); + QVERIFY(!(user1 != user2)); + QVERIFY(user2 == user1); + QVERIFY(!(user2 != user1)); + + QPlaceUser user3; + QVERIFY(!(user1 == user3)); + QVERIFY(user1 != user3); + QVERIFY(!(user3 == user1)); + QVERIFY(user3 != user1); + + user3 = user1; + QVERIFY(user1 == user3); + QVERIFY(!(user1 != user3)); + QVERIFY(user3 == user1); + QVERIFY(!(user3 != user1)); + + QFETCH(QString, field); + + if (field == QLatin1String("name")) + user3.setName(QLatin1String("bob")); + else if (field == QLatin1String("userId")) + user3.setUserId(QLatin1String("Morpheus")); + else + qFatal("Unknown data field"); + + QVERIFY(!(user1 == user3)); + QVERIFY(user1 != user3); + QVERIFY(!(user3 == user1)); + QVERIFY(user3 != user1); +} + +void tst_QPlaceUser::operatorsTest_data() +{ + QTest::addColumn<QString>("field"); + + QTest::newRow("user name") << "name"; + QTest::newRow("user id") << "userId"; +} + +QTEST_APPLESS_MAIN(tst_QPlaceUser) + +#include "tst_qplaceuser.moc" |