Alexander Afanasyev | bf2b436 | 2012-03-12 23:55:09 -0700 | [diff] [blame] | 1 | /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /* |
| 3 | * Copyright (c) 2012 University of California, Los Angeles |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License version 2 as |
| 7 | * published by the Free Software Foundation; |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 17 | * |
| 18 | * Author: Zhenkai Zhu <zhenkai@cs.ucla.edu> |
| 19 | * 卞超轶 Chaoyi Bian <bcy@pku.edu.cn> |
| 20 | * Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| 21 | */ |
| 22 | |
| 23 | #include <boost/test/unit_test.hpp> |
| 24 | #include <boost/test/output_test_stream.hpp> |
| 25 | #include <map> |
| 26 | using boost::test_tools::output_test_stream; |
| 27 | |
| 28 | #include <boost/make_shared.hpp> |
| 29 | |
| 30 | #include "../model/sync-ccnx-wrapper.h" |
| 31 | #include "../model/sync-logic.h" |
| 32 | #include "../model/sync-seq-no.h" |
| 33 | |
| 34 | using namespace std; |
| 35 | using namespace boost; |
| 36 | using namespace Sync; |
| 37 | |
| 38 | struct Handler |
| 39 | { |
| 40 | string instance; |
| 41 | |
| 42 | Handler (const string &_instance) |
| 43 | : instance (_instance) |
| 44 | { |
| 45 | } |
| 46 | |
Alexander Afanasyev | 1b449c4 | 2012-03-13 20:24:07 -0700 | [diff] [blame^] | 47 | void onUpdate (const string &p/*prefix*/, const SeqNo &seq/*newSeq*/, const SeqNo &oldSeq/*oldSeq*/) |
Alexander Afanasyev | bf2b436 | 2012-03-12 23:55:09 -0700 | [diff] [blame] | 48 | { |
Alexander Afanasyev | 1b449c4 | 2012-03-13 20:24:07 -0700 | [diff] [blame^] | 49 | m_map[p] = seq.getSeq (); |
| 50 | |
| 51 | cout << instance << "\t"; |
| 52 | if (!oldSeq.isValid ()) |
| 53 | cout << "Inserted: " << p << " (" << seq << ")" << endl; |
| 54 | else |
| 55 | cout << "Updated: " << p << " ( " << oldSeq << ".." << seq << ")" << endl; |
Alexander Afanasyev | bf2b436 | 2012-03-12 23:55:09 -0700 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | void onRemove (const string &p/*prefix*/) |
| 59 | { |
Alexander Afanasyev | 1b449c4 | 2012-03-13 20:24:07 -0700 | [diff] [blame^] | 60 | cout << instance << "\tRemoved: " << p << endl; |
| 61 | m_map.erase (p); |
Alexander Afanasyev | bf2b436 | 2012-03-12 23:55:09 -0700 | [diff] [blame] | 62 | } |
Alexander Afanasyev | 1b449c4 | 2012-03-13 20:24:07 -0700 | [diff] [blame^] | 63 | |
| 64 | map<string, uint32_t> m_map; |
Alexander Afanasyev | bf2b436 | 2012-03-12 23:55:09 -0700 | [diff] [blame] | 65 | }; |
| 66 | |
| 67 | BOOST_AUTO_TEST_CASE (SyncLogicTest) |
| 68 | { |
Alexander Afanasyev | 1b449c4 | 2012-03-13 20:24:07 -0700 | [diff] [blame^] | 69 | Handler h1 ("1"); |
Alexander Afanasyev | bf2b436 | 2012-03-12 23:55:09 -0700 | [diff] [blame] | 70 | |
Alexander Afanasyev | 44ab222 | 2012-03-13 00:09:29 -0700 | [diff] [blame] | 71 | SyncLogic l1 ("/bcast", bind (&Handler::onUpdate, &h1, _1, _2, _3), bind (&Handler::onRemove, &h1, _1)); |
Alexander Afanasyev | 1b449c4 | 2012-03-13 20:24:07 -0700 | [diff] [blame^] | 72 | l1.addLocalNames ("/one", 1, 2); |
Alexander Afanasyev | bf2b436 | 2012-03-12 23:55:09 -0700 | [diff] [blame] | 73 | |
Alexander Afanasyev | 1b449c4 | 2012-03-13 20:24:07 -0700 | [diff] [blame^] | 74 | BOOST_CHECK_EQUAL (h1.m_map.size (), 0); |
| 75 | sleep (1); |
| 76 | BOOST_CHECK_EQUAL (h1.m_map.size (), 0); |
| 77 | |
| 78 | Handler h2 ("2"); |
| 79 | SyncLogic l2 ("/bcast", bind (&Handler::onUpdate, &h2, _1, _2, _3), bind (&Handler::onRemove, &h2, _1)); |
| 80 | |
| 81 | sleep (1); |
| 82 | BOOST_CHECK_EQUAL (h1.m_map.size (), 0); |
| 83 | BOOST_CHECK_EQUAL (h2.m_map.size (), 1); |
| 84 | |
| 85 | // l1.remove ("/one"); |
| 86 | |
| 87 | // sleep (10); |
| 88 | // l1. |
Alexander Afanasyev | bf2b436 | 2012-03-12 23:55:09 -0700 | [diff] [blame] | 89 | } |