266 lines
6.3 KiB
C++
266 lines
6.3 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
|
** Contact: http://www.qt-project.org/legal
|
|
**
|
|
** This file is part of the QtTest module of the Qt Toolkit.
|
|
**
|
|
** $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 <QtTest/private/qtesttable_p.h>
|
|
#include <QtTest/qtestdata.h>
|
|
#include <QtTest/qtestassert.h>
|
|
|
|
#include <QtCore/qmetaobject.h>
|
|
|
|
#include <string.h>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class QTestTablePrivate
|
|
{
|
|
public:
|
|
struct ElementList
|
|
{
|
|
ElementList(): elementName(0), elementType(0), next(0) {}
|
|
const char *elementName;
|
|
int elementType;
|
|
ElementList *next;
|
|
};
|
|
|
|
struct DataList
|
|
{
|
|
DataList(): data(0), next(0) {}
|
|
QTestData *data;
|
|
DataList *next;
|
|
};
|
|
|
|
QTestTablePrivate(): list(0), dataList(0) {}
|
|
~QTestTablePrivate();
|
|
|
|
ElementList *list;
|
|
DataList *dataList;
|
|
|
|
void addColumn(int elemType, const char *elemName);
|
|
void addRow(QTestData *data);
|
|
ElementList *elementAt(int index);
|
|
QTestData *dataAt(int index);
|
|
|
|
static QTestTable *currentTestTable;
|
|
static QTestTable *gTable;
|
|
};
|
|
|
|
QTestTable *QTestTablePrivate::currentTestTable = 0;
|
|
QTestTable *QTestTablePrivate::gTable = 0;
|
|
|
|
QTestTablePrivate::ElementList *QTestTablePrivate::elementAt(int index)
|
|
{
|
|
ElementList *iter = list;
|
|
for (int i = 0; i < index; ++i) {
|
|
if (!iter)
|
|
return 0;
|
|
iter = iter->next;
|
|
}
|
|
return iter;
|
|
}
|
|
|
|
QTestData *QTestTablePrivate::dataAt(int index)
|
|
{
|
|
DataList *iter = dataList;
|
|
for (int i = 0; i < index; ++i) {
|
|
if (!iter)
|
|
return 0;
|
|
iter = iter->next;
|
|
}
|
|
return iter ? iter->data : 0;
|
|
}
|
|
|
|
QTestTablePrivate::~QTestTablePrivate()
|
|
{
|
|
DataList *dit = dataList;
|
|
while (dit) {
|
|
DataList *next = dit->next;
|
|
delete dit->data;
|
|
delete dit;
|
|
dit = next;
|
|
}
|
|
ElementList *iter = list;
|
|
while (iter) {
|
|
ElementList *next = iter->next;
|
|
delete iter;
|
|
iter = next;
|
|
}
|
|
}
|
|
|
|
void QTestTablePrivate::addColumn(int elemType, const char *elemName)
|
|
{
|
|
ElementList *item = new ElementList;
|
|
item->elementName = elemName;
|
|
item->elementType = elemType;
|
|
if (!list) {
|
|
list = item;
|
|
return;
|
|
}
|
|
ElementList *last = list;
|
|
while (last->next != 0)
|
|
last = last->next;
|
|
last->next = item;
|
|
}
|
|
|
|
void QTestTablePrivate::addRow(QTestData *data)
|
|
{
|
|
DataList *item = new DataList;
|
|
item->data = data;
|
|
if (!dataList) {
|
|
dataList = item;
|
|
return;
|
|
}
|
|
DataList *last = dataList;
|
|
while (last->next != 0)
|
|
last = last->next;
|
|
last->next = item;
|
|
}
|
|
|
|
void QTestTable::addColumn(int type, const char *name)
|
|
{
|
|
QTEST_ASSERT(type);
|
|
QTEST_ASSERT(name);
|
|
|
|
d->addColumn(type, name);
|
|
}
|
|
|
|
int QTestTable::elementCount() const
|
|
{
|
|
QTestTablePrivate::ElementList *item = d->list;
|
|
int count = 0;
|
|
while (item) {
|
|
++count;
|
|
item = item->next;
|
|
}
|
|
return count;
|
|
}
|
|
|
|
|
|
int QTestTable::dataCount() const
|
|
{
|
|
QTestTablePrivate::DataList *item = d->dataList;
|
|
int count = 0;
|
|
while (item) {
|
|
++count;
|
|
item = item->next;
|
|
}
|
|
return count;
|
|
}
|
|
|
|
bool QTestTable::isEmpty() const
|
|
{
|
|
return !d->list;
|
|
}
|
|
|
|
QTestData *QTestTable::newData(const char *tag)
|
|
{
|
|
QTestData *dt = new QTestData(tag, this);
|
|
d->addRow(dt);
|
|
return dt;
|
|
}
|
|
|
|
QTestTable::QTestTable()
|
|
{
|
|
d = new QTestTablePrivate;
|
|
QTestTablePrivate::currentTestTable = this;
|
|
}
|
|
|
|
QTestTable::~QTestTable()
|
|
{
|
|
QTestTablePrivate::currentTestTable = 0;
|
|
delete d;
|
|
}
|
|
|
|
int QTestTable::elementTypeId(int index) const
|
|
{
|
|
QTestTablePrivate::ElementList *item = d->elementAt(index);
|
|
if (!item)
|
|
return -1;
|
|
return item->elementType;
|
|
}
|
|
|
|
const char *QTestTable::dataTag(int index) const
|
|
{
|
|
QTestTablePrivate::ElementList *item = d->elementAt(index);
|
|
if (!item)
|
|
return 0;
|
|
return item->elementName;
|
|
}
|
|
|
|
QTestData *QTestTable::testData(int index) const
|
|
{
|
|
return d->dataAt(index);
|
|
}
|
|
|
|
int QTestTable::indexOf(const char *elementName) const
|
|
{
|
|
QTEST_ASSERT(elementName);
|
|
|
|
QTestTablePrivate::ElementList *item = d->list;
|
|
int i = 0;
|
|
while (item) {
|
|
if (strcmp(elementName, item->elementName) == 0)
|
|
return i;
|
|
item = item->next;
|
|
++i;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
QTestTable *QTestTable::globalTestTable()
|
|
{
|
|
if (!QTestTablePrivate::gTable)
|
|
QTestTablePrivate::gTable = new QTestTable();
|
|
return QTestTablePrivate::gTable;
|
|
}
|
|
|
|
void QTestTable::clearGlobalTestTable()
|
|
{
|
|
delete QTestTablePrivate::gTable;
|
|
QTestTablePrivate::gTable = 0;
|
|
}
|
|
|
|
QTestTable *QTestTable::currentTestTable()
|
|
{
|
|
return QTestTablePrivate::currentTestTable;
|
|
}
|
|
|
|
QT_END_NAMESPACE
|