Zhenkai Zhu | a5d06d7 | 2012-03-09 15:16:24 -0800 | [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> |
Chaoyi Bian | 3e1eb16 | 2012-04-03 16:59:32 -0700 | [diff] [blame] | 19 | * Chaoyi Bian <bcy@pku.edu.cn> |
Zhenkai Zhu | a5d06d7 | 2012-03-09 15:16:24 -0800 | [diff] [blame] | 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 | using boost::test_tools::output_test_stream; |
| 26 | #include <vector> |
| 27 | |
| 28 | #include <boost/make_shared.hpp> |
| 29 | |
Alexander Afanasyev | 158ec0d | 2012-04-05 13:48:55 -0700 | [diff] [blame] | 30 | #include "sync-interest-table.h" |
| 31 | #include "sync-log.h" |
Zhenkai Zhu | a5d06d7 | 2012-03-09 15:16:24 -0800 | [diff] [blame] | 32 | |
| 33 | using namespace Sync; |
| 34 | using namespace std; |
| 35 | using namespace boost; |
| 36 | |
Alexander Afanasyev | 8e845ba | 2012-05-29 14:33:06 -0700 | [diff] [blame] | 37 | // 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 Zhu | a5d06d7 | 2012-03-09 15:16:24 -0800 | [diff] [blame] | 47 | |
| 48 | BOOST_AUTO_TEST_CASE (SyncInterestTableTest) |
| 49 | { |
Alexander Afanasyev | 8e845ba | 2012-05-29 14:33:06 -0700 | [diff] [blame] | 50 | cerr << "SyncInterestTableTest is broken" << endl; |
| 51 | |
| 52 | // INIT_LOGGERS (); |
| 53 | // INIT_LOGGER ("Test.Pit"); |
Zhenkai Zhu | a5d06d7 | 2012-03-09 15:16:24 -0800 | [diff] [blame] | 54 | |
Alexander Afanasyev | 8e845ba | 2012-05-29 14:33:06 -0700 | [diff] [blame] | 55 | // 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 Zhu | a5d06d7 | 2012-03-09 15:16:24 -0800 | [diff] [blame] | 60 | |
Alexander Afanasyev | 8e845ba | 2012-05-29 14:33:06 -0700 | [diff] [blame] | 61 | // str = sitToString(&sit); |
| 62 | // BOOST_CHECK_EQUAL(str, ""); |
Alexander Afanasyev | d3c501e | 2012-03-15 17:52:34 -0700 | [diff] [blame] | 63 | |
Alexander Afanasyev | 8e845ba | 2012-05-29 14:33:06 -0700 | [diff] [blame] | 64 | // _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 Zhu | a5d06d7 | 2012-03-09 15:16:24 -0800 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | |