304 lines
11 KiB
C++
Executable file
304 lines
11 KiB
C++
Executable file
/******************************************************************************\
|
|
* Copyright (c) 2004-2015
|
|
*
|
|
* Author(s):
|
|
* Volker Fischer
|
|
*
|
|
******************************************************************************
|
|
*
|
|
* 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.,
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*
|
|
\******************************************************************************/
|
|
|
|
#if !defined ( TESTBENCH_HOIHJH8_3_43445KJIUHF1912__INCLUDED_ )
|
|
#define TESTBENCH_HOIHJH8_3_43445KJIUHF1912__INCLUDED_
|
|
|
|
#include <QObject>
|
|
#include <QTimer>
|
|
#include <QDateTime>
|
|
#include <QUdpSocket>
|
|
#include <QHostAddress>
|
|
#include "global.h"
|
|
#include "socket.h"
|
|
#include "protocol.h"
|
|
#include "util.h"
|
|
|
|
|
|
/* Classes ********************************************************************/
|
|
class CTestbench : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
CTestbench ( QString sNewAddress, quint16 iNewPort ) :
|
|
sAddress ( sNewAddress ),
|
|
iPort ( iNewPort )
|
|
{
|
|
// bind socket (try 100 port numbers)
|
|
quint16 iPortIncrement = 0; // start value: port nubmer plus ten
|
|
bool bSuccess = false; // initialization for while loop
|
|
|
|
while ( !bSuccess && ( iPortIncrement <= 100 ) )
|
|
{
|
|
bSuccess = UdpSocket.bind ( QHostAddress( QHostAddress::Any ),
|
|
22222 + iPortIncrement );
|
|
|
|
iPortIncrement++;
|
|
}
|
|
|
|
// connect protocol signal
|
|
QObject::connect ( &Protocol, SIGNAL ( MessReadyForSending ( CVector<uint8_t> ) ),
|
|
this, SLOT ( OnSendProtMessage ( CVector<uint8_t> ) ) );
|
|
|
|
// connect and start the timer (testbench heartbeat)
|
|
QObject::connect ( &Timer, SIGNAL ( timeout() ),
|
|
this, SLOT ( OnTimer() ) );
|
|
|
|
Timer.start ( 1 ); // 1 ms
|
|
}
|
|
|
|
protected:
|
|
int GenRandomIntInRange ( const int iStart, const int iEnd ) const
|
|
{
|
|
return static_cast<int> ( iStart +
|
|
( ( static_cast<double> ( iEnd - iStart + 1 ) * rand() ) / RAND_MAX ) );
|
|
}
|
|
|
|
QString GenRandomString() const
|
|
{
|
|
const int iLen = GenRandomIntInRange ( 0, 111 );
|
|
QString strReturn = "";
|
|
|
|
for ( int i = 0; i < iLen; i++ )
|
|
{
|
|
strReturn += static_cast<char> ( GenRandomIntInRange ( 0, 255 ) );
|
|
}
|
|
|
|
return strReturn;
|
|
}
|
|
|
|
QString sAddress;
|
|
quint16 iPort;
|
|
QTimer Timer;
|
|
CProtocol Protocol;
|
|
QUdpSocket UdpSocket;
|
|
|
|
public slots:
|
|
void OnTimer()
|
|
{
|
|
CVector<CChannelInfo> vecChanInfo ( 1 );
|
|
CNetworkTransportProps NetTrProps;
|
|
CServerCoreInfo ServerInfo;
|
|
CVector<CServerInfo> vecServerInfo ( 1 );
|
|
CHostAddress CurHostAddress ( QHostAddress ( sAddress ), iPort );
|
|
CChannelCoreInfo ChannelCoreInfo;
|
|
ELicenceType eLicenceType;
|
|
|
|
// generate random protocol message
|
|
switch ( GenRandomIntInRange ( 0, 27 ) )
|
|
{
|
|
case 0: // PROTMESSID_JITT_BUF_SIZE
|
|
Protocol.CreateJitBufMes ( GenRandomIntInRange ( 0, 10 ) );
|
|
break;
|
|
|
|
case 1: // PROTMESSID_REQ_JITT_BUF_SIZE
|
|
Protocol.CreateReqJitBufMes();
|
|
break;
|
|
|
|
case 2: // PROTMESSID_CHANNEL_GAIN
|
|
Protocol.CreateChanGainMes ( GenRandomIntInRange ( 0, 20 ),
|
|
GenRandomIntInRange ( -100, 100 ) );
|
|
break;
|
|
|
|
case 3: // PROTMESSID_CONN_CLIENTS_LIST_NAME
|
|
vecChanInfo[0].iChanID = GenRandomIntInRange ( -2, 20 );
|
|
vecChanInfo[0].iIpAddr = GenRandomIntInRange ( 0, 100000 );
|
|
vecChanInfo[0].strName = GenRandomString();
|
|
|
|
Protocol.CreateConClientListNameMes ( vecChanInfo );
|
|
break;
|
|
|
|
case 4: // PROTMESSID_CONN_CLIENTS_LIST
|
|
vecChanInfo[0].iChanID = GenRandomIntInRange ( -2, 20 );
|
|
vecChanInfo[0].iIpAddr = GenRandomIntInRange ( 0, 100000 );
|
|
vecChanInfo[0].strName = GenRandomString();
|
|
|
|
Protocol.CreateConClientListMes ( vecChanInfo );
|
|
break;
|
|
|
|
case 5: // PROTMESSID_REQ_CONN_CLIENTS_LIST
|
|
Protocol.CreateReqConnClientsList();
|
|
break;
|
|
|
|
case 6: // PROTMESSID_CHANNEL_NAME
|
|
Protocol.CreateChanNameMes ( GenRandomString() );
|
|
break;
|
|
|
|
case 7: // PROTMESSID_CHANNEL_INFOS
|
|
ChannelCoreInfo.eCountry =
|
|
static_cast<QLocale::Country> ( GenRandomIntInRange ( 0, 100 ) );
|
|
|
|
ChannelCoreInfo.eSkillLevel =
|
|
static_cast<ESkillLevel> ( GenRandomIntInRange ( 0, 3 ) );
|
|
|
|
ChannelCoreInfo.iInstrument = GenRandomIntInRange ( 0, 100 );
|
|
ChannelCoreInfo.strCity = GenRandomString();
|
|
ChannelCoreInfo.strName = GenRandomString();
|
|
|
|
Protocol.CreateChanInfoMes ( ChannelCoreInfo );
|
|
break;
|
|
|
|
case 8: // PROTMESSID_REQ_CHANNEL_INFOS
|
|
Protocol.CreateReqChanInfoMes();
|
|
break;
|
|
|
|
case 9: // PROTMESSID_CHAT_TEXT
|
|
Protocol.CreateChatTextMes ( GenRandomString() );
|
|
break;
|
|
|
|
case 10: // PROTMESSID_LICENCE_REQUIRED
|
|
eLicenceType =
|
|
static_cast<ELicenceType> ( GenRandomIntInRange ( 0, 1 ) );
|
|
|
|
Protocol.CreateLicenceRequiredMes ( eLicenceType );
|
|
break;
|
|
|
|
case 11: // PROTMESSID_NETW_TRANSPORT_PROPS
|
|
NetTrProps.eAudioCodingType =
|
|
static_cast<EAudComprType> ( GenRandomIntInRange ( 0, 2 ) );
|
|
|
|
NetTrProps.iAudioCodingArg = GenRandomIntInRange ( -100, 100 );
|
|
NetTrProps.iBaseNetworkPacketSize = GenRandomIntInRange ( -2, 1000 );
|
|
NetTrProps.iBlockSizeFact = GenRandomIntInRange ( -2, 100 );
|
|
NetTrProps.iNumAudioChannels = GenRandomIntInRange ( -2, 10 );
|
|
NetTrProps.iSampleRate = GenRandomIntInRange ( -2, 10000 );
|
|
NetTrProps.iVersion = GenRandomIntInRange ( -2, 10000 );
|
|
|
|
Protocol.CreateNetwTranspPropsMes ( NetTrProps );
|
|
break;
|
|
|
|
case 12: // PROTMESSID_REQ_NETW_TRANSPORT_PROPS
|
|
Protocol.CreateReqNetwTranspPropsMes();
|
|
break;
|
|
|
|
case 13: // PROTMESSID_OPUS_SUPPORTED
|
|
Protocol.CreateOpusSupportedMes();
|
|
break;
|
|
|
|
case 14: // PROTMESSID_CLM_PING_MS
|
|
Protocol.CreateCLPingMes ( CurHostAddress,
|
|
GenRandomIntInRange ( -2, 1000 ) );
|
|
break;
|
|
|
|
case 15: // PROTMESSID_CLM_PING_MS_WITHNUMCLIENTS
|
|
Protocol.CreateCLPingWithNumClientsMes ( CurHostAddress,
|
|
GenRandomIntInRange ( -2, 1000 ),
|
|
GenRandomIntInRange ( -2, 1000 ) );
|
|
break;
|
|
|
|
case 16: // PROTMESSID_CLM_SERVER_FULL
|
|
Protocol.CreateCLServerFullMes ( CurHostAddress );
|
|
break;
|
|
|
|
case 17: // PROTMESSID_CLM_REGISTER_SERVER
|
|
ServerInfo.bPermanentOnline =
|
|
static_cast<bool> ( GenRandomIntInRange ( 0, 1 ) );
|
|
|
|
ServerInfo.eCountry =
|
|
static_cast<QLocale::Country> ( GenRandomIntInRange ( 0, 100 ) );
|
|
|
|
ServerInfo.iLocalPortNumber = GenRandomIntInRange ( -2, 10000 );
|
|
ServerInfo.iMaxNumClients = GenRandomIntInRange ( -2, 10000 );
|
|
ServerInfo.strCity = GenRandomString();
|
|
ServerInfo.strName = GenRandomString();
|
|
ServerInfo.strTopic = GenRandomString();
|
|
|
|
Protocol.CreateCLRegisterServerMes ( CurHostAddress,
|
|
ServerInfo );
|
|
break;
|
|
|
|
case 18: // PROTMESSID_CLM_UNREGISTER_SERVER
|
|
Protocol.CreateCLUnregisterServerMes ( CurHostAddress );
|
|
break;
|
|
|
|
case 19: // PROTMESSID_CLM_SERVER_LIST
|
|
vecServerInfo[0].bPermanentOnline =
|
|
static_cast<bool> ( GenRandomIntInRange ( 0, 1 ) );
|
|
|
|
vecServerInfo[0].eCountry =
|
|
static_cast<QLocale::Country> ( GenRandomIntInRange ( 0, 100 ) );
|
|
|
|
vecServerInfo[0].HostAddr = CurHostAddress;
|
|
vecServerInfo[0].iLocalPortNumber = GenRandomIntInRange ( -2, 10000 );
|
|
vecServerInfo[0].iMaxNumClients = GenRandomIntInRange ( -2, 10000 );
|
|
vecServerInfo[0].strCity = GenRandomString();
|
|
vecServerInfo[0].strName = GenRandomString();
|
|
vecServerInfo[0].strTopic = GenRandomString();
|
|
|
|
Protocol.CreateCLServerListMes ( CurHostAddress,
|
|
vecServerInfo );
|
|
break;
|
|
|
|
case 20: // PROTMESSID_CLM_REQ_SERVER_LIST
|
|
Protocol.CreateCLReqServerListMes ( CurHostAddress );
|
|
break;
|
|
|
|
case 21: // PROTMESSID_CLM_SEND_EMPTY_MESSAGE
|
|
Protocol.CreateCLSendEmptyMesMes ( CurHostAddress,
|
|
CurHostAddress );
|
|
break;
|
|
|
|
case 22: // PROTMESSID_CLM_EMPTY_MESSAGE
|
|
Protocol.CreateCLEmptyMes ( CurHostAddress );
|
|
break;
|
|
|
|
case 23: // PROTMESSID_CLM_DISCONNECTION
|
|
Protocol.CreateCLDisconnection ( CurHostAddress );
|
|
break;
|
|
|
|
case 24: // PROTMESSID_CLM_VERSION_AND_OS
|
|
Protocol.CreateCLVersionAndOSMes ( CurHostAddress );
|
|
break;
|
|
|
|
case 25: // PROTMESSID_CLM_REQ_VERSION_AND_OS
|
|
Protocol.CreateCLReqVersionAndOSMes ( CurHostAddress );
|
|
break;
|
|
|
|
case 26: // PROTMESSID_ACKN
|
|
Protocol.CreateAndImmSendAcknMess ( GenRandomIntInRange ( -10, 100 ),
|
|
GenRandomIntInRange ( -100, 100 ) );
|
|
break;
|
|
|
|
case 27:
|
|
// arbitrary "audio" packet (with random sizes)
|
|
CVector<uint8_t> vecMessage ( GenRandomIntInRange ( 1, 1000 ) );
|
|
OnSendProtMessage ( vecMessage );
|
|
break;
|
|
}
|
|
}
|
|
|
|
void OnSendProtMessage ( CVector<uint8_t> vecMessage )
|
|
{
|
|
UdpSocket.writeDatagram (
|
|
(const char*) &( (CVector<uint8_t>) vecMessage )[0],
|
|
vecMessage.Size(), QHostAddress ( sAddress ), iPort );
|
|
|
|
// reset protocol so that we do not have to wait for an acknowledge to
|
|
// send the next message
|
|
Protocol.Reset();
|
|
}
|
|
};
|
|
|
|
#endif /* !defined ( TESTBENCH_HOIHJH8_3_43445KJIUHF1912__INCLUDED_ ) */
|