2014-04-05 03:27:18 -04:00
|
|
|
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
|
|
|
|
#include "genexchangetester.h"
|
|
|
|
#include "gxspublishgrouptest.h"
|
|
|
|
#include "gxspublishmsgtest.h"
|
|
|
|
#include "gxs/rsdataservice.h"
|
|
|
|
#include "rsdummyservices.h"
|
2014-07-20 07:21:06 -04:00
|
|
|
#include "gxsteststats.h"
|
2014-04-05 03:27:18 -04:00
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* It always hard to say exactly what coverage of a test would
|
|
|
|
* be ahead of time. Partly because its difficult to create the
|
|
|
|
* actual conditions of a test or the permutations of different request
|
|
|
|
* options to a module is extremely large (and there are probably ways to deal with this)
|
|
|
|
* In so far as the genexchange test is concerned we are primarily interested that it
|
|
|
|
* retrieves and stores data correctly
|
|
|
|
* The auxillary (and important) requirement is authentication and ensuring the authentication
|
|
|
|
* rules are respected. This auxillary requirement is of the "hard" situation to create as
|
|
|
|
* genexchange depends on an external module (rsidentity) for satisfying a significant sum
|
|
|
|
* of its authentication. This difficulty is solved with a dummy identity service.
|
|
|
|
* Which passes all authentications (In this respect authentication) is reserved for "online"
|
|
|
|
* testing and is relatively straight forward.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-12-13 11:22:31 -05:00
|
|
|
// disabled, because it fails in GxsPublishGroupTest::testGrpMetaRetrieval()
|
|
|
|
TEST(libretroshare_gxs, DISABLED_RsGenExchange)
|
2014-04-05 03:27:18 -04:00
|
|
|
{
|
|
|
|
|
|
|
|
RsGeneralDataService* dataStore = new RsDataService("./", "testServiceDb", RS_SERVICE_TYPE_DUMMY, NULL, "");
|
|
|
|
|
|
|
|
// we want to use default authentication which is NO authentication :)
|
|
|
|
GenExchangeTestService testService(dataStore, NULL, NULL);
|
|
|
|
|
|
|
|
GxsPublishGroupTest testGrpPublishing(&testService, dataStore);
|
|
|
|
testGrpPublishing.runTests();
|
|
|
|
|
|
|
|
//GxsPublishMsgTest testMsgPublishing(&testService, dataStore);
|
|
|
|
//testMsgPublishing.runTests();
|
|
|
|
}
|
2014-07-20 07:21:06 -04:00
|
|
|
|
|
|
|
TEST(libretroshare_gxs, GetStats)
|
|
|
|
{
|
|
|
|
|
|
|
|
RsGeneralDataService* dataStore = new RsDataService("./", "testServiceDb", RS_SERVICE_TYPE_DUMMY, NULL, "");
|
|
|
|
|
|
|
|
// we want to use default authentication which is NO authentication :)
|
|
|
|
GenExchangeTestService testService(dataStore, NULL, NULL);
|
|
|
|
|
|
|
|
GxsTestStats testStats(&testService, dataStore);
|
|
|
|
testStats.runTests();
|
|
|
|
|
|
|
|
//GxsPublishMsgTest testMsgPublishing(&testService, dataStore);
|
|
|
|
//testMsgPublishing.runTests();
|
|
|
|
}
|