mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
4cab2aaa65
(automates comparisons) fixed some unit tests caused by copy constructor removal git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7302 b45a01b8-16f6-495d-af2f-9b41ad6348cc
88 lines
2.1 KiB
C++
88 lines
2.1 KiB
C++
|
|
/*
|
|
* libretroshare/src/serialiser: tlvstack_test.cc
|
|
*
|
|
* RetroShare Serialiser.
|
|
*
|
|
* Copyright 2007-2008 by Robert Fernie.
|
|
*
|
|
* 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".
|
|
*
|
|
*/
|
|
|
|
/******************************************************************
|
|
* tlvfileitem test.
|
|
*
|
|
*
|
|
*/
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include <iostream>
|
|
#include "serialiser/rstlvfileitem.h"
|
|
#include "serialiser/rstlvbinary.h"
|
|
|
|
#include "rstlvutil.h"
|
|
|
|
#define BIN_LEN 1024
|
|
|
|
TEST(libretroshare_serialiser, test_RsTlvStack)
|
|
{
|
|
|
|
/* now create a set of TLV items for the random generator */
|
|
|
|
RsTlvBinaryData *bd1 = new RsTlvBinaryData(123);
|
|
RsTlvBinaryData *bd2 = new RsTlvBinaryData(125);
|
|
|
|
char data[BIN_LEN] = {0};
|
|
int i;
|
|
for(i = 0; i < BIN_LEN; i++)
|
|
{
|
|
data[i] = i%13;
|
|
}
|
|
|
|
bd1->setBinData(data, 5);
|
|
bd2->setBinData(data, 21);
|
|
|
|
RsTlvFileItem *fi1 = new RsTlvFileItem();
|
|
RsTlvFileItem *fi2 = new RsTlvFileItem();
|
|
|
|
/* initialise */
|
|
fi1->filesize = 101010;
|
|
fi1->hash = RsFileHash("ABCDEFEGHE");
|
|
fi1->name = "TestFile.txt";
|
|
fi1->pop = 12;
|
|
fi1->age = 456;
|
|
|
|
fi2->filesize = 101010;
|
|
fi2->hash = RsFileHash("ABCDEFEGHE");
|
|
fi2->name = "TestFile.txt";
|
|
fi2->pop = 0;
|
|
fi2->age = 0;;
|
|
|
|
std::vector<RsTlvItem *> items;
|
|
items.resize(4);
|
|
items[0] = bd1;
|
|
items[1] = bd2;
|
|
items[2] = fi1;
|
|
items[3] = fi2;
|
|
|
|
test_TlvSet(items, 1024);
|
|
}
|
|
|
|
|