4
0
mirror of https://github.com/QuasarApp/qca.git synced 2025-05-03 14:49:34 +00:00
Ivan Romanov 6d690c0070 Build static QCA
Added new cmake variable SHARED_LIBRARY. By default is on.
When it is off QCA library, plugins, tools, examples and unittests
will be built as static. Also if is used static Qt plugins will be
built as static. Tested with Qt4.
2014-01-02 03:50:18 +06:00

196 lines
6.6 KiB
C++

/**
* Copyright (C) 2007 Brad Hards <bradh@frogmouth.net>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <QtCrypto>
#include <QtTest/QtTest>
#include <limits>
#ifdef QT_STATICPLUGIN
#include "import_plugins.h"
#endif
class TestClass1 : public QObject
{
Q_OBJECT
public:
TestClass1() { };
~TestClass1() { };
TestClass1(const TestClass1 & ):QObject( 0 ) { };
public slots:
void voidMethod() { };
QString qstringMethod() { return QString(); };
bool boolMethod( const QString & ) { return true; };
QString returnArg( const QString &s ) { return s; };
QByteArray returnArg( const QByteArray &a ) { return a; };
QString returnRepeatArg( const QString &s ) { return QString( s+s ); };
QString tenArgs( const QString &s, int, int, int, int, int, int, int, int, int)
{
return QString( s );
};
QString elevenArgs( const QString &s, int, int, int, int, int, int, int, int, int, int)
{
return QString( s );
};
};
Q_DECLARE_METATYPE( TestClass1 )
class MetaTypeUnitTest : public QObject
{
Q_OBJECT
private slots:
void initTestCase();
void cleanupTestCase();
void returnTypeTest();
void invokeMethodTest();
private:
QCA::Initializer* m_init;
};
void MetaTypeUnitTest::initTestCase()
{
m_init = new QCA::Initializer;
#include "../fixpaths.include"
}
void MetaTypeUnitTest::cleanupTestCase()
{
QCA::unloadAllPlugins();
delete m_init;
}
void MetaTypeUnitTest::returnTypeTest()
{
TestClass1 testClass1;
QList<QByteArray> args;
// returns a null type name because that is what void does...
#if QT_VERSION >= 0x050000
QCOMPARE( QByteArray( "void" ), QCA::methodReturnType( testClass1.metaObject(), QByteArray( "voidMethod" ), args ) );
#else
QCOMPARE( QByteArray(), QCA::methodReturnType( testClass1.metaObject(), QByteArray( "voidMethod" ), args ) );
#endif
QCOMPARE( QByteArray( "QString" ), QCA::methodReturnType( testClass1.metaObject(), QByteArray( "qstringMethod" ), args ) );
// returns a null type, because args don't match
QCOMPARE( QByteArray( "" ), QCA::methodReturnType( testClass1.metaObject(), QByteArray( "boolMethod" ), args ) );
args << "QString";
QCOMPARE( QByteArray( "QString" ), QCA::methodReturnType( testClass1.metaObject(), QByteArray( "returnArg" ), args ) );
QCOMPARE( QByteArray( "bool" ), QCA::methodReturnType( testClass1.metaObject(), QByteArray( "boolMethod" ), args ) );
args.clear();
args << "QByteArray";
QCOMPARE( QByteArray( "QByteArray" ), QCA::methodReturnType( testClass1.metaObject(), QByteArray( "returnArg" ), args ) );
args.clear();
args << "QString" << "int" << "int" << "int" << "int" << "int" << "int" << "int" << "int";
// wrong number of arguments - has 9, needs 10
QCOMPARE( QByteArray( "" ), QCA::methodReturnType( testClass1.metaObject(), QByteArray( "tenArgs" ), args ) );
// match
args << "int";
QCOMPARE( QByteArray( "QString" ), QCA::methodReturnType( testClass1.metaObject(), QByteArray( "tenArgs" ), args ) );
args << "int";
QCOMPARE( QByteArray( "QString" ), QCA::methodReturnType( testClass1.metaObject(), QByteArray( "elevenArgs" ), args ) );
}
void MetaTypeUnitTest::invokeMethodTest()
{
TestClass1 *testClass1 = new TestClass1;
QVariantList args;
bool ret;
ret = QCA::invokeMethodWithVariants( testClass1, QByteArray( "voidMethod" ), args, 0 );
QVERIFY( ret );
ret = QCA::invokeMethodWithVariants( testClass1, QByteArray( "noSuchMethod" ), args, 0 );
QVERIFY( ret == false );
QVariant stringRes;
ret = QCA::invokeMethodWithVariants( testClass1, QByteArray( "qstringMethod" ), args, &stringRes );
QVERIFY( ret );
QVERIFY( stringRes.isValid() );
QVariant result ( false );
QString fakeArg;
args << fakeArg;
ret = QCA::invokeMethodWithVariants( testClass1, QByteArray( "boolMethod" ), args, &result );
QVERIFY( ret );
QCOMPARE( result.toBool(), true );
result = QByteArray();
args.clear();
QByteArray myArray( "array" );
args << myArray;
ret = QCA::invokeMethodWithVariants( testClass1, QByteArray( "returnArg" ), args, &result );
QVERIFY( ret );
QCOMPARE( result.toByteArray(), myArray );
result = QString();
args.clear();
QString myString( "test words" );
args << myString;
ret = QCA::invokeMethodWithVariants( testClass1, QByteArray( "returnArg" ), args, &result );
QVERIFY( ret );
QCOMPARE( result.toString(), myString );
ret = QCA::invokeMethodWithVariants( testClass1, QByteArray( "returnRepeatArg" ), args, &result );
QVERIFY( ret );
QCOMPARE( result.toString(), myString + myString );
// 9 arguments - no matching method
result = QString( "unchanged" );
args << 0 << 0 << 0 << 0 << 0 << 0 << 0 << 0;
ret = QCA::invokeMethodWithVariants( testClass1, QByteArray( "tenArgs" ), args, &result );
QVERIFY( ret == false );
QCOMPARE( result.toString(), QString( "unchanged" ) );
// 10 args
args << 0;
ret = QCA::invokeMethodWithVariants( testClass1, QByteArray( "tenArgs" ), args, &result );
QVERIFY( ret );
QCOMPARE( result.toString(), myString );
// 11 args
result = QString( "unchanged" );
args << 0;
ret = QCA::invokeMethodWithVariants( testClass1, QByteArray( "elevenArgs" ), args, &result );
QVERIFY( ret == false );
QCOMPARE( result.toString(), QString( "unchanged" ) );
delete testClass1;
}
QTEST_MAIN(MetaTypeUnitTest)
#include "metatype.moc"