mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-26 07:59:35 -05:00
fixed ftserver1test
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6038 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
4756711f10
commit
871ca11aff
@ -2,6 +2,10 @@
|
|||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <util/rsid.h>
|
#include <util/rsid.h>
|
||||||
|
#include <pqi/p3linkmgr.h>
|
||||||
|
#include <pqi/authgpg.h>
|
||||||
|
#include <pqi/authssl.h>
|
||||||
|
#include <rsserver/p3peers.h>
|
||||||
|
|
||||||
class TestUtils
|
class TestUtils
|
||||||
{
|
{
|
||||||
@ -42,4 +46,51 @@ class TestUtils
|
|||||||
{
|
{
|
||||||
return t_RsGenericIdType<8>::random().toStdString(true);
|
return t_RsGenericIdType<8>::random().toStdString(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class DummyAuthGPG: public AuthGPG
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
DummyAuthGPG(const std::string& ownId)
|
||||||
|
:AuthGPG("pgp_pubring.pgp","pgp_secring.pgp","pgp_trustdb.pgp","lock"), mOwnId(ownId)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
virtual std::string getGPGOwnId()
|
||||||
|
{
|
||||||
|
return mOwnId ;
|
||||||
|
}
|
||||||
|
|
||||||
|
virtual bool isGPGAccepted(const std::string& pgp_id) { return true ; }
|
||||||
|
|
||||||
|
private:
|
||||||
|
std::string mOwnId ;
|
||||||
|
};
|
||||||
|
|
||||||
|
class DummyAuthSSL: public AuthSSLimpl
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
DummyAuthSSL(const std::string& ownId)
|
||||||
|
: mOwnId(ownId)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
virtual std::string OwnId()
|
||||||
|
{
|
||||||
|
return mOwnId ;
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
std::string mOwnId ;
|
||||||
|
};
|
||||||
|
|
||||||
|
class DummyRsPeers: public p3Peers
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
DummyRsPeers(p3LinkMgr *lm, p3PeerMgr *pm, p3NetMgr *nm) : p3Peers(lm,pm,nm) {}
|
||||||
|
|
||||||
|
//virtual bool getFriendList(std::list<std::string>& fl) { ; return true ;}
|
||||||
|
|
||||||
|
private:
|
||||||
|
std::list<std::string> mFriends ;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
@ -41,8 +41,8 @@ ftextralisttest : ftextralisttest.o
|
|||||||
ftdataplextest : ftdataplextest.o ftsearch_dummy.o ftdata_dummy.o
|
ftdataplextest : ftdataplextest.o ftsearch_dummy.o ftdata_dummy.o
|
||||||
$(CC) $(CFLAGS) -o ftdataplextest ftdata_dummy.o ftdataplextest.o ftsearch_dummy.o $(LIBS)
|
$(CC) $(CFLAGS) -o ftdataplextest ftdata_dummy.o ftdataplextest.o ftsearch_dummy.o $(LIBS)
|
||||||
|
|
||||||
ftserver1test : ftserver1test.o
|
ftserver1test : ftserver1test.o pqitestor.o
|
||||||
$(CC) $(CFLAGS) -o ftserver1test ftserver1test.o $(LIBS)
|
$(CC) $(CFLAGS) -o ftserver1test ftserver1test.o pqitestor.o $(LIBS)
|
||||||
|
|
||||||
ftserver2test : ftserver2test.o
|
ftserver2test : ftserver2test.o
|
||||||
$(CC) $(CFLAGS) -o ftserver2test ftserver2test.o $(LIBS)
|
$(CC) $(CFLAGS) -o ftserver2test ftserver2test.o $(LIBS)
|
||||||
|
@ -56,53 +56,6 @@
|
|||||||
|
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
|
||||||
class FakeGPG: public AuthGPG
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
FakeGPG(const std::string& ownId)
|
|
||||||
:AuthGPG("pgp_pubring.pgp","pgp_secring.pgp","pgp_trustdb.pgp","lock"), mOwnId(ownId)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual std::string getGPGOwnId()
|
|
||||||
{
|
|
||||||
return mOwnId ;
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual bool isGPGAccepted(const std::string& pgp_id) { return true ; }
|
|
||||||
|
|
||||||
private:
|
|
||||||
std::string mOwnId ;
|
|
||||||
};
|
|
||||||
|
|
||||||
class FakeSSL: public AuthSSLimpl
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
FakeSSL(const std::string& ownId)
|
|
||||||
: mOwnId(ownId)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual std::string OwnId()
|
|
||||||
{
|
|
||||||
return mOwnId ;
|
|
||||||
}
|
|
||||||
|
|
||||||
private:
|
|
||||||
std::string mOwnId ;
|
|
||||||
};
|
|
||||||
|
|
||||||
class FakeRsPeers: public p3Peers
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
FakeRsPeers(p3LinkMgr *lm, p3PeerMgr *pm, p3NetMgr *nm) : p3Peers(lm,pm,nm) {}
|
|
||||||
|
|
||||||
virtual bool getFriendList(std::list<std::string>& fl) { fl = mFriends ; return true ;}
|
|
||||||
|
|
||||||
private:
|
|
||||||
std::list<std::string> mFriends ;
|
|
||||||
};
|
|
||||||
|
|
||||||
class TestData
|
class TestData
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
@ -176,10 +129,10 @@ int main(int argc, char **argv)
|
|||||||
std::string ssl_own_id = TestUtils::createRandomSSLId() ;
|
std::string ssl_own_id = TestUtils::createRandomSSLId() ;
|
||||||
std::string gpg_own_id = TestUtils::createRandomPGPId() ;
|
std::string gpg_own_id = TestUtils::createRandomPGPId() ;
|
||||||
|
|
||||||
FakeGPG fakeGPG(gpg_own_id) ;
|
TestUtils::DummyAuthGPG fakeGPG(gpg_own_id) ;
|
||||||
AuthGPG::setAuthGPG_debug(&fakeGPG) ;
|
AuthGPG::setAuthGPG_debug(&fakeGPG) ;
|
||||||
|
|
||||||
FakeSSL fakeSSL(ssl_own_id) ;
|
TestUtils::DummyAuthSSL fakeSSL(ssl_own_id) ;
|
||||||
AuthSSL::setAuthSSL_debug(&fakeSSL) ;
|
AuthSSL::setAuthSSL_debug(&fakeSSL) ;
|
||||||
|
|
||||||
/* do logging */
|
/* do logging */
|
||||||
@ -263,8 +216,7 @@ int main(int argc, char **argv)
|
|||||||
p3LinkMgrIMPL *linkMgr = new p3LinkMgrIMPL(peerMgr,netMgr);
|
p3LinkMgrIMPL *linkMgr = new p3LinkMgrIMPL(peerMgr,netMgr);
|
||||||
mLinkMgrs[*it] = linkMgr;
|
mLinkMgrs[*it] = linkMgr;
|
||||||
|
|
||||||
rsPeers = new FakeRsPeers(linkMgr,peerMgr,netMgr) ;
|
rsPeers = new TestUtils::DummyRsPeers(linkMgr,peerMgr,netMgr) ;
|
||||||
|
|
||||||
|
|
||||||
for(fit = friendList.begin(); fit != friendList.end(); fit++)
|
for(fit = friendList.begin(); fit != friendList.end(); fit++)
|
||||||
{
|
{
|
||||||
|
@ -41,8 +41,12 @@
|
|||||||
|
|
||||||
#include "pqi/p3linkmgr.h"
|
#include "pqi/p3linkmgr.h"
|
||||||
#include "pqi/p3peermgr.h"
|
#include "pqi/p3peermgr.h"
|
||||||
|
#include "pqi/p3netmgr.h"
|
||||||
|
|
||||||
#include "util/rsdebug.h"
|
#include "util/rsdebug.h"
|
||||||
|
#include "util/utest.h"
|
||||||
|
#include "common/testutils.h"
|
||||||
|
#include "retroshare/rsiface.h"
|
||||||
|
|
||||||
#include "pqitestor.h"
|
#include "pqitestor.h"
|
||||||
#include "util/rsdir.h"
|
#include "util/rsdir.h"
|
||||||
@ -50,6 +54,7 @@
|
|||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
|
||||||
|
|
||||||
|
INITTEST();
|
||||||
|
|
||||||
void do_random_server_test(ftDataMultiplex *mplex, ftExtraList *eList, std::list<std::string> &files);
|
void do_random_server_test(ftDataMultiplex *mplex, ftExtraList *eList, std::list<std::string> &files);
|
||||||
|
|
||||||
@ -67,10 +72,10 @@ int main(int argc, char **argv)
|
|||||||
uint32_t debugLevel = 5;
|
uint32_t debugLevel = 5;
|
||||||
bool debugStderr = true;
|
bool debugStderr = true;
|
||||||
|
|
||||||
std::list<std::string> fileList;
|
std::list<SharedDirInfo> fileList;
|
||||||
std::list<std::string> peerIds;
|
std::list<std::string> peerIds;
|
||||||
std::map<std::string, ftServer *> mFtServers;
|
std::map<std::string, ftServer *> mFtServers;
|
||||||
std::map<std::string, p3ConnectMgr *> mConnMgrs;
|
std::map<std::string, p3LinkMgrIMPL *> mLinkMgrs;
|
||||||
|
|
||||||
#ifdef PTW32_STATIC_LIB
|
#ifdef PTW32_STATIC_LIB
|
||||||
pthread_win32_process_attach_np();
|
pthread_win32_process_attach_np();
|
||||||
@ -127,10 +132,26 @@ int main(int argc, char **argv)
|
|||||||
for(; optind < argc; optind++)
|
for(; optind < argc; optind++)
|
||||||
{
|
{
|
||||||
std::cerr << "Adding: " << argv[optind] << std::endl;
|
std::cerr << "Adding: " << argv[optind] << std::endl;
|
||||||
fileList.push_back(std::string(argv[optind]));
|
|
||||||
|
SharedDirInfo info ;
|
||||||
|
info.filename = std::string(argv[optind]) ;
|
||||||
|
info.virtualname = info.filename ;
|
||||||
|
info.shareflags = DIR_FLAGS_PERMISSIONS_MASK ;
|
||||||
|
info.parent_groups.clear() ;
|
||||||
|
|
||||||
|
fileList.push_back(info);
|
||||||
}
|
}
|
||||||
std::cerr << "Point 2" << std::endl;
|
std::cerr << "Point 2" << std::endl;
|
||||||
|
|
||||||
|
std::string ssl_own_id = TestUtils::createRandomSSLId() ;
|
||||||
|
std::string gpg_own_id = TestUtils::createRandomPGPId() ;
|
||||||
|
|
||||||
|
TestUtils::DummyAuthGPG fakeGPG(gpg_own_id) ;
|
||||||
|
AuthGPG::setAuthGPG_debug(&fakeGPG) ;
|
||||||
|
|
||||||
|
TestUtils::DummyAuthSSL fakeSSL(ssl_own_id) ;
|
||||||
|
AuthSSL::setAuthSSL_debug(&fakeSSL) ;
|
||||||
|
|
||||||
/* We need to setup a series 2 - 4 different ftServers....
|
/* We need to setup a series 2 - 4 different ftServers....
|
||||||
*
|
*
|
||||||
* Each one needs:
|
* Each one needs:
|
||||||
@ -141,30 +162,27 @@ int main(int argc, char **argv)
|
|||||||
|
|
||||||
std::list<std::string>::const_iterator it, jit;
|
std::list<std::string>::const_iterator it, jit;
|
||||||
|
|
||||||
std::list<pqiAuthDetails> baseFriendList, friendList;
|
std::list<RsPeerDetails> baseFriendList, friendList;
|
||||||
std::list<pqiAuthDetails>::iterator fit;
|
std::list<RsPeerDetails>::iterator fit;
|
||||||
|
|
||||||
std::cerr << "Point 3" << std::endl;
|
|
||||||
P3Hub *testHub = new P3Hub(0,NULL);
|
P3Hub *testHub = new P3Hub(0,NULL);
|
||||||
testHub->start();
|
testHub->start();
|
||||||
std::cerr << "Point 4" << std::endl;
|
|
||||||
|
|
||||||
/* Setup Base Friend Info */
|
/* Setup Base Friend Info */
|
||||||
for(it = peerIds.begin(); it != peerIds.end(); it++)
|
for(it = peerIds.begin(); it != peerIds.end(); it++)
|
||||||
{
|
{
|
||||||
pqiAuthDetails pad;
|
RsPeerDetails pad;
|
||||||
pad.id = *it;
|
pad.id = *it;
|
||||||
|
pad.gpg_id = TestUtils::createRandomPGPId() ;
|
||||||
pad.name = *it;
|
pad.name = *it;
|
||||||
pad.trustLvl = 5;
|
pad.trustLvl = 5;
|
||||||
pad.ownsign = true;
|
pad.ownsign = true;
|
||||||
pad.trusted = false;
|
//pad.trusted = false;
|
||||||
|
|
||||||
baseFriendList.push_back(pad);
|
baseFriendList.push_back(pad);
|
||||||
|
|
||||||
std::cerr << "ftserver1test::setup peer: " << *it;
|
std::cerr << "ftserver1test::setup peer: " << *it << std::endl;
|
||||||
std::cerr << std::endl;
|
|
||||||
}
|
}
|
||||||
std::cerr << "Point 5" << std::endl;
|
|
||||||
|
|
||||||
std::ostringstream pname;
|
std::ostringstream pname;
|
||||||
pname << "/tmp/rstst-" << time(NULL);
|
pname << "/tmp/rstst-" << time(NULL);
|
||||||
@ -172,7 +190,6 @@ int main(int argc, char **argv)
|
|||||||
std::string basepath = pname.str();
|
std::string basepath = pname.str();
|
||||||
RsDirUtil::checkCreateDirectory(basepath);
|
RsDirUtil::checkCreateDirectory(basepath);
|
||||||
|
|
||||||
std::cerr << "Point 6" << std::endl;
|
|
||||||
|
|
||||||
|
|
||||||
for(it = peerIds.begin(); it != peerIds.end(); it++)
|
for(it = peerIds.begin(); it != peerIds.end(); it++)
|
||||||
@ -188,22 +205,26 @@ int main(int argc, char **argv)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
p3AuthMgr *authMgr = new p3DummyAuthMgr(*it, friendList);
|
//p3AuthMgr *authMgr = new p3DummyAuthMgr(*it, friendList);
|
||||||
p3ConnectMgr *connMgr = new p3ConnectMgr(authMgr);
|
p3PeerMgrIMPL *peerMgr = new p3PeerMgrIMPL(ssl_own_id,gpg_own_id,"My GPG name","My SSL location");
|
||||||
mConnMgrs[*it] = connMgr;
|
|
||||||
|
|
||||||
|
p3NetMgrIMPL *netMgr = new p3NetMgrIMPL ;
|
||||||
|
p3LinkMgrIMPL *linkMgr = new p3LinkMgrIMPL(peerMgr,netMgr);
|
||||||
|
mLinkMgrs[*it] = linkMgr;
|
||||||
|
|
||||||
|
rsPeers = new TestUtils::DummyRsPeers(linkMgr,peerMgr,netMgr) ;
|
||||||
|
|
||||||
for(fit = friendList.begin(); fit != friendList.end(); fit++)
|
for(fit = friendList.begin(); fit != friendList.end(); fit++)
|
||||||
{
|
{
|
||||||
/* add as peer to authMgr */
|
/* add as peer to authMgr */
|
||||||
connMgr->addFriend(fit->id);
|
peerMgr->addFriend(fit->id,fit->gpg_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
P3Pipe *pipe = new P3Pipe(); //(*it);
|
P3Pipe *pipe = new P3Pipe(); //(*it);
|
||||||
|
|
||||||
/* add server */
|
/* add server */
|
||||||
ftServer *server;
|
ftServer *server;
|
||||||
server = new ftServer(authMgr, connMgr);
|
server = new ftServer(peerMgr,linkMgr);
|
||||||
mFtServers[*it] = server;
|
mFtServers[*it] = server;
|
||||||
|
|
||||||
server->setP3Interface(pipe);
|
server->setP3Interface(pipe);
|
||||||
@ -230,24 +251,23 @@ int main(int argc, char **argv)
|
|||||||
|
|
||||||
//sleep(60);
|
//sleep(60);
|
||||||
|
|
||||||
NotifyBase *base = NULL;
|
NotifyBase *base = new NotifyBase;
|
||||||
server->SetupFtServer(base);
|
server->SetupFtServer(base);
|
||||||
|
|
||||||
testHub->addP3Pipe(*it, pipe, connMgr);
|
testHub->addP3Pipe(*it, pipe, linkMgr);
|
||||||
server->StartupThreads();
|
server->StartupThreads();
|
||||||
|
|
||||||
/* setup any extra bits */
|
/* setup any extra bits */
|
||||||
server->setPartialsDirectory(partialspath);
|
server->setPartialsDirectory(partialspath);
|
||||||
server->setDownloadDirectory(downloadpath);
|
server->setDownloadDirectory(downloadpath);
|
||||||
server->setSharedDirectories(fileList);
|
server->setSharedDirectories(fileList);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* stick your real test here */
|
/* stick your real test here */
|
||||||
std::map<std::string, ftServer *>::iterator sit;
|
std::map<std::string, ftServer *>::iterator sit;
|
||||||
std::map<std::string, p3ConnectMgr *>::iterator cit;
|
std::map<std::string, p3LinkMgrIMPL *>::iterator cit;
|
||||||
|
|
||||||
while(1)
|
for(int i=0;i < 20;++i)
|
||||||
{
|
{
|
||||||
std::cerr << "ftserver1test::sleep()";
|
std::cerr << "ftserver1test::sleep()";
|
||||||
std::cerr << std::endl;
|
std::cerr << std::endl;
|
||||||
@ -260,12 +280,14 @@ int main(int argc, char **argv)
|
|||||||
(sit->second)->tick();
|
(sit->second)->tick();
|
||||||
}
|
}
|
||||||
|
|
||||||
for(cit = mConnMgrs.begin(); cit != mConnMgrs.end(); cit++)
|
for(cit = mLinkMgrs.begin(); cit != mLinkMgrs.end(); cit++)
|
||||||
{
|
{
|
||||||
/* update */
|
/* update */
|
||||||
(cit->second)->tick();
|
(cit->second)->tick();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
FINALREPORT("FtServer running.") ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
3
libretroshare/src/tests/ft/ftserver1test.sh
Executable file
3
libretroshare/src/tests/ft/ftserver1test.sh
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
./ftserver1test -p 8cb3a1677872c9e8248fd5ddeac84000 -p 8cb3a1677872c9e8248fd5ddeac84001 -p 8cb3a1677872c9e8248fd5ddeac84002 .
|
Loading…
Reference in New Issue
Block a user