blob: bb8558038bb624a3f5b6924f114a2ea9f08a2cf1 [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>
19 * 卞超轶 Chaoyi Bian <bcy@pku.edu.cn>
20 * 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
30#include "../model/sync-interest-table.h"
31
32using namespace Sync;
33using namespace std;
34using namespace boost;
35
36string sitToString(SyncInterestTable *sit) {
37 vector<string> ent = sit->fetchAll();
38 sort(ent.begin(), ent.end());
39 string str = "";
40 while(!ent.empty()){
41 str += ent.back();
42 ent.pop_back();
43 }
44 return str;
45}
46
47BOOST_AUTO_TEST_CASE (SyncInterestTableTest)
48{
49 SyncInterestTable sit;
50 sit.insert("/ucla.edu/0");
51 sit.insert("/ucla.edu/1");
52 string str = sitToString(&sit);
53 BOOST_CHECK_EQUAL(str, "/ucla.edu/1/ucla.edu/0");
54
55 str = sitToString(&sit);
56 BOOST_CHECK_EQUAL(str, "");
57
58 sit.insert("/ucla.edu/0");
59 sit.insert("/ucla.edu/1");
60 sleep(2);
61 sit.insert("/ucla.edu/0");
62 sit.insert("/ucla.edu/2");
63 sleep(3);
64 str = sitToString(&sit);
65 BOOST_CHECK_EQUAL(str, "/ucla.edu/2/ucla.edu/0");
66}
67
68