2014-04-05 03:27:18 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* libretroshare/src/serialiser: rsturtleitems_test.cc
|
|
|
|
*
|
|
|
|
* RetroShare Serialiser.
|
|
|
|
*
|
|
|
|
* Copyright 2007-2008 by Cyril Soler
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License Version 2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA.
|
|
|
|
*
|
|
|
|
* Please report all bugs and problems to "retroshare@lunamutt.com".
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
*/
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
|
2017-05-04 09:01:25 -04:00
|
|
|
#include "rsitems/rsgxsiditems.h"
|
2014-04-05 03:27:18 -04:00
|
|
|
#include "support.h"
|
|
|
|
|
|
|
|
|
|
|
|
bool operator==(const RsGxsIdGroupItem& it1,const RsGxsIdGroupItem& it2)
|
|
|
|
{
|
2015-12-13 11:22:31 -05:00
|
|
|
if(it1.mPgpIdSign != it2.mPgpIdSign) return false ;
|
2014-04-05 03:27:18 -04:00
|
|
|
|
|
|
|
return true ;
|
|
|
|
}
|
2017-07-24 06:16:06 -04:00
|
|
|
void init_item(RsGxsIdGroupItem& item)
|
2014-04-05 03:27:18 -04:00
|
|
|
{
|
2015-12-13 11:22:31 -05:00
|
|
|
item.mPgpIdSign = "hello";
|
2014-04-05 03:27:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(libretroshare_serialiser, RsGxsIdItem)
|
|
|
|
{
|
|
|
|
for(uint32_t i=0;i<20;++i)
|
|
|
|
{
|
2017-07-24 06:16:06 -04:00
|
|
|
test_RsItem< RsGxsIdGroupItem,RsGxsIdSerialiser >();
|
2014-04-05 03:27:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|