/* * libretroshare/src/tests/serialiser: msgitem_test.cc * * RetroShare Serialiser. * * Copyright 2010 by Christopher Evi-Parker. * * 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 #include #include "util/rsrandom.h" #include "grouter/grouteritems.h" #include "serialiser/rstlvutil.h" #include "support.h" RsSerialType* init_item(RsGRouterGenericDataItem& cmi) { cmi.data_size = lrand48()%1000 + 1000 ; cmi.data_bytes = (uint8_t*)malloc(cmi.data_size) ; RSRandom::random_bytes(cmi.data_bytes,cmi.data_size) ; cmi.routing_id = RSRandom::random_u32() ; Sha1CheckSum cs ; for(int i=0;i<5;++i) cs.fourbytes[i] = RSRandom::random_u32() ; cmi.destination_key = cs ; return new RsGRouterSerialiser(); } RsSerialType* init_item(RsGRouterACKItem& cmi) { cmi.mid = RSRandom::random_u32() ; cmi.state = RSRandom::random_u32() ; return new RsGRouterSerialiser(); } RsSerialType* init_item(RsGRouterPublishKeyItem& cmi) { cmi.diffusion_id = RSRandom::random_u32() ; cmi.service_id = RSRandom::random_u32() ; cmi.randomized_distance = RSRandom::random_f32() ; Sha1CheckSum cs ; for(int i=0;i<5;++i) cs.fourbytes[i] = RSRandom::random_u32() ; cmi.published_key = cs ; cmi.description_string = "test key" ; return new RsGRouterSerialiser(); } RsSerialType* init_item(RsGRouterRoutingInfoItem& cmi) { cmi.origin = SSLIdType::random() ; cmi.received_time = RSRandom::random_u64() ; cmi.status_flags = RSRandom::random_u32() ; cmi.data_item = new RsGRouterGenericDataItem ; uint32_t n = 10+(RSRandom::random_u32()%30) ; for(uint32_t i=0;i 0.001) return false; if(cmiLeft.description_string != cmiRight.description_string) return false; return true ; } bool operator ==(const RsGRouterACKItem& cmiLeft,const RsGRouterACKItem& cmiRight) { if(cmiLeft.mid != cmiRight.mid) return false; if(cmiLeft.state != cmiRight.state) return false; return true; } bool operator ==(const RsGRouterMatrixCluesItem& cmiLeft,const RsGRouterMatrixCluesItem& cmiRight) { if(!(cmiLeft.destination_key == cmiRight.destination_key)) return false; if(cmiLeft.clues.size() != cmiRight.clues.size()) return false; std::list::const_iterator itl = cmiLeft.clues.begin() ; std::list::const_iterator itr = cmiRight.clues.begin() ; while(itl != cmiLeft.clues.end()) { if( (*itl).friend_id != (*itr).friend_id) return false ; if( (*itl).time_stamp != (*itr).time_stamp) return false ; ++itl ; ++itr ; } return true; } bool operator ==(const RsGRouterMatrixFriendListItem& cmiLeft,const RsGRouterMatrixFriendListItem& cmiRight) { if(cmiLeft.reverse_friend_indices.size() != cmiRight.reverse_friend_indices.size()) return false; for(uint32_t i=0;i::const_iterator itl(cmiLeft.tried_friends.begin()) ; std::list::const_iterator itr(cmiRight.tried_friends.begin()) ; while(itl != cmiLeft.tried_friends.end()) { if( (*itl).friend_id != (*itr).friend_id) return false ; if( (*itl).time_stamp != (*itr).time_stamp) return false ; ++itl ; ++itr ; } if(!(*cmiLeft.data_item == *cmiRight.data_item)) return false ; return true; } TEST(libretroshare_serialiser, RsGRouterItem) { test_RsItem(); test_RsItem(); test_RsItem(); test_RsItem(); test_RsItem(); test_RsItem(); }