blob: 3f952c2b7abfe78cb5c213d21b1ed07912336e78 [file] [log] [blame]
/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2012 University of California, Los Angeles
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation;
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Author: Zhenkai Zhu <zhenkai@cs.ucla.edu>
* 卞超轶 Chaoyi Bian <bcy@pku.edu.cn>
* Alexander Afanasyev <alexander.afanasyev@ucla.edu>
*/
#include <boost/test/unit_test.hpp>
#include <boost/test/output_test_stream.hpp>
using boost::test_tools::output_test_stream;
#include <boost/make_shared.hpp>
#include "../model/sync-app-socket.h"
extern "C" {
#include <unistd.h>
}
using namespace Sync;
using namespace std;
using namespace boost;
class TestSocketApp {
public:
map<string, string> data;
void set(string str1, string str2) {
data.insert(make_pair(str1, str2));
// cout << str1 << ", " << str2 << endl;
}
string toString(){
map<string, string>::iterator it = data.begin();
string str = "\n";
for (; it != data.end(); ++it){
str += "<";
str += it->first;
str += "|";
str += it->second;
str += ">";
str += "\n";
}
return str;
}
};
BOOST_AUTO_TEST_CASE (AppSocketTest)
{
TestSocketApp a1, a2, a3;
string syncPrefix("/let/us/sync");
string p1("/irl.cs.ucla.edu"), p2("/yakshi.org"), p3("/google.com");
SyncAppSocket s1 (syncPrefix, bind(&TestSocketApp::set, &a1, _1, _2));
this_thread::sleep (posix_time::milliseconds (500));
SyncAppSocket s2 (syncPrefix, bind(&TestSocketApp::set, &a2, _1, _2));
// SyncAppSocket s3 (syncPrefix, bind(&TestSocketApp::set, &a3, _1, _2));
// single source
string data0 = "Very funny Scotty, now beam down my clothes";
s1.publish (p1, 0, data0, 10);
this_thread::sleep (posix_time::milliseconds (1));
// from code logic, we won't be fetching our own data
a1.set(p1 + "/0/0", data0);
BOOST_CHECK_EQUAL(a1.toString(), a2.toString());
// BOOST_CHECK_EQUAL(a2.toString(), a3.toString());
// // single source, multiple data at once
// string data1 = "Yes, give me that ketchup";
// string data2 = "Don't look conspicuous, it draws fire";
// s1.publish (p1, 0, data1, 10);
// s1.publish(p1, 0, data2, 10);
// sleep (1);
// // from code logic, we won't be fetching our own data
// a1.set(p1 + "/0/1", data1);
// a1.set(p1 + "/0/2", data2);
// BOOST_CHECK_EQUAL(a1.toString(), a2.toString());
// BOOST_CHECK_EQUAL(a2.toString(), a3.toString());
// // another single source
// string data3 = "You surf the Internet, I surf the real world";
// string data4 = "I got a fortune cookie once that said 'You like Chinese food'";
// string data5 = "Real men wear pink. Why? Because their wives make them";
// s3.publish(p3, 0, data3, 10);
// usleep(20000);
// // another single source, multiple data at once
// s2.publish(p2, 0, data4, 10);
// s2.publish(p2, 0, data5, 10);
// usleep(20000);
// // from code logic, we won't be fetching our own data
// a3.set(p3 + "/0/0", data3);
// a2.set(p2 + "/0/0", data4);
// a2.set(p2 + "/0/1", data5);
// BOOST_CHECK_EQUAL(a1.toString(), a2.toString());
// BOOST_CHECK_EQUAL(a2.toString(), a3.toString());
// // not sure weither this is simultanous data generation from multiple sources
// string data6 = "Shakespeare says: 'Prose before hos.'";
// string data7 = "Pick good people, talent never wears out";
// s1.publish(p1, 0, data6, 10);
// s2.publish(p2, 0, data7, 10);
// usleep(10000);
// // from code logic, we won't be fetching our own data
// a1.set(p1 + "/0/3", data6);
// a2.set(p2 + "/0/2", data7);
// BOOST_CHECK_EQUAL(a1.toString(), a2.toString());
// BOOST_CHECK_EQUAL(a2.toString(), a3.toString());
}