From e16866e072f94410321d70daedbcb855ea878cac Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 6 Nov 2011 15:56:40 -0600 Subject: Actually move the kde files that were renamed in the last commit --- tdecore/tests/ksocktest.cpp | 109 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 tdecore/tests/ksocktest.cpp (limited to 'tdecore/tests/ksocktest.cpp') diff --git a/tdecore/tests/ksocktest.cpp b/tdecore/tests/ksocktest.cpp new file mode 100644 index 000000000..042701c93 --- /dev/null +++ b/tdecore/tests/ksocktest.cpp @@ -0,0 +1,109 @@ +/* This file is part of the KDE libraries + Copyright (c) 1999 Waldo Bastian + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License version 2 as published by the Free Software Foundation. + + 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. +*/ + +#include "kuniqueapplication.h" +#include "kglobal.h" +#include "kdebug.h" +#include "ksock.h" +#include "ksockaddr.h" +#include "kextsock.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +bool check(TQString txt, TQString a, TQString b) +{ + if (a.isEmpty()) + a = TQString::null; + if (b.isEmpty()) + b = TQString::null; + if (a == b) { + kdDebug() << txt << " : checking '" << a << "' against expected value '" << b << "'... " << "ok" << endl; + } + else { + kdDebug() << txt << " : checking '" << a << "' against expected value '" << b << "'... " << "KO !" << endl; + exit(1); + } + return true; +} + + +int +main(int argc, char *argv[]) +{ + KAboutData about("socktest", "SockTest", "version"); + KCmdLineArgs::init(argc, argv, &about); + KApplication::addCmdLineOptions(); + + KApplication app; + + TQString host, port; + + KInetSocketAddress host_address("213.203.58.36", 80); + + check("KInetSocketAddress(\"213.203.58.36\", 80)", host_address.pretty(), "213.203.58.36 port 80"); + + int result = KExtendedSocket::resolve(&host_address, host, port, NI_NAMEREQD); + printf( "resolve result: %d\n", result ); + check("KExtendedSocket::resolve() host=", host, "www.kde.org"); +// check("KExtendedSocket::resolve() port=", port, "http"); + TQPtrList list; + list = KExtendedSocket::lookup("www.kde.org", "http", KExtendedSocket::inetSocket); + for(KAddressInfo *info = list.first(); info; info = list.next()) + { + qWarning("Lookup: %s %s %s", info->address()->pretty().latin1(), + info->address()->isEqual(KInetSocketAddress("213.203.58.36", 80)) ? + "is equal to" : "is NOT equal to", + "213.203.58.36 port 80"); + } + check("KExtendedSocket::lookup()", list.first()->address()->pretty(), "213.203.58.36 port 80"); + + + + int err; + + TQPtrList cns = KExtendedSocket::lookup("www.kde.org", 0, KExtendedSocket::canonName, &err); + for (KAddressInfo *x = cns.first(); x; x = cns.next()) { + const char *canon = x->canonname(); + qWarning( "Lookup: %s", canon ? canon : ""); + } + check("KExtendedSocket::lookup() canonical", cns.first()->canonname(), "www.kde.org"); + + KExtendedSocket * sock2 = new KExtendedSocket( "www.kde.org", 80 ); + check( "KExtendedSocket ctor / connect", TQString::number( sock2->connect() ), "0" ); + + printf("FD %d\n", sock2->fd()); + + KSocketAddress* addr = KExtendedSocket::peerAddress( sock2->fd() ); + check( "peerAddress:", addr->nodeName().latin1(), "213.203.58.36" ); + + check( "isEqual:", addr->isEqual(KInetSocketAddress("213.203.58.36", 80)) ? "TRUE" : "FALSE", "TRUE"); + check( "isEqual:", addr->isEqual(KInetSocketAddress("213.203.58.36", 8080)) ? "TRUE" : "FALSE", "FALSE"); + check( "isEqual:", addr->isCoreEqual(KInetSocketAddress("213.203.58.36", 8080)) ? "TRUE" : "FALSE", "TRUE"); +} -- cgit v1.2.1