blob: 2cfde28a5a240fa85d612fb9f3c482378731d4f2 [file] [log] [blame]
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -07001/* -*- 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>
Chaoyi Bian3e1eb162012-04-03 16:59:32 -070019 * Chaoyi Bian <bcy@pku.edu.cn>
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -070020 * 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>
26using boost::test_tools::output_test_stream;
27
28#include <boost/make_shared.hpp>
29
Alexander Afanasyev158ec0d2012-04-05 13:48:55 -070030#include "sync-ccnx-wrapper.h"
31#include "sync-logic.h"
32#include "sync-seq-no.h"
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -070033
34using namespace std;
35using namespace boost;
36using namespace Sync;
37
38struct Handler
39{
40 string instance;
41
42 Handler (const string &_instance)
43 : instance (_instance)
44 {
45 }
Zhenkai Zhu1cb29292012-05-31 22:54:34 -070046
Zhenkai Zhu43ae5c72012-05-31 23:18:45 -070047 void wrapper (const vector<MissingDataInfo> &v) {
Zhenkai Zhu1cb29292012-05-31 22:54:34 -070048 int n = v.size();
49 for (int i = 0; i < n; i++) {
50 onUpdate (v[i].prefix, v[i].high, v[i].low);
51 }
52 }
53
Alexander Afanasyev1b449c42012-03-13 20:24:07 -070054 void onUpdate (const string &p/*prefix*/, const SeqNo &seq/*newSeq*/, const SeqNo &oldSeq/*oldSeq*/)
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -070055 {
Alexander Afanasyev1b449c42012-03-13 20:24:07 -070056 m_map[p] = seq.getSeq ();
57
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -070058 // cout << instance << "\t";
59 // if (!oldSeq.isValid ())
60 // cout << "Inserted: " << p << " (" << seq << ")" << endl;
61 // else
62 // cout << "Updated: " << p << " ( " << oldSeq << ".." << seq << ")" << endl;
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -070063 }
64
65 void onRemove (const string &p/*prefix*/)
66 {
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -070067 // cout << instance << "\tRemoved: " << p << endl;
Alexander Afanasyev1b449c42012-03-13 20:24:07 -070068 m_map.erase (p);
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -070069 }
Alexander Afanasyev1b449c42012-03-13 20:24:07 -070070
71 map<string, uint32_t> m_map;
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -070072};
73
74BOOST_AUTO_TEST_CASE (SyncLogicTest)
75{
Alexander Afanasyev1b449c42012-03-13 20:24:07 -070076 Handler h1 ("1");
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -070077
Zhenkai Zhu1cb29292012-05-31 22:54:34 -070078 SyncLogic l1 ("/bcast", bind (&Handler::wrapper, &h1, _1), bind (&Handler::onRemove, &h1, _1));
Alexander Afanasyev1b449c42012-03-13 20:24:07 -070079 l1.addLocalNames ("/one", 1, 2);
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -070080
Alexander Afanasyev1b449c42012-03-13 20:24:07 -070081 BOOST_CHECK_EQUAL (h1.m_map.size (), 0);
82 sleep (1);
83 BOOST_CHECK_EQUAL (h1.m_map.size (), 0);
84
85 Handler h2 ("2");
Zhenkai Zhu1cb29292012-05-31 22:54:34 -070086 SyncLogic l2 ("/bcast", bind (&Handler::wrapper, &h2, _1), bind (&Handler::onRemove, &h2, _1));
Alexander Afanasyev1b449c42012-03-13 20:24:07 -070087
88 sleep (1);
89 BOOST_CHECK_EQUAL (h1.m_map.size (), 0);
90 BOOST_CHECK_EQUAL (h2.m_map.size (), 1);
91
92 // l1.remove ("/one");
93
94 // sleep (10);
95// l1.
Alexander Afanasyevbf2b4362012-03-12 23:55:09 -070096}