diff -r 000000000000 -r 876b1a06bc25 tests/auto/qabstractsecuritysession/tst_qabstractsecuritysession.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/auto/qabstractsecuritysession/tst_qabstractsecuritysession.cpp Wed Aug 25 15:49:42 2010 +0300 @@ -0,0 +1,208 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the Qt Mobility Components. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** 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, 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. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ +#include "../qsfwtestutil.h" + +#include +#include +#include +#include + +QTM_USE_NAMESPACE +class TestSession : public QAbstractSecuritySession +{ +public: + TestSession() {} + virtual ~TestSession(){} + + virtual bool isAllowed(const QStringList& serviceCaps) + { + //client must have at least service caps; + QSet sub = serviceCaps.toSet() - clientCaps;; + if (sub.isEmpty()) + return true; + else + return false; + } + + void setClientCaps(const QStringList& capabilities) + { + clientCaps = capabilities.toSet(); + } + +private: + + QSet clientCaps; + +}; + +class tst_QAbstractSecuritySession: public QObject +{ + Q_OBJECT + +private slots: + void initTestCase(); + void cleanupTestCase(); + void cleanup(); + void testSecSessionHandling(); + +private: + QString path; +}; + +void tst_QAbstractSecuritySession::initTestCase() +{ + path = QCoreApplication::applicationDirPath() + "/plugins/xmldata/"; + + QSfwTestUtil::setupTempUserDb(); + QSfwTestUtil::setupTempSystemDb(); + + QSfwTestUtil::removeTempUserDb(); + QSfwTestUtil::removeTempSystemDb(); +#if defined(Q_OS_SYMBIAN) + QSfwTestUtil::removeDatabases_symbian(); +#endif +} + +void tst_QAbstractSecuritySession::cleanup() +{ + //use QEventLopp::DeferredDeletion + //QServiceManager::loadInterface makes use of deleteLater() when + //cleaning up service objects and their respective QPluginLoader + //we want to force the testcase to run the cleanup code + QCoreApplication::processEvents(QEventLoop::AllEvents|QEventLoop::DeferredDeletion); +} + +void tst_QAbstractSecuritySession::testSecSessionHandling() +{ + QFile file(QDir::toNativeSeparators(path+"testserviceplugin.xml")); + QServiceManager mgr; + QVERIFY(mgr.findServices().isEmpty()); + QVERIFY(mgr.addService(&file)); + QVERIFY(mgr.findServices() == (QStringList()<< "TestService")); + + QServiceFilter simpleFilter; + simpleFilter.setInterface("com.nokia.qt.ISimpleTypeTest"); + QList list = mgr.findInterfaces(simpleFilter); + QVERIFY(list.count() == 1); + QServiceInterfaceDescriptor simpleDesc = list.at(0); + QVERIFY(simpleDesc.isValid()); + QVERIFY(simpleDesc.majorVersion() == 1); + QVERIFY(simpleDesc.minorVersion() == 0); + QVERIFY(simpleDesc.interfaceName() == QString("com.nokia.qt.ISimpleTypeTest")); + QCOMPARE(simpleDesc.attribute(QServiceInterfaceDescriptor::Capabilities).toStringList(), + QStringList() << "simple"); + + QServiceFilter complexFilter; + complexFilter.setInterface("com.nokia.qt.IComplexTypeTest"); + list = mgr.findInterfaces(complexFilter); + QVERIFY(list.count() == 1); + QServiceInterfaceDescriptor complexDesc = list.at(0); + QVERIFY(complexDesc.isValid()); + QVERIFY(complexDesc.majorVersion() == 2); + QVERIFY(complexDesc.minorVersion() == 3); + QVERIFY(complexDesc.interfaceName() == QString("com.nokia.qt.IComplexTypeTest")); + QCOMPARE(complexDesc.attribute(QServiceInterfaceDescriptor::Capabilities).toStringList(), + QStringList() << "complex" << "simple"); + + //no QAbstractSecuritySession object + QObject* o = mgr.loadInterface(simpleDesc, 0, 0 ); + QVERIFY(o); + delete o; + o = mgr.loadInterface(complexDesc, 0, 0); + QVERIFY(o); + delete o; + + //client does not have any permission + TestSession* secSession = new TestSession(); + secSession->setClientCaps(QStringList()); + + o = mgr.loadInterface(simpleDesc, 0, secSession ); + QVERIFY(!o); + o = mgr.loadInterface(complexDesc, 0, secSession); + QVERIFY(!o); + + //client has simple permission + secSession->setClientCaps(QStringList() << "simple"); + o = mgr.loadInterface(simpleDesc, 0, secSession ); + QVERIFY(o); + delete o; + o = mgr.loadInterface(complexDesc, 0, secSession); + QVERIFY(!o); + + //client has simple and complex permission + secSession->setClientCaps(QStringList() << "simple" << "complex"); + o = mgr.loadInterface(simpleDesc, 0, secSession ); + QVERIFY(o); + delete o; + o = mgr.loadInterface(complexDesc, 0, secSession); + QVERIFY(o); + delete o; + + //client has simple, complex and advanced permission + secSession->setClientCaps(QStringList() << "simple" << "complex" << "advanced"); + o = mgr.loadInterface(simpleDesc, 0, secSession ); + QVERIFY(o); + delete o; + o = mgr.loadInterface(complexDesc, 0, secSession); + QVERIFY(o); + delete o; + + //client has unknown capability + secSession->setClientCaps(QStringList() << "unknown"); + o = mgr.loadInterface(simpleDesc, 0, secSession ); + QVERIFY(!o); + o = mgr.loadInterface(complexDesc, 0, secSession); + QVERIFY(!o); + + delete secSession; +} + +void tst_QAbstractSecuritySession::cleanupTestCase() +{ + QSfwTestUtil::removeTempUserDb(); + QSfwTestUtil::removeTempSystemDb(); +#if defined(Q_OS_SYMBIAN) + QSfwTestUtil::removeDatabases_symbian(); +#endif +} + +QTEST_MAIN(tst_QAbstractSecuritySession) +#include "tst_qabstractsecuritysession.moc"