40 lines
1.4 KiB
C++
Executable file
40 lines
1.4 KiB
C++
Executable file
// Copyright (c) 2012-2015, The CryptoNote developers, The Bytecoin developers
|
|
//
|
|
// This file is part of Bytecoin.
|
|
//
|
|
// Bytecoin is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Bytecoin 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 Bytecoin. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#include <boost/lexical_cast.hpp>
|
|
|
|
#include "gtest/gtest.h"
|
|
#include "CryptoNoteProtocol/CryptoNoteProtocolDefinitions.h"
|
|
#include "Serialization/SerializationTools.h"
|
|
|
|
TEST(protocol_pack, protocol_pack_command)
|
|
{
|
|
std::string buff;
|
|
CryptoNote::NOTIFY_RESPONSE_CHAIN_ENTRY::request r;
|
|
r.start_height = 1;
|
|
r.total_height = 3;
|
|
for(int i = 1; i < 10000; i += i*10) {
|
|
r.m_block_ids.resize(i, CryptoNote::NULL_HASH);
|
|
buff = CryptoNote::storeToBinaryKeyValue(r);
|
|
|
|
CryptoNote::NOTIFY_RESPONSE_CHAIN_ENTRY::request r2;
|
|
CryptoNote::loadFromBinaryKeyValue(r2, buff);
|
|
ASSERT_TRUE(r.m_block_ids.size() == i);
|
|
ASSERT_TRUE(r.start_height == 1);
|
|
ASSERT_TRUE(r.total_height == 3);
|
|
}
|
|
}
|