solidity/peer.cpp

84 lines
2.1 KiB
C++
Raw Normal View History

2014-01-22 14:08:18 +00:00
/*
This file is part of cpp-ethereum.
cpp-ethereum is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
2014-01-22 14:08:18 +00:00
(at your option) any later version.
cpp-ethereum is distributed in the hope that it will be useful,
2014-01-22 14:08:18 +00:00
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
2014-02-16 10:41:15 +00:00
along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
2014-01-22 14:08:18 +00:00
*/
/** @file peer.cpp
* @author Gav Wood <i@gavwood.com>
* @date 2014
* Peer Network test functions.
*/
#include <boost/test/unit_test.hpp>
2014-02-09 11:37:13 +00:00
#include <chrono>
#include <thread>
2014-09-03 19:06:36 +00:00
#include <libp2p/Host.h>
2014-01-22 14:08:18 +00:00
using namespace std;
using namespace dev;
using namespace dev::p2p;
2014-01-22 14:08:18 +00:00
BOOST_AUTO_TEST_SUITE(p2p)
BOOST_AUTO_TEST_CASE(host)
{
NetworkPreferences host1prefs(30301, "127.0.0.1", true, true);
NetworkPreferences host2prefs(30302, "127.0.0.1", true, true);
Host host1("Test", host1prefs);
host1.start();
Host host2("Test", host2prefs);
auto node2 = host2.id();
host2.start();
host1.addNode(node2, "127.0.0.1", host2prefs.listenPort, host2prefs.listenPort);
2015-01-26 03:54:15 +00:00
this_thread::sleep_for(chrono::seconds(3));
}
BOOST_AUTO_TEST_SUITE_END()
2014-01-22 14:08:18 +00:00
int peerTest(int argc, char** argv)
{
2015-01-25 22:08:34 +00:00
Public remoteAlias;
2014-01-22 14:40:45 +00:00
short listenPort = 30303;
string remoteHost;
short remotePort = 30303;
2015-01-25 22:08:34 +00:00
2014-01-22 14:40:45 +00:00
for (int i = 1; i < argc; ++i)
2014-01-22 14:08:18 +00:00
{
2014-01-22 14:40:45 +00:00
string arg = argv[i];
if (arg == "-l" && i + 1 < argc)
listenPort = (short)atoi(argv[++i]);
2014-01-22 14:40:45 +00:00
else if (arg == "-r" && i + 1 < argc)
remoteHost = argv[++i];
else if (arg == "-p" && i + 1 < argc)
remotePort = (short)atoi(argv[++i]);
2015-01-25 22:08:34 +00:00
else if (arg == "-ra" && i + 1 < argc)
remoteAlias = Public(dev::fromHex(argv[++i]));
2014-01-22 14:40:45 +00:00
else
remoteHost = argv[i];
}
2014-01-22 14:08:18 +00:00
2014-09-11 11:27:15 +00:00
Host ph("Test", NetworkPreferences(listenPort));
2014-01-22 14:08:18 +00:00
2015-01-25 22:08:34 +00:00
if (!remoteHost.empty() && !remoteAlias)
ph.addNode(remoteAlias, remoteHost, remotePort, remotePort);
2015-01-25 22:08:34 +00:00
this_thread::sleep_for(chrono::milliseconds(200));
2014-01-22 14:08:18 +00:00
return 0;
}