1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
|
// socket_server test cases
// Copyright (C) 2002 Dan Tomalesky and The WorldForge Project
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//
// For information about Worldforge and its authors, please contact
// the Worldforge Web Site at http://www.wordforge.org.
//
// Author: Dan Tomalesky
// Created: 2002-02-24 by Dan Tomalesky
//
// $Log: skservertest.h,v $
// Revision 1.2 2003/05/06 21:53:11 alriddoch
// 2003-05-06 Al Riddoch <alriddoch@zepler.org>
// - skstream/skstream.h, skstream/skstream.cpp, skstream_unix.h:
// Re-work basic_socket_stream so it can have either stream or datagram
// buffers.
// - ping/ping.cpp, ping/ping.h, test/basicskstreamtest.h,
// test/childskstreamtest.h, test/skservertest.h: Get the tests and examples
// building again.
//
// Revision 1.1 2002/02/26 20:33:55 grimicus
// 02/26/2002 Dan Tomalesky <grim@xynesis.com>
// * Added test cases for skserver and friends
//
// * Adding .cvsignore files so that it doesn't mess with non-cvs files anymore
//
// * In skserver.cpp and skstream.cpp, in the close() methods, I commented out
// the return; in the error part of the shutdown() call because it is
// possible that a socket can exist without it actually having been used,
// so this could error out on those cases and the socket is never actually
// closed.
//
// * In skserver.h, added can_accept() to tcp_socket_server so that it can be
// checked to see if the server socket has any connections available, so that
// accept() can then be called. (if it returns false, if accept is called,
// it will block until a connection is made)
//
// * Removed the #include <iostream> from skserver.h and skstream.h as they are
// not actually needed for any of the code. (else it comes in from some other
// include, I'm not positive)
//
// * Made some formatting changes in skserver.h along the same lines as I have
// been doing throughout the code.
//
// * Added testClose() to basicskstreamtest.
//
// * Changed the socket created in basicskstreamtest from SOCK_STREAM to
// SOCK_DGRAM though it doesn't make any difference what so ever in the
// testing.
//
// * Added the skservertests into the test runner.
//
#ifndef SKSERVERTEST_H
#define SKSERVERTEST_H
#include <skstream/skserver.h>
#include <cppunit/TestCase.h>
#include <cppunit/extensions/HelperMacros.h>
class tcpskservertest : public CppUnit::TestCase {
//macros for setting up suite.
CPPUNIT_TEST_SUITE(tcpskservertest);
CPPUNIT_TEST(testConstructor);
CPPUNIT_TEST(testAccept);
CPPUNIT_TEST(testOpen);
CPPUNIT_TEST(testClose);
CPPUNIT_TEST_SUITE_END();
private:
tcp_socket_server *skserver;
int port;
public:
tcpskservertest(std::string name) : TestCase(name) { }
tcpskservertest() { }
void testConstructor()
{
CPPUNIT_ASSERT(skserver);
CPPUNIT_ASSERT(skserver->is_open());
}
void testAccept()
{
CPPUNIT_ASSERT(skserver->is_open());
tcp_socket_stream tss(std::string("localhost"), port);
CPPUNIT_ASSERT(tss.is_open());
CPPUNIT_ASSERT(skserver->can_accept());
SOCKET_TYPE socket = skserver->accept();
CPPUNIT_ASSERT(socket != INVALID_SOCKET);
}
void testOpen()
{
skserver->open(7777);
CPPUNIT_ASSERT(skserver->is_open());
}
void testClose()
{
skserver->close();
CPPUNIT_ASSERT(!skserver->is_open());
}
void setUp()
{
port = 8888;
skserver = new tcp_socket_server(port);
}
void tearDown()
{
delete skserver;
port = 0;
}
};
class udpskservertest : public CppUnit::TestCase {
//macros for setting up suite.
CPPUNIT_TEST_SUITE(udpskservertest);
CPPUNIT_TEST(testConstructor);
CPPUNIT_TEST(testAccept);
CPPUNIT_TEST(testOpen);
CPPUNIT_TEST(testClose);
CPPUNIT_TEST_SUITE_END();
private:
udp_socket_server *skserver;
int port;
public:
udpskservertest(std::string name) : TestCase(name) { }
udpskservertest() { }
void testConstructor()
{
CPPUNIT_ASSERT(skserver);
CPPUNIT_ASSERT(skserver->is_open());
}
void testAccept()
{
CPPUNIT_ASSERT(skserver->accept() != INVALID_SOCKET);
}
void testOpen()
{
skserver->open(7777);
CPPUNIT_ASSERT(skserver->is_open());
}
void testClose()
{
skserver->close();
CPPUNIT_ASSERT(!skserver->is_open());
}
void setUp()
{
port = 8888;
skserver = new udp_socket_server(port);
}
void tearDown()
{
delete skserver;
port = 0;
}
};
#endif
|