2008-07-01 20:59:13 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2008, Arvid Norberg
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in
|
|
|
|
the documentation and/or other materials provided with the distribution.
|
|
|
|
* Neither the name of the author nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2007-12-30 10:36:01 +01:00
|
|
|
#include "libtorrent/session.hpp"
|
|
|
|
#include "libtorrent/session_settings.hpp"
|
|
|
|
#include "libtorrent/hasher.hpp"
|
|
|
|
#include "libtorrent/extensions/ut_pex.hpp"
|
2009-11-02 03:00:41 +01:00
|
|
|
#include "libtorrent/thread.hpp"
|
2007-12-30 10:36:01 +01:00
|
|
|
#include <boost/tuple/tuple.hpp>
|
|
|
|
|
|
|
|
#include "test.hpp"
|
|
|
|
#include "setup_transfer.hpp"
|
2009-12-15 14:11:07 +01:00
|
|
|
#include <iostream>
|
2007-12-30 10:36:01 +01:00
|
|
|
|
|
|
|
void test_pex()
|
|
|
|
{
|
|
|
|
using namespace libtorrent;
|
|
|
|
|
2008-12-21 00:06:06 +01:00
|
|
|
session ses1(fingerprint("LT", 0, 1, 0, 0), std::make_pair(48200, 49000), "0.0.0.0", 0);
|
|
|
|
session ses2(fingerprint("LT", 0, 1, 0, 0), std::make_pair(49200, 50000), "0.0.0.0", 0);
|
|
|
|
session ses3(fingerprint("LT", 0, 1, 0, 0), std::make_pair(50200, 51000), "0.0.0.0", 0);
|
2007-12-30 10:36:01 +01:00
|
|
|
|
2011-03-24 04:34:06 +01:00
|
|
|
ses1.add_extension(create_ut_pex_plugin);
|
|
|
|
ses2.add_extension(create_ut_pex_plugin);
|
|
|
|
|
|
|
|
torrent_handle tor1;
|
|
|
|
torrent_handle tor2;
|
|
|
|
torrent_handle tor3;
|
|
|
|
|
|
|
|
boost::tie(tor1, tor2, tor3) = setup_transfer(&ses1, &ses2, &ses3, true, false, false, "_pex");
|
|
|
|
|
|
|
|
int mask = alert::all_categories
|
|
|
|
& ~(alert::progress_notification
|
|
|
|
| alert::performance_warning
|
|
|
|
| alert::stats_notification);
|
|
|
|
ses1.set_alert_mask(mask);
|
|
|
|
ses2.set_alert_mask(mask);
|
|
|
|
ses3.set_alert_mask(mask);
|
|
|
|
|
2007-12-30 10:36:01 +01:00
|
|
|
// this is to avoid everything finish from a single peer
|
|
|
|
// immediately. To make the swarm actually connect all
|
|
|
|
// three peers before finishing.
|
2010-10-09 21:09:38 +02:00
|
|
|
session_settings set = ses1.settings();
|
2011-03-24 04:34:06 +01:00
|
|
|
set.download_rate_limit = 0;
|
|
|
|
set.upload_rate_limit = 0;
|
2010-10-09 21:09:38 +02:00
|
|
|
ses1.set_settings(set);
|
|
|
|
|
2007-12-30 10:36:01 +01:00
|
|
|
// make the peer connecting the two worthless to transfer
|
|
|
|
// data, to force peer 3 to connect directly to peer 1 through pex
|
2010-10-09 21:09:38 +02:00
|
|
|
set = ses2.settings();
|
2011-03-24 04:34:06 +01:00
|
|
|
set.download_rate_limit = 2000;
|
2010-10-09 21:09:38 +02:00
|
|
|
set.upload_rate_limit = 2000;
|
2011-03-24 04:34:06 +01:00
|
|
|
set.ignore_limits_on_local_network = false;
|
|
|
|
set.rate_limit_utp = true;
|
2010-10-09 21:09:38 +02:00
|
|
|
ses2.set_settings(set);
|
|
|
|
|
|
|
|
set = ses3.settings();
|
2011-03-24 04:34:06 +01:00
|
|
|
set.download_rate_limit = 0;
|
|
|
|
set.upload_rate_limit = 0;
|
2010-10-09 21:09:38 +02:00
|
|
|
ses3.set_settings(set);
|
2007-12-30 10:36:01 +01:00
|
|
|
|
|
|
|
#ifndef TORRENT_DISABLE_ENCRYPTION
|
|
|
|
pe_settings pes;
|
|
|
|
pes.out_enc_policy = pe_settings::forced;
|
|
|
|
pes.in_enc_policy = pe_settings::forced;
|
|
|
|
ses1.set_pe_settings(pes);
|
|
|
|
ses2.set_pe_settings(pes);
|
|
|
|
ses3.set_pe_settings(pes);
|
|
|
|
#endif
|
|
|
|
|
2011-03-24 04:34:06 +01:00
|
|
|
test_sleep(100);
|
2007-12-30 10:36:01 +01:00
|
|
|
|
2009-04-10 23:25:37 +02:00
|
|
|
// in this test, ses1 is a seed, ses2 is connected to ses1 and ses3.
|
|
|
|
// the expected behavior is that ses2 will introduce ses1 and ses3 to each other
|
2008-11-05 04:17:41 +01:00
|
|
|
error_code ec;
|
|
|
|
tor2.connect_peer(tcp::endpoint(address::from_string("127.0.0.1", ec), ses1.listen_port()));
|
|
|
|
tor2.connect_peer(tcp::endpoint(address::from_string("127.0.0.1", ec), ses3.listen_port()));
|
2007-12-30 10:36:01 +01:00
|
|
|
|
2009-04-10 23:25:37 +02:00
|
|
|
torrent_status st1;
|
|
|
|
torrent_status st2;
|
|
|
|
torrent_status st3;
|
2011-03-24 17:46:26 +01:00
|
|
|
for (int i = 0; i < 15; ++i)
|
2007-12-30 10:36:01 +01:00
|
|
|
{
|
2008-01-02 04:18:29 +01:00
|
|
|
print_alerts(ses1, "ses1");
|
|
|
|
print_alerts(ses2, "ses2");
|
|
|
|
print_alerts(ses3, "ses3");
|
2007-12-30 10:36:01 +01:00
|
|
|
|
2009-04-10 23:25:37 +02:00
|
|
|
st1 = tor1.status();
|
|
|
|
st2 = tor2.status();
|
|
|
|
st3 = tor3.status();
|
2007-12-30 10:36:01 +01:00
|
|
|
|
2013-06-20 07:28:42 +02:00
|
|
|
print_ses_rate(i, &st1, &st2, &st3);
|
2007-12-30 10:36:01 +01:00
|
|
|
|
2011-03-24 04:34:06 +01:00
|
|
|
// this is the success condition
|
2009-04-10 23:25:37 +02:00
|
|
|
if (st1.num_peers == 2 && st2.num_peers == 2 && st3.num_peers == 2)
|
|
|
|
break;
|
|
|
|
|
2011-03-24 04:34:06 +01:00
|
|
|
// this suggests that we failed. If session 3 completes without
|
|
|
|
// actually connecting to session 1, everything was transferred
|
|
|
|
// through session 2
|
2008-01-27 21:45:00 +01:00
|
|
|
if (st3.state == torrent_status::seeding) break;
|
2011-03-24 04:34:06 +01:00
|
|
|
|
2007-12-30 10:36:01 +01:00
|
|
|
test_sleep(1000);
|
|
|
|
}
|
|
|
|
|
2009-04-10 23:25:37 +02:00
|
|
|
TEST_CHECK(st1.num_peers == 2 && st2.num_peers == 2 && st3.num_peers == 2)
|
2007-12-30 10:36:01 +01:00
|
|
|
|
2010-10-30 19:23:30 +02:00
|
|
|
if (!tor2.status().is_seeding && tor3.status().is_seeding) std::cerr << "done\n";
|
2007-12-30 10:36:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int test_main()
|
|
|
|
{
|
|
|
|
using namespace libtorrent;
|
|
|
|
|
|
|
|
// in case the previous run was terminated
|
2009-10-26 02:29:39 +01:00
|
|
|
error_code ec;
|
2012-03-17 20:06:11 +01:00
|
|
|
remove_all("tmp1_pex", ec);
|
|
|
|
remove_all("tmp2_pex", ec);
|
|
|
|
remove_all("tmp3_pex", ec);
|
2007-12-30 10:36:01 +01:00
|
|
|
|
|
|
|
test_pex();
|
|
|
|
|
2012-03-17 20:06:11 +01:00
|
|
|
remove_all("tmp1_pex", ec);
|
|
|
|
remove_all("tmp2_pex", ec);
|
|
|
|
remove_all("tmp3_pex", ec);
|
2007-12-30 10:36:01 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|