/** * This file is part of the KDE project * Copyright (C) 2008 Kevin Ottens * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. */ #ifndef SODEPTESTHELPERS_H #define SODEPTESTHELPERS_H #include #include #include #include #include "../qtjolie/sodephelpers_p.h" inline void sodepDump(const Jolie::Value &value, int level) { QByteArray indent; while (level>0) { indent+=" "; level--; } qDebug() << (indent+value.toByteArray()) << value.toInt() << value.toDouble(); foreach (const QByteArray &name, value.childrenNames()) { QList children = value.children(name); qDebug() << (indent+"Children:") << name; foreach (const Jolie::Value &child, children) { sodepDump(child, level+1); } } } inline void sodepDump(const Jolie::Message &message) { qDebug() << "Resource :" << message.resourcePath(); qDebug() << "Operation:" << message.operationName(); qDebug() << "Fault :" << message.fault().name(); sodepDump(message.fault().data(), 1); qDebug() << "Value :"; sodepDump(message.data(), 1); } inline void sodepCompare(const Jolie::Value &v1, const Jolie::Value &v2) { QCOMPARE(v1.isValid(), v2.isValid()); QCOMPARE(v1.isByteArray(), v2.isByteArray()); QCOMPARE(v1.isInt(), v2.isInt()); QCOMPARE(v1.isDouble(), v2.isDouble()); QCOMPARE(v1.toByteArray(), v2.toByteArray()); QCOMPARE(v1.toInt(), v2.toInt()); QCOMPARE(v1.toDouble(), v2.toDouble()); QList v1Names = v1.childrenNames(); QList v2Names = v2.childrenNames(); QCOMPARE(v1Names, v2Names); foreach (const QByteArray &name, v1Names) { QList v1Values = v1.children(name); QList v2Values = v2.children(name); QCOMPARE(v1Values.size(), v2Values.size()); for (int i=0; i