mirror of
https://github.com/QuasarApp/qca.git
synced 2025-05-12 10:49:32 +00:00
Add another unit test - this one checks client
side providers. There is a bit to be done on this, but right now it demonstrates the problem I'm seeing with the AES-CMAC example, in that the plugin loader segfaults. CCMAIL: justin@affinix.com svn path=/trunk/kdesupport/qca/; revision=562878
This commit is contained in:
parent
255ed272ec
commit
e281c22103
unittest
@ -4,6 +4,7 @@ cd base64unittest && make check && cd .. && \
|
||||
cd bigintunittest && make check && cd .. && \
|
||||
cd certunittest && make check && cd .. && \
|
||||
cd cipherunittest && make check && cd .. && \
|
||||
cd clientplugin && make check && cd .. && \
|
||||
cd dsaunittest && make check && cd .. && \
|
||||
cd hashunittest && make check && cd .. && \
|
||||
cd hexunittest && make check && cd .. && \
|
||||
|
73
unittest/clientplugin/clientplugin.cpp
Normal file
73
unittest/clientplugin/clientplugin.cpp
Normal file
@ -0,0 +1,73 @@
|
||||
/**
|
||||
* Copyright (C) 2006 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 "clientplugin.h"
|
||||
|
||||
void ClientPlugin::initTestCase()
|
||||
{
|
||||
m_init = new QCA::Initializer;
|
||||
#include "../fixpaths.include"
|
||||
}
|
||||
|
||||
void ClientPlugin::cleanupTestCase()
|
||||
{
|
||||
delete m_init;
|
||||
}
|
||||
|
||||
class TestClientProvider : public QCA::Provider
|
||||
{
|
||||
public:
|
||||
QString name() const
|
||||
{
|
||||
return "testClientSideProvider";
|
||||
}
|
||||
|
||||
QStringList features() const
|
||||
{
|
||||
QStringList list;
|
||||
list += "testClientSideProviderFeature1";
|
||||
list += "testClientSideProviderFeature2";
|
||||
return list;
|
||||
}
|
||||
|
||||
Provider::Context *createContext(const QString &type)
|
||||
{
|
||||
if(type == "testClientSideProviderFeature1")
|
||||
// return new Feature1Context(this);
|
||||
return 0;
|
||||
else if (type == "testClientSideProviderFeature2")
|
||||
// return new Feature2Context(this);
|
||||
return 0;
|
||||
else
|
||||
return 0;
|
||||
}
|
||||
};
|
||||
|
||||
void ClientPlugin::testInsertPlugin()
|
||||
{
|
||||
QCA::insertProvider(new TestClientProvider, 0);
|
||||
}
|
||||
|
||||
QTEST_MAIN(ClientPlugin)
|
||||
|
45
unittest/clientplugin/clientplugin.h
Normal file
45
unittest/clientplugin/clientplugin.h
Normal file
@ -0,0 +1,45 @@
|
||||
/**
|
||||
* Copyright (C) 2006 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.
|
||||
*/
|
||||
#ifndef CLIENTPLUGIN_H
|
||||
#define CLIENTPLUGIN_H
|
||||
|
||||
#include <QtCrypto>
|
||||
#include <QtTest/QtTest>
|
||||
|
||||
class ClientPlugin : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
private slots:
|
||||
void initTestCase();
|
||||
void cleanupTestCase();
|
||||
void testInsertPlugin();
|
||||
|
||||
private:
|
||||
QCA::Initializer* m_init;
|
||||
|
||||
};
|
||||
|
||||
#endif
|
16
unittest/clientplugin/clientplugin.pro
Normal file
16
unittest/clientplugin/clientplugin.pro
Normal file
@ -0,0 +1,16 @@
|
||||
TEMPLATE = app
|
||||
TARGET = clientplugin
|
||||
DEPENDPATH += .
|
||||
INCLUDEPATH += ../../include/QtCrypto
|
||||
LIBS += -L../../lib -lqca
|
||||
CONFIG += qtestlib thread console
|
||||
QT -= gui
|
||||
|
||||
# check target
|
||||
QMAKE_EXTRA_TARGETS = check
|
||||
check.depends = clientplugin
|
||||
check.commands = ./clientplugin
|
||||
|
||||
# Input
|
||||
HEADERS += clientplugin.h
|
||||
SOURCES += clientplugin.cpp
|
@ -5,6 +5,7 @@ SUBDIRS += \
|
||||
bigintunittest \
|
||||
certunittest \
|
||||
cipherunittest \
|
||||
clientplugin \
|
||||
cms \
|
||||
dsaunittest \
|
||||
filewatchunittest \
|
||||
|
Loading…
x
Reference in New Issue
Block a user