blob: dca697eb9d9e4ba99341b676faa0e89fc439a27e [file] [log] [blame]
Zhenkai Zhua5d06d72012-03-09 15:16:24 -08001/* -*- 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>
Zhenkai Zhua5d06d72012-03-09 15:16:24 -080020 * Alexander Afanasyev <alexander.afanasyev@ucla.edu>
21 */
22
23#include <boost/test/unit_test.hpp>
24#include <boost/test/output_test_stream.hpp>
25using boost::test_tools::output_test_stream;
26#include <vector>
27
28#include <boost/make_shared.hpp>
29
Alexander Afanasyev158ec0d2012-04-05 13:48:55 -070030#include "sync-interest-table.h"
31#include "sync-log.h"
Zhenkai Zhua5d06d72012-03-09 15:16:24 -080032
33using namespace Sync;
34using namespace std;
35using namespace boost;
36
37string sitToString(SyncInterestTable *sit) {
Alexander Afanasyevd3c501e2012-03-15 17:52:34 -070038 vector<string> ent = sit->fetchAll();
39 sort(ent.begin(), ent.end());
40 string str = "";
41 while(!ent.empty()){
42 str += ent.back();
43 ent.pop_back();
44 }
45 return str;
Zhenkai Zhua5d06d72012-03-09 15:16:24 -080046}
47
48BOOST_AUTO_TEST_CASE (SyncInterestTableTest)
49{
Alexander Afanasyevd3c501e2012-03-15 17:52:34 -070050 INIT_LOGGERS ();
51 INIT_LOGGER ("Test.Pit");
Zhenkai Zhua5d06d72012-03-09 15:16:24 -080052
Alexander Afanasyevd3c501e2012-03-15 17:52:34 -070053 SyncInterestTable sit;
54 sit.insert("/ucla.edu/0");
55 sit.insert("/ucla.edu/1");
56 string str = sitToString(&sit);
57 BOOST_CHECK_EQUAL(str, "/ucla.edu/1/ucla.edu/0");
Zhenkai Zhua5d06d72012-03-09 15:16:24 -080058
Alexander Afanasyevd3c501e2012-03-15 17:52:34 -070059 str = sitToString(&sit);
60 BOOST_CHECK_EQUAL(str, "");
61
62 _LOG_DEBUG ("Adding 0 and 1");
63 sit.insert("/ucla.edu/0");
64 sit.insert("/ucla.edu/1");
65 sleep(2);
66 _LOG_DEBUG ("Adding 0 and 2");
67 sit.insert("/ucla.edu/0");
68 sit.insert("/ucla.edu/2");
69 sleep(3);
70 _LOG_DEBUG ("Checking");
71 str = sitToString(&sit);
72 BOOST_CHECK_EQUAL(str, "/ucla.edu/2/ucla.edu/0");
Zhenkai Zhua5d06d72012-03-09 15:16:24 -080073}
74
75