peizhen guo | 410e0e1 | 2014-08-12 13:24:14 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (c) 2014, Regents of the University of California |
| 4 | * |
| 5 | * This file is part of NSL (NDN Signature Logger). |
| 6 | * See AUTHORS.md for complete list of NSL authors and contributors. |
| 7 | * |
| 8 | * NSL is free software: you can redistribute it and/or modify it under the terms |
| 9 | * of the GNU General Public License as published by the Free Software Foundation, |
| 10 | * either version 3 of the License, or (at your option) any later version. |
| 11 | * |
| 12 | * NSL is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 13 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 14 | * PURPOSE. See the GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License along with |
| 17 | * NSL, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 18 | * |
| 19 | * @author Peizhen Guo <patrick.guopz@gmail.com> |
| 20 | */ |
| 21 | #include <boost-test.hpp> |
| 22 | #include <iostream> |
| 23 | |
| 24 | #include "merkle-tree-cache.hpp" |
| 25 | #include "Auditor.hpp" |
| 26 | |
| 27 | |
| 28 | namespace nsl { |
| 29 | |
| 30 | boost::test_tools::predicate_result check_buffer_cache(ndn::ConstBufferPtr ptr1, |
| 31 | ndn::ConstBufferPtr ptr2) |
| 32 | { |
| 33 | bool result = true; |
| 34 | for (int i = 0; i < ptr1->size(); i++) |
| 35 | { |
| 36 | if ((*ptr1)[i] != (*ptr2)[i]) |
| 37 | { |
| 38 | result = false; |
| 39 | break; |
| 40 | } |
| 41 | } |
| 42 | return result; |
| 43 | } |
| 44 | |
| 45 | BOOST_AUTO_TEST_SUITE(TestCache) |
| 46 | |
| 47 | BOOST_AUTO_TEST_CASE(TestFunction) |
| 48 | { |
| 49 | // Test build |
| 50 | ndn::Buffer buf[200]; |
| 51 | Index idx[200]; |
| 52 | for (uint8_t i = 0; i < 200; i++) |
| 53 | { |
| 54 | buf[i].push_back(i); |
| 55 | idx[i].number = i; |
| 56 | idx[i].level = 0; |
| 57 | } |
| 58 | MerkleTreeCache treeCache; |
| 59 | for (int i = 0; i < 200; i++) |
| 60 | { |
| 61 | ndn::ConstBufferPtr p_buf = ndn::make_shared<ndn::Buffer>(buf[i]); |
| 62 | Leaf newleaf(p_buf, idx[i].number, idx[i].level, 0); |
| 63 | newleaf.computeHash(); |
| 64 | treeCache.addLeaf(newleaf); |
| 65 | BOOST_CHECK(treeCache.getLeaves() == i + 1); |
| 66 | } |
| 67 | BOOST_CHECK(treeCache.getLevel() == 2 && treeCache.getLeaves() == 200); |
| 68 | // std::cout<<treeCache.m_cachedTree.size()<<' '<<treeCache.m_leavesData.size()<<std::endl; |
| 69 | |
| 70 | // Test query |
| 71 | ndn::ConstBufferPtr data_buf90 = ((Leaf*)(treeCache.queryNode(idx[90]).get()))->getData(); |
| 72 | BOOST_CHECK(int((*data_buf90)[0]) == 90); |
| 73 | ndn::ConstBufferPtr data_buf10 = ((Leaf*)(treeCache.queryNode(idx[10]).get()))->getData(); |
| 74 | BOOST_CHECK(int((*data_buf10)[0]) == 10); |
| 75 | |
| 76 | ndn::ConstBufferPtr hash_buf1 = ((Leaf*)(treeCache.queryNode(idx[0]).get()))->getHash(); |
| 77 | ndn::ConstBufferPtr hash_buf2 = ((Leaf*)(treeCache.queryNode(idx[1]).get()))->getHash(); |
| 78 | ndn::ConstBufferPtr hash_buf3 = ((Leaf*)(treeCache.queryNode(idx[2]).get()))->getHash(); |
| 79 | ndn::ConstBufferPtr hash_buf4 = ((Leaf*)(treeCache.queryNode(idx[3]).get()))->getHash(); |
| 80 | Auditor audit; |
| 81 | ndn::ConstBufferPtr hash_buf5 = audit.computeHash(hash_buf1, hash_buf2); |
| 82 | ndn::ConstBufferPtr hash_buf6 = audit.computeHash(hash_buf3, hash_buf4); |
| 83 | ndn::ConstBufferPtr hash_buf7 = audit.computeHash(hash_buf5, hash_buf6); |
| 84 | Index idx1; |
| 85 | idx1.number = 0; idx1.level = 2; |
| 86 | ndn::ConstBufferPtr hash_buf8 = ((IntermediateNode*)(treeCache.queryNode(idx1).get()))->getHash(); |
| 87 | BOOST_CHECK(check_buffer_cache(hash_buf7, hash_buf8)); |
| 88 | idx1.number = 70; idx1.level = 1; |
| 89 | ndn::ConstBufferPtr hash_buf70 = ((Leaf*)(treeCache.queryNode(idx[70]).get()))->getHash(); |
| 90 | ndn::ConstBufferPtr hash_buf71 = ((Leaf*)(treeCache.queryNode(idx[71]).get()))->getHash(); |
| 91 | ndn::ConstBufferPtr hash_buf72 = audit.computeHash(hash_buf70, hash_buf71); |
| 92 | ndn::ConstBufferPtr hash_buf73 = ((IntermediateNode*) |
| 93 | (treeCache.queryNode(idx1).get()))->getHash(); |
| 94 | BOOST_CHECK(check_buffer_cache(hash_buf72, hash_buf73)); |
| 95 | |
| 96 | // Test Encoding Decoding |
| 97 | idx1.number = 0; idx1.level = 12; |
| 98 | SubTreePtr sub_ptr1 = treeCache.getSubTree(idx1); |
| 99 | std::string tmp_str = sub_ptr1->encoding(); |
| 100 | SubTreePtr sub_ptr2 = treeCache.decoding(tmp_str); |
| 101 | BOOST_CHECK(sub_ptr1->getRootIndex().number == sub_ptr2->getRootIndex().number && |
| 102 | sub_ptr1->getRootIndex().level == sub_ptr2->getRootIndex().level); |
| 103 | BOOST_CHECK(sub_ptr1->getRemainPosition() == sub_ptr2->getRemainPosition()); |
| 104 | idx1.number = 0; idx1.level = 10; |
| 105 | ndn::ConstBufferPtr origin_buf = sub_ptr1->getHash(idx1); |
| 106 | ndn::ConstBufferPtr resume_buf = sub_ptr2->getHash(idx1); |
| 107 | BOOST_CHECK(check_buffer_cache(origin_buf, resume_buf)); |
| 108 | |
| 109 | |
| 110 | // Test Sqlite3 (move m_database to public to test) |
| 111 | /* |
| 112 | idx1.number = 0; idx1.level = 12; |
| 113 | treeCache.m_database.addSubTree(sub_ptr1); |
| 114 | std::string str = treeCache.m_database.getSubTree(idx1); |
| 115 | SubTreePtr sub_ptr_sql = treeCache.decoding(str); |
| 116 | BOOST_CHECK(sub_ptr1->getRootIndex().number == sub_ptr_sql->getRootIndex().number && |
| 117 | sub_ptr1->getRootIndex().level == sub_ptr_sql->getRootIndex().level); |
| 118 | BOOST_CHECK(sub_ptr1->getRemainPosition() == sub_ptr_sql->getRemainPosition()); |
| 119 | idx1.number = 0; idx1.level = 10; |
| 120 | origin_buf = sub_ptr1->getHash(idx1); |
| 121 | resume_buf = sub_ptr_sql->getHash(idx1); |
| 122 | BOOST_CHECK(check_buffer_cache(origin_buf, resume_buf)); |
| 123 | idx1.number = 0; idx1.level = 12; |
| 124 | BOOST_CHECK(treeCache.m_database.doesSubTreeExist(idx1) == true); |
| 125 | idx1.number = 300; idx1.level = 2; |
| 126 | BOOST_CHECK(treeCache.m_database.doesSubTreeExist(idx1) == false); |
| 127 | |
| 128 | uint64_t sequence = 90; |
| 129 | treeCache.m_database.addLeafInfo(sequence, data_buf90); |
| 130 | ndn::ConstBufferPtr data_buf_sql = treeCache.m_database.getLeafInfo(sequence); |
| 131 | BOOST_CHECK(int((*data_buf_sql)[0]) == 90); |
| 132 | BOOST_CHECK(treeCache.m_database.doesLeafInfoExist(400) == false); |
| 133 | // insert update |
| 134 | treeCache.m_database.addLeafInfo(sequence, data_buf10); |
| 135 | data_buf_sql = treeCache.m_database.getLeafInfo(sequence); |
| 136 | BOOST_CHECK(int((*data_buf_sql)[0]) == 10); |
| 137 | */ |
| 138 | } |
| 139 | |
| 140 | |
| 141 | BOOST_AUTO_TEST_SUITE_END() |
| 142 | |
| 143 | } // namespace nsl |