| /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */ |
| /* |
| * Copyright (c) 2012 University of California, Los Angeles |
| * |
| * This program is free software; you can redistribute it and/or modify |
| * it under the terms of the GNU General Public License version 2 as |
| * published by the Free Software Foundation; |
| * |
| * 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 General Public License for more details. |
| * |
| * You should have received a copy of the GNU General Public License |
| * along with this program; if not, write to the Free Software |
| * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| * |
| * Author: Zhenkai Zhu <zhenkai@cs.ucla.edu> |
| * Chaoyi Bian <bcy@pku.edu.cn> |
| * Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| */ |
| |
| #include <boost/test/unit_test.hpp> |
| #include <boost/test/output_test_stream.hpp> |
| #include <map> |
| using boost::test_tools::output_test_stream; |
| |
| #include <boost/make_shared.hpp> |
| |
| // #include <ndn.cxx/wrapper/wrapper.h> |
| #include "sync-policy-manager.h" |
| #include "sync-logic.h" |
| #include "sync-seq-no.h" |
| |
| using namespace std; |
| using namespace boost; |
| using namespace Sync; |
| |
| struct Handler |
| { |
| string instance; |
| |
| Handler (const string &_instance) |
| : instance (_instance) |
| { |
| } |
| |
| void wrapper (const vector<MissingDataInfo> &v) { |
| int n = v.size(); |
| for (int i = 0; i < n; i++) { |
| onUpdate (v[i].prefix, v[i].high, v[i].low); |
| } |
| } |
| |
| void onUpdate (const string &p/*prefix*/, const SeqNo &seq/*newSeq*/, const SeqNo &oldSeq/*oldSeq*/) |
| { |
| m_map[p] = seq.getSeq (); |
| |
| // cout << instance << "\t"; |
| // if (!oldSeq.isValid ()) |
| // cout << "Inserted: " << p << " (" << seq << ")" << endl; |
| // else |
| // cout << "Updated: " << p << " ( " << oldSeq << ".." << seq << ")" << endl; |
| } |
| |
| void onRemove (const string &p/*prefix*/) |
| { |
| // cout << instance << "\tRemoved: " << p << endl; |
| m_map.erase (p); |
| } |
| |
| map<string, uint32_t> m_map; |
| }; |
| |
| BOOST_AUTO_TEST_CASE (SyncLogicTest) |
| { |
| Handler h1 ("1"); |
| |
| ndn::Ptr<SyncPolicyManager> policyManager1 = ndn::Ptr<SyncPolicyManager>(new SyncPolicyManager(ndn::Name("/ndn/ucla.edu/alice"), ndn::Name("/ndn/ucla.edu/alice/KEY/dsk-1382934202/ID-CERT/%FD%FF%FF%FF%FF%DEk%C0%0B"), ndn::Name("/bcast"))); |
| |
| SyncLogic l1 (ndn::Name("/bcast"), policyManager1, bind (&Handler::wrapper, &h1, _1), bind (&Handler::onRemove, &h1, _1)); |
| |
| std::string oldDigest = l1.getRootDigest(); |
| |
| l1.addLocalNames ("/one", 1, 2); |
| |
| BOOST_CHECK_EQUAL (h1.m_map.size (), 0); |
| sleep (1); |
| BOOST_CHECK_EQUAL (h1.m_map.size (), 0); |
| |
| Handler h2 ("2"); |
| |
| ndn::Ptr<SyncPolicyManager> policyManager2 = ndn::Ptr<SyncPolicyManager>(new SyncPolicyManager(ndn::Name("/ndn/ucla.edu/bob"), ndn::Name("/ndn/ucla.edu/bob/KEY/dsk-1382934206/ID-CERT/%FD%FF%FF%FF%FF%DEl%0BC"), ndn::Name("/bcast"))); |
| |
| SyncLogic l2 (ndn::Name("/bcast"), policyManager2, bind (&Handler::wrapper, &h2, _1), bind (&Handler::onRemove, &h2, _1)); |
| |
| sleep (1); |
| BOOST_CHECK_EQUAL (h1.m_map.size (), 0); |
| BOOST_CHECK_EQUAL (h2.m_map.size (), 1); |
| |
| l1.remove ("/one"); |
| sleep(1); |
| std::string newDigest = l1.getRootDigest(); |
| BOOST_CHECK(oldDigest != newDigest); |
| |
| } |