blob: eaf94e6d69c709a15ffb3a267d64b512a1042c6c [file] [log] [blame]
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/**
* Copyright (c) 2014-2017, Regents of the University of California
*
* This file is part of NDN DeLorean, An Authentication System for Data Archives in
* Named Data Networking. See AUTHORS.md for complete list of NDN DeLorean authors
* and contributors.
*
* NDN DeLorean is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* NDN DeLorean 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with NDN
* DeLorean, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
*/
#include "../tree-generator.hpp"
#include "boost-test.hpp"
namespace nsl {
namespace tests {
BOOST_AUTO_TEST_SUITE(TestTreeGenerator)
BOOST_AUTO_TEST_CASE(HashGeneration)
{
for (size_t n = 5; n <= 8; n++) {
auto hash1 = TreeGenerator::getHash(Node::Index(0, 3), n);
SubTreeBinary tree(TreeGenerator::LOGGER_NAME, Node::Index(0, 5),
[&] (const Node::Index&) {},
[&] (const Node::Index&,
const NonNegativeInteger&,
ndn::ConstBufferPtr) {});
for (size_t i = 0; i < n; i++) {
auto node = make_shared<Node>(i, 0, i + 1, Node::getEmptyHash());
tree.addLeaf(node);
}
auto hash2 = tree.getRoot()->getHash();
BOOST_CHECK_EQUAL_COLLECTIONS(hash1->begin(), hash1->end(), hash2->begin(), hash2->end());
}
for (size_t n = 33; n <= 64; n++) {
auto hash1 = TreeGenerator::getHash(Node::Index(32, 5), n);
SubTreeBinary tree(TreeGenerator::LOGGER_NAME, Node::Index(32, 5),
[&] (const Node::Index&) {},
[&] (const Node::Index&,
const NonNegativeInteger&,
ndn::ConstBufferPtr) {});
for (size_t i = 32; i < n; i++) {
auto node = make_shared<Node>(i, 0, i + 1, Node::getEmptyHash());
tree.addLeaf(node);
}
auto hash2 = tree.getRoot()->getHash();
BOOST_CHECK_EQUAL_COLLECTIONS(hash1->begin(), hash1->end(), hash2->begin(), hash2->end());
}
}
BOOST_AUTO_TEST_CASE(TreeGeneration)
{
for (size_t n = 1; n <= 32; n++) {
auto hash1 = TreeGenerator::getSubTreeBinary(Node::Index(0, 5), n)->getRoot()->getHash();
SubTreeBinary tree(TreeGenerator::LOGGER_NAME, Node::Index(0, 5),
[&] (const Node::Index&) {},
[&] (const Node::Index&,
const NonNegativeInteger&,
ndn::ConstBufferPtr) {});
for (size_t i = 0; i < n; i++) {
auto node = make_shared<Node>(i, 0, i + 1, Node::getEmptyHash());
tree.addLeaf(node);
}
auto hash2 = tree.getRoot()->getHash();
BOOST_CHECK_EQUAL_COLLECTIONS(hash1->begin(), hash1->end(), hash2->begin(), hash2->end());
}
for (size_t n = 33; n <= 64; n++) {
auto hash1 = TreeGenerator::getSubTreeBinary(Node::Index(32, 5), n)->getRoot()->getHash();
SubTreeBinary tree(TreeGenerator::LOGGER_NAME, Node::Index(32, 5),
[&] (const Node::Index&) {},
[&] (const Node::Index&,
const NonNegativeInteger&,
ndn::ConstBufferPtr) {});
for (size_t i = 32; i < n; i++) {
auto node = make_shared<Node>(i, 0, i + 1, Node::getEmptyHash());
tree.addLeaf(node);
}
auto hash2 = tree.getRoot()->getHash();
BOOST_CHECK_EQUAL_COLLECTIONS(hash1->begin(), hash1->end(), hash2->begin(), hash2->end());
}
for (size_t n = 513; n <= 1024; n++) {
auto hash1 = TreeGenerator::getSubTreeBinary(Node::Index(0, 10), n)->getRoot()->getHash();
auto hash2 = TreeGenerator::getHash(Node::Index(0, 10), n);
BOOST_CHECK_EQUAL_COLLECTIONS(hash1->begin(), hash1->end(), hash2->begin(), hash2->end());
}
for (size_t n = 1025; n <= 2048; n++) {
auto hash1 = TreeGenerator::getSubTreeBinary(Node::Index(1024, 10), n)->getRoot()->getHash();
auto hash2 = TreeGenerator::getHash(Node::Index(1024, 10), n);
BOOST_CHECK_EQUAL_COLLECTIONS(hash1->begin(), hash1->end(), hash2->begin(), hash2->end());
}
}
BOOST_AUTO_TEST_SUITE_END()
} // namespace tests
} // namespace nsl