blob: c35d1f72987516e20998e9204d82acacc483971c [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
Alexander Afanasyev8e845ba2012-05-29 14:33:06 -070037// string sitToString(SyncInterestTable *sit) {
38// 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;
46// }
Zhenkai Zhua5d06d72012-03-09 15:16:24 -080047
48BOOST_AUTO_TEST_CASE (SyncInterestTableTest)
49{
Alexander Afanasyev8e845ba2012-05-29 14:33:06 -070050 cerr << "SyncInterestTableTest is broken" << endl;
51
52 // INIT_LOGGERS ();
53 // INIT_LOGGER ("Test.Pit");
Zhenkai Zhua5d06d72012-03-09 15:16:24 -080054
Alexander Afanasyev8e845ba2012-05-29 14:33:06 -070055 // SyncInterestTable sit;
56 // sit.insert("/ucla.edu/0");
57 // sit.insert("/ucla.edu/1");
58 // string str = sitToString(&sit);
59 // BOOST_CHECK_EQUAL(str, "/ucla.edu/1/ucla.edu/0");
Zhenkai Zhua5d06d72012-03-09 15:16:24 -080060
Alexander Afanasyev8e845ba2012-05-29 14:33:06 -070061 // str = sitToString(&sit);
62 // BOOST_CHECK_EQUAL(str, "");
Alexander Afanasyevd3c501e2012-03-15 17:52:34 -070063
Alexander Afanasyev8e845ba2012-05-29 14:33:06 -070064 // _LOG_DEBUG ("Adding 0 and 1");
65 // sit.insert("/ucla.edu/0");
66 // sit.insert("/ucla.edu/1");
67 // sleep(2);
68 // _LOG_DEBUG ("Adding 0 and 2");
69 // sit.insert("/ucla.edu/0");
70 // sit.insert("/ucla.edu/2");
71 // sleep(3);
72 // _LOG_DEBUG ("Checking");
73 // str = sitToString(&sit);
74 // BOOST_CHECK_EQUAL(str, "/ucla.edu/2/ucla.edu/0");
Zhenkai Zhua5d06d72012-03-09 15:16:24 -080075}
76
77