mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
c6059906d0
- not passing yet but almost, more tweaking needed TODO: identity and circle vet test - added retrieve msg id for convenience - updated .pro file git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7303 b45a01b8-16f6-495d-af2f-9b41ad6348cc
43 lines
887 B
C++
43 lines
887 B
C++
/*
|
|
* rsgxsnetservice_test.cc
|
|
*
|
|
* Created on: 11 Jul 2012
|
|
* Author: crispy
|
|
*/
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include "nxsgrpsync_test.h"
|
|
#include "nxsmsgsync_test.h"
|
|
#include "nxstesthub.h"
|
|
|
|
TEST(libretroshare_gxs, gxs_grp_sync)
|
|
{
|
|
rs_nxs_test::NxsTestScenario::pointer gsync_test = rs_nxs_test::NxsTestScenario::pointer(
|
|
new rs_nxs_test::NxsGrpSync());
|
|
rs_nxs_test::NxsTestHub tHub(gsync_test);
|
|
tHub.StartTest();
|
|
|
|
// wait for ten seconds
|
|
rs_nxs_test::NxsTestHub::Wait(10);
|
|
|
|
tHub.EndTest();
|
|
|
|
ASSERT_TRUE(tHub.testsPassed());
|
|
}
|
|
|
|
TEST(libretroshare_gxs, gxs_msg_sync)
|
|
{
|
|
rs_nxs_test::NxsTestScenario::pointer gsync_test = rs_nxs_test::NxsTestScenario::pointer(
|
|
new rs_nxs_test::NxsMsgSync);
|
|
rs_nxs_test::NxsTestHub tHub(gsync_test);
|
|
tHub.StartTest();
|
|
|
|
// wait for ten seconds
|
|
rs_nxs_test::NxsTestHub::Wait(10);
|
|
|
|
tHub.EndTest();
|
|
|
|
ASSERT_TRUE(tHub.testsPassed());
|
|
}
|