initial commit
Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
261
libs/wxWidgets-3.3.1/tests/net/ipc.cpp
Normal file
261
libs/wxWidgets-3.3.1/tests/net/ipc.cpp
Normal file
@@ -0,0 +1,261 @@
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// Name: tests/net/ipc.cpp
|
||||
// Purpose: IPC classes unit tests
|
||||
// Author: Vadim Zeitlin
|
||||
// Copyright: (c) 2008 Vadim Zeitlin
|
||||
// Licence: wxWindows licence
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
// For compilers that support precompilation, includes "wx/wx.h".
|
||||
// and "wx/cppunit.h"
|
||||
#include "testprec.h"
|
||||
|
||||
|
||||
// FIXME: this tests currently sometimes hangs in Connect() for unknown reason
|
||||
// and this prevents buildbot builds from working so disabling it, but
|
||||
// the real problem needs to be fixed, of course
|
||||
#if 0
|
||||
|
||||
// this test needs threads as it runs the test server in a secondary thread
|
||||
#if wxUSE_THREADS
|
||||
|
||||
// for all others, include the necessary headers
|
||||
#ifndef WX_PRECOMP
|
||||
#include "wx/app.h"
|
||||
#endif
|
||||
|
||||
#include "wx/ipc.h"
|
||||
#include "wx/thread.h"
|
||||
|
||||
#define wxUSE_SOCKETS_FOR_IPC (!wxUSE_DDE_FOR_IPC)
|
||||
|
||||
namespace
|
||||
{
|
||||
|
||||
const char *IPC_TEST_PORT = "4242";
|
||||
const char *IPC_TEST_TOPIC = "IPC TEST";
|
||||
|
||||
} // anonymous namespace
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// test connection class used by IPCTestServer
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
class IPCTestConnection : public wxConnection
|
||||
{
|
||||
public:
|
||||
IPCTestConnection() { }
|
||||
|
||||
virtual bool OnExec(const wxString& topic, const wxString& data)
|
||||
{
|
||||
if ( topic != IPC_TEST_TOPIC )
|
||||
return false;
|
||||
|
||||
return data == "Date";
|
||||
}
|
||||
|
||||
private:
|
||||
wxDECLARE_NO_COPY_CLASS(IPCTestConnection);
|
||||
};
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// event dispatching thread class
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
class EventThread : public wxThread
|
||||
{
|
||||
public:
|
||||
EventThread()
|
||||
: wxThread(wxTHREAD_JOINABLE)
|
||||
{
|
||||
Create();
|
||||
Run();
|
||||
}
|
||||
|
||||
protected:
|
||||
virtual void *Entry()
|
||||
{
|
||||
wxTheApp->MainLoop();
|
||||
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
wxDECLARE_NO_COPY_CLASS(EventThread);
|
||||
};
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// test server class
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
class IPCTestServer : public wxServer
|
||||
{
|
||||
public:
|
||||
IPCTestServer()
|
||||
{
|
||||
m_conn = nullptr;
|
||||
|
||||
#if wxUSE_SOCKETS_FOR_IPC
|
||||
// we must call this from the main thread
|
||||
wxSocketBase::Initialize();
|
||||
#endif // wxUSE_SOCKETS_FOR_IPC
|
||||
|
||||
// we need event dispatching to work for IPC server to work
|
||||
m_thread = new EventThread;
|
||||
|
||||
Create(IPC_TEST_PORT);
|
||||
}
|
||||
|
||||
virtual ~IPCTestServer()
|
||||
{
|
||||
wxTheApp->ExitMainLoop();
|
||||
|
||||
m_thread->Wait();
|
||||
delete m_thread;
|
||||
|
||||
delete m_conn;
|
||||
|
||||
#if wxUSE_SOCKETS_FOR_IPC
|
||||
wxSocketBase::Shutdown();
|
||||
#endif // wxUSE_SOCKETS_FOR_IPC
|
||||
}
|
||||
|
||||
virtual wxConnectionBase *OnAcceptConnection(const wxString& topic)
|
||||
{
|
||||
if ( topic != IPC_TEST_TOPIC )
|
||||
return nullptr;
|
||||
|
||||
m_conn = new IPCTestConnection;
|
||||
return m_conn;
|
||||
}
|
||||
|
||||
private:
|
||||
EventThread *m_thread;
|
||||
IPCTestConnection *m_conn;
|
||||
|
||||
wxDECLARE_NO_COPY_CLASS(IPCTestServer);
|
||||
};
|
||||
|
||||
static IPCTestServer *gs_server = nullptr;
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// test client class
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
class IPCTestClient : public wxClient
|
||||
{
|
||||
public:
|
||||
IPCTestClient()
|
||||
{
|
||||
m_conn = nullptr;
|
||||
}
|
||||
|
||||
virtual ~IPCTestClient()
|
||||
{
|
||||
Disconnect();
|
||||
}
|
||||
|
||||
bool
|
||||
Connect(const wxString& host, const wxString& service, const wxString& topic)
|
||||
{
|
||||
m_conn = MakeConnection(host, service, topic);
|
||||
|
||||
return m_conn != nullptr;
|
||||
}
|
||||
|
||||
void Disconnect()
|
||||
{
|
||||
if ( m_conn )
|
||||
{
|
||||
delete m_conn;
|
||||
m_conn = nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
wxConnectionBase& GetConn() const
|
||||
{
|
||||
CPPUNIT_ASSERT( m_conn );
|
||||
|
||||
return *m_conn;
|
||||
}
|
||||
|
||||
private:
|
||||
wxConnectionBase *m_conn;
|
||||
|
||||
wxDECLARE_NO_COPY_CLASS(IPCTestClient);
|
||||
};
|
||||
|
||||
static IPCTestClient *gs_client = nullptr;
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// the test code itself
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
class IPCTestCase : public CppUnit::TestCase
|
||||
{
|
||||
public:
|
||||
IPCTestCase() { }
|
||||
|
||||
private:
|
||||
CPPUNIT_TEST_SUITE( IPCTestCase );
|
||||
CPPUNIT_TEST( Connect );
|
||||
CPPUNIT_TEST( Execute );
|
||||
CPPUNIT_TEST( Disconnect );
|
||||
CPPUNIT_TEST_SUITE_END();
|
||||
|
||||
void Connect();
|
||||
void Execute();
|
||||
void Disconnect();
|
||||
|
||||
wxDECLARE_NO_COPY_CLASS(IPCTestCase);
|
||||
};
|
||||
|
||||
CPPUNIT_TEST_SUITE_REGISTRATION( IPCTestCase );
|
||||
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( IPCTestCase, "IPCTestCase" );
|
||||
|
||||
void IPCTestCase::Connect()
|
||||
{
|
||||
gs_server = new IPCTestServer;
|
||||
gs_client = new IPCTestClient;
|
||||
|
||||
// connecting to the wrong port should fail
|
||||
CPPUNIT_ASSERT( !gs_client->Connect("localhost", "2424", IPC_TEST_TOPIC) );
|
||||
|
||||
// connecting using an unsupported topic should fail (unless the server
|
||||
// expects a ROT-13'd topic name...)
|
||||
CPPUNIT_ASSERT( !gs_client->Connect("localhost", IPC_TEST_PORT, "VCP GRFG") );
|
||||
|
||||
// connecting to the right port on the right topic should succeed
|
||||
CPPUNIT_ASSERT( gs_client->Connect("localhost", IPC_TEST_PORT, IPC_TEST_TOPIC) );
|
||||
}
|
||||
|
||||
void IPCTestCase::Execute()
|
||||
{
|
||||
wxConnectionBase& conn = gs_client->GetConn();
|
||||
|
||||
const wxString s("Date");
|
||||
CPPUNIT_ASSERT( conn.Execute(s) );
|
||||
CPPUNIT_ASSERT( conn.Execute(s.mb_str(), s.length() + 1) );
|
||||
|
||||
char bytes[] = { 1, 2, 3 };
|
||||
CPPUNIT_ASSERT( conn.Execute(bytes, WXSIZEOF(bytes)) );
|
||||
}
|
||||
|
||||
void IPCTestCase::Disconnect()
|
||||
{
|
||||
if ( gs_client )
|
||||
{
|
||||
gs_client->Disconnect();
|
||||
delete gs_client;
|
||||
gs_client = nullptr;
|
||||
}
|
||||
|
||||
if ( gs_server )
|
||||
{
|
||||
delete gs_server;
|
||||
gs_server = nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
#endif // wxUSE_THREADS
|
||||
|
||||
#endif // !__WINDOWS__
|
||||
361
libs/wxWidgets-3.3.1/tests/net/socket.cpp
Normal file
361
libs/wxWidgets-3.3.1/tests/net/socket.cpp
Normal file
@@ -0,0 +1,361 @@
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// Name: tests/net/socket.cpp
|
||||
// Purpose: wxSocket unit tests
|
||||
// Author: Vadim Zeitlin
|
||||
// Copyright: (c) 2008 Vadim Zeitlin
|
||||
// Licence: wxWindows licence
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
/*
|
||||
IMPORTANT NOTE: the environment variable WX_TEST_SERVER must be set to the
|
||||
hostname of the server to use for the tests below, if it is not set all
|
||||
tests are silently skipped (rationale: this makes it possible to run the
|
||||
test in the restricted environments (e.g. sandboxes) without any network
|
||||
connectivity).
|
||||
*/
|
||||
|
||||
// For compilers that support precompilation, includes "wx/wx.h".
|
||||
// and "wx/cppunit.h"
|
||||
#include "testprec.h"
|
||||
|
||||
|
||||
#if wxUSE_SOCKETS
|
||||
|
||||
#include "wx/socket.h"
|
||||
#include "wx/url.h"
|
||||
#include "wx/sstream.h"
|
||||
#include "wx/evtloop.h"
|
||||
|
||||
#include <memory>
|
||||
|
||||
typedef std::unique_ptr<wxSockAddress> wxSockAddressPtr;
|
||||
typedef std::unique_ptr<wxSocketClient> wxSocketClientPtr;
|
||||
|
||||
static wxString gs_serverHost(wxGetenv("WX_TEST_SERVER"));
|
||||
|
||||
class SocketTestCase : public CppUnit::TestCase
|
||||
{
|
||||
public:
|
||||
SocketTestCase() { }
|
||||
|
||||
// get the address to connect to, if nullptr is returned it means that the
|
||||
// test is disabled and shouldn't run at all
|
||||
static wxSockAddress* GetServer();
|
||||
|
||||
// get the socket to read HTTP reply from, returns nullptr if the test is
|
||||
// disabled
|
||||
static wxSocketClient* GetHTTPSocket(int flags = wxSOCKET_NONE);
|
||||
|
||||
private:
|
||||
// we need to repeat the tests twice as the sockets behave differently when
|
||||
// there is an active event loop and without it
|
||||
#define ALL_SOCKET_TESTS() \
|
||||
CPPUNIT_TEST( BlockingConnect ); \
|
||||
CPPUNIT_TEST( NonblockingConnect ); \
|
||||
CPPUNIT_TEST( ReadNormal ); \
|
||||
CPPUNIT_TEST( ReadBlock ); \
|
||||
CPPUNIT_TEST( ReadNowait ); \
|
||||
CPPUNIT_TEST( ReadWaitall ); \
|
||||
CPPUNIT_TEST( ReadAnotherThread ); \
|
||||
CPPUNIT_TEST( UrlTest )
|
||||
|
||||
CPPUNIT_TEST_SUITE( SocketTestCase );
|
||||
ALL_SOCKET_TESTS();
|
||||
CPPUNIT_TEST( PseudoTest_SetUseEventLoop );
|
||||
ALL_SOCKET_TESTS();
|
||||
CPPUNIT_TEST_SUITE_END();
|
||||
|
||||
// helper event loop class which sets itself as active only if we pass it
|
||||
// true in ctor
|
||||
class SocketTestEventLoop : public wxEventLoop
|
||||
{
|
||||
public:
|
||||
SocketTestEventLoop(bool useLoop)
|
||||
{
|
||||
m_useLoop = useLoop;
|
||||
if ( useLoop )
|
||||
{
|
||||
m_evtLoopOld = wxEventLoopBase::GetActive();
|
||||
SetActive(this);
|
||||
}
|
||||
}
|
||||
|
||||
virtual ~SocketTestEventLoop()
|
||||
{
|
||||
if ( m_useLoop )
|
||||
{
|
||||
wxEventLoopBase::SetActive(m_evtLoopOld);
|
||||
}
|
||||
}
|
||||
|
||||
private:
|
||||
bool m_useLoop;
|
||||
wxEventLoopBase *m_evtLoopOld;
|
||||
};
|
||||
|
||||
void PseudoTest_SetUseEventLoop() { ms_useLoop = true; }
|
||||
|
||||
void BlockingConnect();
|
||||
void NonblockingConnect();
|
||||
void ReadNormal();
|
||||
void ReadBlock();
|
||||
void ReadNowait();
|
||||
void ReadWaitall();
|
||||
void ReadAnotherThread();
|
||||
|
||||
void UrlTest();
|
||||
|
||||
static bool ms_useLoop;
|
||||
|
||||
wxDECLARE_NO_COPY_CLASS(SocketTestCase);
|
||||
};
|
||||
|
||||
bool SocketTestCase::ms_useLoop = false;
|
||||
|
||||
CPPUNIT_TEST_SUITE_REGISTRATION( SocketTestCase );
|
||||
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( SocketTestCase, "SocketTestCase" );
|
||||
|
||||
wxSockAddress* SocketTestCase::GetServer()
|
||||
{
|
||||
if ( gs_serverHost.empty() )
|
||||
return nullptr;
|
||||
|
||||
wxIPV4address *addr = new wxIPV4address;
|
||||
addr->Hostname(gs_serverHost);
|
||||
addr->Service("www");
|
||||
|
||||
return addr;
|
||||
}
|
||||
|
||||
wxSocketClient* SocketTestCase::GetHTTPSocket(int flags)
|
||||
{
|
||||
wxSockAddress *addr = GetServer();
|
||||
if ( !addr )
|
||||
return nullptr;
|
||||
|
||||
wxSocketClient *sock = new wxSocketClient(flags);
|
||||
sock->SetTimeout(1);
|
||||
CPPUNIT_ASSERT( sock->Connect(*addr) );
|
||||
|
||||
const wxString httpGetRoot =
|
||||
"GET / HTTP/1.1\r\n"
|
||||
"Host: " + gs_serverHost + "\r\n"
|
||||
"\r\n";
|
||||
|
||||
sock->Write(httpGetRoot.ToAscii(), httpGetRoot.length());
|
||||
|
||||
return sock;
|
||||
}
|
||||
|
||||
void SocketTestCase::BlockingConnect()
|
||||
{
|
||||
wxSockAddressPtr addr(GetServer());
|
||||
if ( !addr.get() )
|
||||
return;
|
||||
|
||||
wxSocketClient sock;
|
||||
CPPUNIT_ASSERT( sock.Connect(*addr) );
|
||||
}
|
||||
|
||||
void SocketTestCase::NonblockingConnect()
|
||||
{
|
||||
wxSockAddressPtr addr(GetServer());
|
||||
if ( !addr.get() )
|
||||
return;
|
||||
|
||||
SocketTestEventLoop loop(ms_useLoop);
|
||||
|
||||
wxSocketClient sock;
|
||||
sock.Connect(*addr, false);
|
||||
sock.WaitOnConnect(10);
|
||||
|
||||
CPPUNIT_ASSERT( sock.IsConnected() );
|
||||
}
|
||||
|
||||
void SocketTestCase::ReadNormal()
|
||||
{
|
||||
SocketTestEventLoop loop(ms_useLoop);
|
||||
|
||||
wxSocketClientPtr sock(GetHTTPSocket());
|
||||
if ( !sock.get() )
|
||||
return;
|
||||
|
||||
char bufSmall[128];
|
||||
sock->Read(bufSmall, WXSIZEOF(bufSmall));
|
||||
|
||||
CPPUNIT_ASSERT_EQUAL( wxSOCKET_NOERROR, sock->LastError() );
|
||||
CPPUNIT_ASSERT_EQUAL( WXSIZEOF(bufSmall), (size_t)sock->LastCount() );
|
||||
CPPUNIT_ASSERT_EQUAL( WXSIZEOF(bufSmall), (size_t)sock->LastReadCount() );
|
||||
|
||||
|
||||
char bufBig[102400];
|
||||
sock->Read(bufBig, WXSIZEOF(bufBig));
|
||||
|
||||
CPPUNIT_ASSERT_EQUAL( wxSOCKET_NOERROR, sock->LastError() );
|
||||
CPPUNIT_ASSERT( WXSIZEOF(bufBig) >= sock->LastCount() );
|
||||
CPPUNIT_ASSERT( WXSIZEOF(bufBig) >= sock->LastReadCount() );
|
||||
}
|
||||
|
||||
void SocketTestCase::ReadBlock()
|
||||
{
|
||||
wxSocketClientPtr sock(GetHTTPSocket(wxSOCKET_BLOCK));
|
||||
if ( !sock.get() )
|
||||
return;
|
||||
|
||||
char bufSmall[128];
|
||||
sock->Read(bufSmall, WXSIZEOF(bufSmall));
|
||||
|
||||
CPPUNIT_ASSERT_EQUAL( wxSOCKET_NOERROR, sock->LastError() );
|
||||
CPPUNIT_ASSERT_EQUAL( WXSIZEOF(bufSmall), (size_t)sock->LastCount() );
|
||||
CPPUNIT_ASSERT_EQUAL( WXSIZEOF(bufSmall), (size_t)sock->LastReadCount() );
|
||||
|
||||
|
||||
char bufBig[102400];
|
||||
sock->Read(bufBig, WXSIZEOF(bufBig));
|
||||
|
||||
CPPUNIT_ASSERT_EQUAL( wxSOCKET_NOERROR, sock->LastError() );
|
||||
CPPUNIT_ASSERT( WXSIZEOF(bufBig) >= sock->LastCount() );
|
||||
CPPUNIT_ASSERT( WXSIZEOF(bufBig) >= sock->LastReadCount() );
|
||||
}
|
||||
|
||||
void SocketTestCase::ReadNowait()
|
||||
{
|
||||
wxSocketClientPtr sock(GetHTTPSocket(wxSOCKET_NOWAIT));
|
||||
if ( !sock.get() )
|
||||
return;
|
||||
|
||||
char buf[1024];
|
||||
sock->Read(buf, WXSIZEOF(buf));
|
||||
if ( sock->LastError() != wxSOCKET_WOULDBLOCK )
|
||||
{
|
||||
CPPUNIT_ASSERT_EQUAL( wxSOCKET_NOERROR, sock->LastError() );
|
||||
}
|
||||
}
|
||||
|
||||
void SocketTestCase::ReadWaitall()
|
||||
{
|
||||
SocketTestEventLoop loop(ms_useLoop);
|
||||
|
||||
wxSocketClientPtr sock(GetHTTPSocket(wxSOCKET_WAITALL));
|
||||
if ( !sock.get() )
|
||||
return;
|
||||
|
||||
char buf[128];
|
||||
sock->Read(buf, WXSIZEOF(buf));
|
||||
|
||||
CPPUNIT_ASSERT_EQUAL( wxSOCKET_NOERROR, sock->LastError() );
|
||||
CPPUNIT_ASSERT_EQUAL( WXSIZEOF(buf), (size_t)sock->LastCount() );
|
||||
CPPUNIT_ASSERT_EQUAL( WXSIZEOF(buf), (size_t)sock->LastReadCount() );
|
||||
}
|
||||
|
||||
void SocketTestCase::ReadAnotherThread()
|
||||
{
|
||||
class SocketThread : public wxThread
|
||||
{
|
||||
public:
|
||||
SocketThread()
|
||||
: wxThread(wxTHREAD_JOINABLE)
|
||||
{
|
||||
}
|
||||
|
||||
virtual void* Entry() override
|
||||
{
|
||||
wxSocketClientPtr sock(SocketTestCase::GetHTTPSocket(wxSOCKET_BLOCK));
|
||||
if ( !sock )
|
||||
return nullptr;
|
||||
|
||||
char bufSmall[128];
|
||||
sock->Read(bufSmall, WXSIZEOF(bufSmall));
|
||||
|
||||
REQUIRE( sock->LastError() == wxSOCKET_NOERROR );
|
||||
CHECK( sock->LastCount() == WXSIZEOF(bufSmall) );
|
||||
CHECK( sock->LastReadCount() == WXSIZEOF(bufSmall) );
|
||||
|
||||
REQUIRE_NOTHROW( sock.reset() );
|
||||
|
||||
return nullptr;
|
||||
}
|
||||
};
|
||||
|
||||
SocketThread thr;
|
||||
|
||||
SocketTestEventLoop loop(ms_useLoop);
|
||||
|
||||
thr.Run();
|
||||
|
||||
CHECK( thr.Wait() == nullptr );
|
||||
}
|
||||
|
||||
void SocketTestCase::UrlTest()
|
||||
{
|
||||
if ( gs_serverHost.empty() )
|
||||
return;
|
||||
|
||||
SocketTestEventLoop loop(ms_useLoop);
|
||||
|
||||
wxURL url("http://" + gs_serverHost);
|
||||
|
||||
const std::unique_ptr<wxInputStream> in(url.GetInputStream());
|
||||
CPPUNIT_ASSERT( in.get() );
|
||||
|
||||
wxStringOutputStream out;
|
||||
CPPUNIT_ASSERT_EQUAL( wxSTREAM_EOF, in->Read(out).GetLastError() );
|
||||
}
|
||||
|
||||
TEST_CASE("wxDatagramSocket::ShortRead", "[socket][dgram]")
|
||||
{
|
||||
// Check that reading fewer bytes than are present in a
|
||||
// datagram does not leave the socket in an error state
|
||||
|
||||
wxIPV4address addr;
|
||||
addr.LocalHost();
|
||||
addr.Service(19898);// Arbitrary port number
|
||||
wxDatagramSocket sock(addr);
|
||||
|
||||
// Send ourselves a datagram
|
||||
unsigned int sendbuf[4] = {1, 2, 3, 4};
|
||||
sock.SendTo(addr, sendbuf, sizeof(sendbuf));
|
||||
|
||||
// Read less than we know we sent
|
||||
unsigned int recvbuf[1] = {0};
|
||||
sock.Read(recvbuf, sizeof(recvbuf));
|
||||
CHECK(!sock.Error());
|
||||
CHECK(sock.LastReadCount() == sizeof(recvbuf));
|
||||
CHECK(recvbuf[0] == sendbuf[0]);
|
||||
}
|
||||
|
||||
TEST_CASE("wxDatagramSocket::ShortPeek", "[socket][dgram]")
|
||||
{
|
||||
// Check that peeking fewer bytes than are present in a datagram
|
||||
// does not lose the rest of the data in that datagram (#23594)
|
||||
|
||||
wxIPV4address addr;
|
||||
addr.LocalHost();
|
||||
addr.Service(27384);// Arbitrary port number
|
||||
wxDatagramSocket sock(addr);
|
||||
|
||||
// Send ourselves 2 datagrams
|
||||
unsigned int sendbuf1[2] = {1, 2};
|
||||
sock.SendTo(addr, sendbuf1, sizeof(sendbuf1));
|
||||
unsigned int sendbuf2[2] = {3, 4};
|
||||
sock.SendTo(addr, sendbuf2, sizeof(sendbuf2));
|
||||
|
||||
long timeout_s = 1;
|
||||
if ( !sock.WaitForRead(timeout_s) )
|
||||
return;
|
||||
|
||||
// Peek the first word
|
||||
unsigned int peekbuf[1] = {0};
|
||||
sock.Peek(peekbuf, sizeof(peekbuf));
|
||||
CHECK(sock.LastCount() == sizeof(peekbuf));
|
||||
CHECK(peekbuf[0] == sendbuf1[0]);
|
||||
|
||||
// Read the whole of the first datagram
|
||||
unsigned int recvbuf[2] = {0};
|
||||
sock.Read(recvbuf, sizeof(recvbuf));
|
||||
CHECK(sock.LastReadCount() == sizeof(recvbuf));
|
||||
CHECK(recvbuf[0] == sendbuf1[0]);
|
||||
CHECK(recvbuf[1] == sendbuf1[1]);
|
||||
}
|
||||
|
||||
#endif // wxUSE_SOCKETS
|
||||
1280
libs/wxWidgets-3.3.1/tests/net/webrequest.cpp
Normal file
1280
libs/wxWidgets-3.3.1/tests/net/webrequest.cpp
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user