mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
9f9221273a
- added tests to travis.yml - excluded grouteritems and photoitems from test, because they changed too much - disabled failing tests - all tests pass in valgrind, without valgrind result is undefined - to compile tests add CONFIG+=tests to qmake args. Then run tests/unittests/unittests
91 lines
2.5 KiB
C++
91 lines
2.5 KiB
C++
#pragma once
|
|
|
|
// from retroshare
|
|
#include "retroshare/rsids.h"
|
|
#include "retroshare/rstypes.h"
|
|
#include "retroshare/rsgxscircles.h"
|
|
#include "retroshare/rsidentity.h"
|
|
|
|
// from librssimulator
|
|
#include "peer/PeerNode.h"
|
|
|
|
#include "gxstestservice.h"
|
|
|
|
class RsGxsIdExchange;
|
|
class RsGxsCircleExchange;
|
|
class GxsTestService;
|
|
class RsGeneralDataService;
|
|
class RsGxsNetService;
|
|
class p3IdService;
|
|
class p3GxsCircles;
|
|
class FakePgpAuxUtils;
|
|
|
|
class GxsPeerNode: public PeerNode
|
|
{
|
|
public:
|
|
|
|
GxsPeerNode(const RsPeerId &ownId, const std::list<RsPeerId> &peers, int testMode, bool useIdentityService);
|
|
~GxsPeerNode();
|
|
|
|
bool checkTestServiceAllowedGroups(const RsPeerId &peerId);
|
|
bool checkCircleServiceAllowedGroups(const RsPeerId &peerId);
|
|
|
|
bool createIdentity(const std::string &name,
|
|
bool pgpLinked,
|
|
uint32_t circleType,
|
|
const RsGxsCircleId &circleId,
|
|
RsGxsId &gxsId);
|
|
|
|
bool createCircle(const std::string &name,
|
|
uint32_t circleType,
|
|
const RsGxsCircleId &circleId,
|
|
const RsGxsId &authorId,
|
|
std::set<RsPgpId> localMembers,
|
|
std::set<RsGxsId> externalMembers,
|
|
RsGxsGroupId &groupId);
|
|
|
|
bool createGroup(const std::string &name,
|
|
uint32_t circleType,
|
|
const RsGxsCircleId &circleId,
|
|
const RsGxsId &authorId,
|
|
RsGxsGroupId &groupId);
|
|
|
|
bool createMsg(const std::string &msgstr,
|
|
const RsGxsGroupId &groupId,
|
|
const RsGxsId &authorId,
|
|
RsGxsMessageId &msgId);
|
|
|
|
bool subscribeToGroup(const RsGxsGroupId &groupId, bool subscribe);
|
|
|
|
bool getGroups(std::vector<RsTestGroup> &groups);
|
|
bool getGroupList(std::list<RsGxsGroupId> &groups);
|
|
bool getMsgList(const RsGxsGroupId &id, std::list<RsGxsMessageId> &msgIds);
|
|
|
|
bool getIdentities(std::vector<RsGxsIdGroup> &groups);
|
|
bool getIdentitiesList(std::list<RsGxsGroupId> &groups);
|
|
|
|
bool getCircles(std::vector<RsGxsCircleGroup> &groups);
|
|
bool getCirclesList(std::list<RsGxsGroupId> &groups);
|
|
|
|
uint32_t mUseIdentityService;
|
|
uint32_t mTestMode;
|
|
std::string mGxsDir;
|
|
|
|
FakePgpAuxUtils *mPgpAuxUtils;
|
|
|
|
p3IdService *mGxsIdService;
|
|
p3GxsCircles *mGxsCircles;
|
|
|
|
RsGeneralDataService* mGxsIdDs;
|
|
RsGxsNetService* mGxsIdNs;
|
|
|
|
RsGeneralDataService* mGxsCirclesDs;
|
|
RsGxsNetService* mGxsCirclesNs;
|
|
|
|
GxsTestService *mTestService;
|
|
RsGeneralDataService* mTestDs;
|
|
RsGxsNetService* mTestNs;
|
|
};
|
|
|
|
|