mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
76 lines
2.6 KiB
C++
76 lines
2.6 KiB
C++
/*******************************************************************************
|
|
* unittests/libretroshare/serialiser/tlvstack_test.cc *
|
|
* *
|
|
* Copyright 2007-2008 by Robert Fernie <retroshare.project@gmail.com> *
|
|
* *
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
* it under the terms of the GNU Affero General Public License as *
|
|
* published by the Free Software Foundation, either version 3 of the *
|
|
* License, or (at your option) any later version. *
|
|
* *
|
|
* This program 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 Lesser General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Lesser General Public License *
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
* *
|
|
******************************************************************************/
|
|
|
|
#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(123);
|
|
RsTlvBinaryData bd2(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;
|
|
RsTlvFileItem fi2;
|
|
|
|
/* initialise */
|
|
fi1.filesize = 101010;
|
|
fi1.hash = RsFileHash("123456789ABCDEF67890123456789ABCDEF67890");//SHA1_SIZE*2 = 40
|
|
fi1.name = "TestFile.txt";
|
|
fi1.pop = 12;
|
|
fi1.age = 456;
|
|
|
|
fi2.filesize = 101010;
|
|
fi2.hash = RsFileHash("123456789ABCDEF67890123456789ABCDEF67890");//SHA1_SIZE*2 = 40
|
|
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);
|
|
}
|
|
|
|
|