mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
0dabe4b8a1
- only group can link at the moment added more nxs tests and better cleanup - test ability sync with a delayed circle load git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7384 b45a01b8-16f6-495d-af2f-9b41ad6348cc
91 lines
1.9 KiB
C++
91 lines
1.9 KiB
C++
/*
|
|
* nxsgrptestscenario.cpp
|
|
*
|
|
* Created on: 23 Apr 2014
|
|
* Author: crispy
|
|
*/
|
|
|
|
#include "nxsgrptestscenario.h"
|
|
#include <algorithm>
|
|
|
|
namespace rs_nxs_test {
|
|
|
|
NxsGrpTestScenario::NxsGrpTestScenario() {
|
|
}
|
|
|
|
NxsGrpTestScenario::~NxsGrpTestScenario() {
|
|
}
|
|
|
|
bool NxsGrpTestScenario::checkTestPassed()
|
|
{
|
|
const ExpectedMap& exMap = getExpectedMap();
|
|
|
|
ExpectedMap::const_iterator mit = exMap.begin();
|
|
|
|
bool passed = true;
|
|
|
|
for(; mit != exMap.end(); mit++)
|
|
{
|
|
const RsPeerId& pid = mit->first;
|
|
RsGxsGroupId::std_vector expGrpIds = mit->second;
|
|
RsGeneralDataService* ds = getDataService(pid);
|
|
RsGxsGroupId::std_vector grpIds;
|
|
ds->retrieveGroupIds(grpIds);
|
|
|
|
RsGxsGroupId::std_vector result(expGrpIds.size()+grpIds.size());
|
|
std::sort(grpIds.begin(), grpIds.end());
|
|
std::sort(expGrpIds.begin(), expGrpIds.end());
|
|
RsGxsGroupId::std_vector::iterator it = std::set_symmetric_difference(grpIds.begin(), grpIds.end(),
|
|
expGrpIds.begin(), expGrpIds.end(), result.begin());
|
|
|
|
result.resize(it - result.begin());
|
|
|
|
passed &= result.size() == 0;
|
|
}
|
|
|
|
return passed;
|
|
}
|
|
|
|
bool NxsGrpTestScenario::checkDeepTestPassed()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void NxsGrpTestScenario::cleanTestScenario()
|
|
{
|
|
DataPeerMap::iterator mit = mDataPeerMap.begin();
|
|
RsPeerId::std_vector peerIds;
|
|
|
|
// remove grps and msg data
|
|
for(; mit != mDataPeerMap.end(); mit++)
|
|
{
|
|
mit->second->resetDataStore();
|
|
peerIds.push_back(mit->first);
|
|
}
|
|
|
|
// now delete tables
|
|
RsPeerId::std_vector::const_iterator cit = peerIds.begin();
|
|
|
|
for(; cit != peerIds.end(); cit++)
|
|
{
|
|
std::string tableFile = "grp_store_" + cit->toStdString();
|
|
remove(tableFile.c_str());
|
|
}
|
|
}
|
|
|
|
RsGeneralDataService* NxsGrpTestScenario::createDataStore(
|
|
const RsPeerId& peerId, uint16_t servType)
|
|
{
|
|
RsGeneralDataService* ds = new RsDataService("./", "grp_store_" +
|
|
peerId.toStdString(), servType, NULL, "key");
|
|
|
|
mDataPeerMap.insert(std::make_pair(peerId, ds));
|
|
return ds;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* namespace rs_nxs_test */
|