blob: 6934584426b9809d3a7d389e935a9bd620765b46 [file] [log] [blame]
Zhenkai Zhu1bdc7032012-03-07 20:47:52 -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 Zhu1bdc7032012-03-07 20:47:52 -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
27#include <boost/make_shared.hpp>
28
Alexander Afanasyev158ec0d2012-04-05 13:48:55 -070029#include "sync-ccnx-wrapper.h"
Zhenkai Zhu1bdc7032012-03-07 20:47:52 -080030
31using namespace Sync;
32using namespace std;
33using namespace boost;
34
35string echoStr = "";
36
37void echo(string str) {
Alexander Afanasyev2247b302012-03-14 14:11:54 -070038 echoStr = str;
Zhenkai Zhu1bdc7032012-03-07 20:47:52 -080039}
40
41struct TestStruct {
Alexander Afanasyev2247b302012-03-14 14:11:54 -070042 string s_str1, s_str2;
43 void set(string str1, string str2) {
44 s_str1 = str1;
45 s_str2 = str2;
46 }
Zhenkai Zhu1bdc7032012-03-07 20:47:52 -080047};
48
49BOOST_AUTO_TEST_CASE (CcnxWrapperTest)
50{
Alexander Afanasyev2247b302012-03-14 14:11:54 -070051 CcnxWrapper ha;
52 CcnxWrapper hb;
Zhenkai Zhu1bdc7032012-03-07 20:47:52 -080053
Alexander Afanasyev2247b302012-03-14 14:11:54 -070054 TestStruct foo;
Zhenkai Zhu1bdc7032012-03-07 20:47:52 -080055
Alexander Afanasyev2247b302012-03-14 14:11:54 -070056 boost::function<void (string)> globalFunc = echo;
57 boost::function<void (string, string)> memberFunc =
58 bind(&TestStruct::set, &foo, _1, _2);
Zhenkai Zhu1bdc7032012-03-07 20:47:52 -080059
Alexander Afanasyev2247b302012-03-14 14:11:54 -070060 string prefix = "/ucla.edu";
61 ha.setInterestFilter(prefix, globalFunc);
62 this_thread::sleep (posix_time::milliseconds (10));
Zhenkai Zhu1bdc7032012-03-07 20:47:52 -080063
Alexander Afanasyev2247b302012-03-14 14:11:54 -070064 string interest = "/ucla.edu/0";
65 hb.sendInterest(interest, memberFunc);
Zhenkai Zhu1bdc7032012-03-07 20:47:52 -080066
Alexander Afanasyev2247b302012-03-14 14:11:54 -070067 // give time for ccnd to react
Chaoyi Bian98135192012-03-27 18:34:11 -070068 sleep(1);
Alexander Afanasyev2247b302012-03-14 14:11:54 -070069 this_thread::sleep (posix_time::milliseconds (5));
70 BOOST_CHECK_EQUAL(echoStr, interest);
Zhenkai Zhu3a4758f2012-03-07 20:56:54 -080071
Alexander Afanasyev2247b302012-03-14 14:11:54 -070072 string name = "/ucla.edu/0";
73 string data = "random bits: !#$!@#$!";
74 ha.publishData(name, data, 5);
Zhenkai Zhu1bdc7032012-03-07 20:47:52 -080075
Alexander Afanasyev2247b302012-03-14 14:11:54 -070076 hb.sendInterest(interest, memberFunc);
Zhenkai Zhu1bdc7032012-03-07 20:47:52 -080077
Alexander Afanasyev2247b302012-03-14 14:11:54 -070078 // give time for ccnd to react
79 this_thread::sleep (posix_time::milliseconds (5));
80 BOOST_CHECK_EQUAL(foo.s_str1, name);
81 BOOST_CHECK_EQUAL(foo.s_str2, data);
Zhenkai Zhu1bdc7032012-03-07 20:47:52 -080082}
83
84