RetroShare/tests/unittests/libretroshare/gxs/nxs_test/nxsmsgtestscenario.h
chrisparker126 5eef86d9fd - Added clean up of test data
- re-enabled gxs test code

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7374 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2014-05-18 16:44:19 +00:00

40 lines
846 B
C++

/*
* nxsmsgtestscenario.h
*
* Created on: 26 Apr 2014
* Author: crispy
*/
#ifndef NXSMSGTESTSCENARIO_H_
#define NXSMSGTESTSCENARIO_H_
#include "nxstestscenario.h"
namespace rs_nxs_test {
class NxsMsgTestScenario : public NxsTestScenario {
public:
NxsMsgTestScenario();
virtual ~NxsMsgTestScenario();
typedef std::map<RsGxsGroupId, RsGxsMessageId::std_vector> ExpectedMsgs;
typedef std::map<RsPeerId, ExpectedMsgs> ExpectedMap;
bool checkTestPassed();
bool checkDeepTestPassed();
void cleanTestScenario();
protected:
RsGeneralDataService* createDataStore(const RsPeerId& peerId, uint16_t servType);
virtual const ExpectedMap& getExpectedMap() = 0;
private:
typedef std::map<RsPeerId, RsGeneralDataService*> DataPeerMap;
DataPeerMap mDataPeerMap;
};
} /* namespace rs_nxs_test */
#endif /* NXSMSGTESTSCENARIO_H_ */