blob: d35fdaa47096db869f374ec31b499e8078b412fe [file] [log] [blame]
Zhenkai Zhu64db03a2012-03-12 19:25:56 -07001/* -*- 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
27#include <boost/make_shared.hpp>
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -070028#include <boost/date_time/posix_time/posix_time.hpp>
29
30#include "../model/sync-log.h"
Zhenkai Zhu64db03a2012-03-12 19:25:56 -070031
32#include "../model/sync-app-socket.h"
33extern "C" {
34#include <unistd.h>
35}
36
37using namespace Sync;
38using namespace std;
39using namespace boost;
40
Alexander Afanasyev7df73332012-03-15 12:31:49 -070041INIT_LOGGER ("Test.AppSocket");
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -070042
Zhenkai Zhu00304002012-03-12 21:32:30 -070043class TestSocketApp {
Zhenkai Zhu64db03a2012-03-12 19:25:56 -070044public:
45 map<string, string> data;
46 void set(string str1, string str2) {
Alexander Afanasyev235c6d72012-03-15 22:28:43 -070047 // _LOG_FUNCTION (this << ", " << str1);
Zhenkai Zhu64db03a2012-03-12 19:25:56 -070048 data.insert(make_pair(str1, str2));
Alexander Afanasyev1b449c42012-03-13 20:24:07 -070049 // cout << str1 << ", " << str2 << endl;
Zhenkai Zhu64db03a2012-03-12 19:25:56 -070050 }
51
52 string toString(){
53 map<string, string>::iterator it = data.begin();
Zhenkai Zhu1a0fd5d2012-03-12 21:34:42 -070054 string str = "\n";
Zhenkai Zhu64db03a2012-03-12 19:25:56 -070055 for (; it != data.end(); ++it){
56 str += "<";
57 str += it->first;
58 str += "|";
59 str += it->second;
60 str += ">";
Alexander Afanasyev1b449c42012-03-13 20:24:07 -070061 str += "\n";
Zhenkai Zhu64db03a2012-03-12 19:25:56 -070062 }
Alexander Afanasyev1b449c42012-03-13 20:24:07 -070063
Zhenkai Zhu64db03a2012-03-12 19:25:56 -070064 return str;
65 }
66
67};
68
69BOOST_AUTO_TEST_CASE (AppSocketTest)
70{
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -070071 INIT_LOGGERS ();
72
Alexander Afanasyev1b449c42012-03-13 20:24:07 -070073 TestSocketApp a1, a2, a3;
Zhenkai Zhu64db03a2012-03-12 19:25:56 -070074
Alexander Afanasyev1b449c42012-03-13 20:24:07 -070075 string syncPrefix("/let/us/sync");
76 string p1("/irl.cs.ucla.edu"), p2("/yakshi.org"), p3("/google.com");
Zhenkai Zhu64db03a2012-03-12 19:25:56 -070077
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -070078 _LOG_DEBUG ("s1");
Alexander Afanasyev1b449c42012-03-13 20:24:07 -070079 SyncAppSocket s1 (syncPrefix, bind(&TestSocketApp::set, &a1, _1, _2));
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -070080 this_thread::sleep (posix_time::milliseconds (50));
81 _LOG_DEBUG ("s2");
Alexander Afanasyev1b449c42012-03-13 20:24:07 -070082 SyncAppSocket s2 (syncPrefix, bind(&TestSocketApp::set, &a2, _1, _2));
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -070083 this_thread::sleep (posix_time::milliseconds (50));
84 SyncAppSocket s3 (syncPrefix, bind(&TestSocketApp::set, &a3, _1, _2));
85 this_thread::sleep (posix_time::milliseconds (50));
Zhenkai Zhu64db03a2012-03-12 19:25:56 -070086
Alexander Afanasyev1b449c42012-03-13 20:24:07 -070087 // single source
88 string data0 = "Very funny Scotty, now beam down my clothes";
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -070089 _LOG_DEBUG ("s1 publish");
Alexander Afanasyev1b449c42012-03-13 20:24:07 -070090 s1.publish (p1, 0, data0, 10);
Alexander Afanasyev235c6d72012-03-15 22:28:43 -070091 this_thread::sleep (posix_time::milliseconds (120));
Zhenkai Zhu00304002012-03-12 21:32:30 -070092
Alexander Afanasyev1b449c42012-03-13 20:24:07 -070093 // from code logic, we won't be fetching our own data
94 a1.set(p1 + "/0/0", data0);
95 BOOST_CHECK_EQUAL(a1.toString(), a2.toString());
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -070096 BOOST_CHECK_EQUAL(a2.toString(), a3.toString());
Zhenkai Zhu00304002012-03-12 21:32:30 -070097
Alexander Afanasyev235c6d72012-03-15 22:28:43 -070098 // single source, multiple data at once
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -070099 string data1 = "Yes, give me that ketchup";
100 string data2 = "Don't look conspicuous, it draws fire";
Zhenkai Zhu64db03a2012-03-12 19:25:56 -0700101
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -0700102 _LOG_DEBUG ("s1 publish");
103 s1.publish (p1, 0, data1, 10);
104 _LOG_DEBUG ("s1 publish");
105 s1.publish (p1, 0, data2, 10);
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700106 this_thread::sleep (posix_time::milliseconds (250));
Alexander Afanasyev7df73332012-03-15 12:31:49 -0700107
Alexander Afanasyev235c6d72012-03-15 22:28:43 -0700108 // from code logic, we won't be fetching our own data
Alexander Afanasyev7df73332012-03-15 12:31:49 -0700109 a1.set(p1 + "/0/1", data1);
110 a1.set(p1 + "/0/2", data2);
111 BOOST_CHECK_EQUAL(a1.toString(), a2.toString());
112 BOOST_CHECK_EQUAL(a2.toString(), a3.toString());
Zhenkai Zhu64db03a2012-03-12 19:25:56 -0700113
Alexander Afanasyev235c6d72012-03-15 22:28:43 -0700114 // another single source
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700115 string data3 = "You surf the Internet, I surf the real world";
116 string data4 = "I got a fortune cookie once that said 'You like Chinese food'";
117 string data5 = "Real men wear pink. Why? Because their wives make them";
118 _LOG_DEBUG ("s3 publish");
119 s3.publish(p3, 0, data3, 10);
120 this_thread::sleep (posix_time::milliseconds (200));
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -0700121
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700122 // another single source, multiple data at once
123 s2.publish(p2, 0, data4, 10);
124 s2.publish(p2, 0, data5, 10);
125 this_thread::sleep (posix_time::milliseconds (200));
Zhenkai Zhu00304002012-03-12 21:32:30 -0700126
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700127 // from code logic, we won't be fetching our own data
128 a3.set(p3 + "/0/0", data3);
129 a2.set(p2 + "/0/0", data4);
130 a2.set(p2 + "/0/1", data5);
131 BOOST_CHECK_EQUAL(a1.toString(), a2.toString());
132 BOOST_CHECK_EQUAL(a2.toString(), a3.toString());
Zhenkai Zhu64db03a2012-03-12 19:25:56 -0700133
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700134 // not sure weither this is simultanous data generation from multiple sources
Alexander Afanasyev235c6d72012-03-15 22:28:43 -0700135 _LOG_DEBUG ("Simultaneous publishing");
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700136 string data6 = "Shakespeare says: 'Prose before hos.'";
137 string data7 = "Pick good people, talent never wears out";
138 s1.publish(p1, 0, data6, 10);
Alexander Afanasyev235c6d72012-03-15 22:28:43 -0700139 // this_thread::sleep (posix_time::milliseconds (1000));
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700140 s2.publish(p2, 0, data7, 10);
Alexander Afanasyev235c6d72012-03-15 22:28:43 -0700141 this_thread::sleep (posix_time::milliseconds (1500));
Zhenkai Zhu00304002012-03-12 21:32:30 -0700142
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700143 // from code logic, we won't be fetching our own data
144 a1.set(p1 + "/0/3", data6);
145 a2.set(p2 + "/0/2", data7);
Alexander Afanasyev235c6d72012-03-15 22:28:43 -0700146 // a1.set(p1 + "/0/1", data6);
147 // a2.set(p2 + "/0/0", data7);
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700148 BOOST_CHECK_EQUAL(a1.toString(), a2.toString());
149 BOOST_CHECK_EQUAL(a2.toString(), a3.toString());
Alexander Afanasyev235c6d72012-03-15 22:28:43 -0700150
151 _LOG_DEBUG ("Finish");
Zhenkai Zhu64db03a2012-03-12 19:25:56 -0700152}