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 | |
| 37 | string sitToString(SyncInterestTable *sit) { |
Alexander Afanasyev | d3c501e | 2012-03-15 17:52:34 -0700 | [diff] [blame] | 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; |
Zhenkai Zhu | a5d06d7 | 2012-03-09 15:16:24 -0800 | [diff] [blame] | 46 | } |
| 47 | |
| 48 | BOOST_AUTO_TEST_CASE (SyncInterestTableTest) |
| 49 | { |
Alexander Afanasyev | d3c501e | 2012-03-15 17:52:34 -0700 | [diff] [blame] | 50 | INIT_LOGGERS (); |
| 51 | INIT_LOGGER ("Test.Pit"); |
Zhenkai Zhu | a5d06d7 | 2012-03-09 15:16:24 -0800 | [diff] [blame] | 52 | |
Alexander Afanasyev | d3c501e | 2012-03-15 17:52:34 -0700 | [diff] [blame] | 53 | 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 Zhu | a5d06d7 | 2012-03-09 15:16:24 -0800 | [diff] [blame] | 58 | |
Alexander Afanasyev | d3c501e | 2012-03-15 17:52:34 -0700 | [diff] [blame] | 59 | 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 Zhu | a5d06d7 | 2012-03-09 15:16:24 -0800 | [diff] [blame] | 73 | } |
| 74 | |
| 75 | |