2014-10-12 10:39:14 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2014, 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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libtorrent/session.hpp"
|
|
|
|
#include "libtorrent/session_settings.hpp"
|
|
|
|
#include "libtorrent/hasher.hpp"
|
|
|
|
#include "libtorrent/alert_types.hpp"
|
|
|
|
#include "libtorrent/time.hpp"
|
2015-06-18 01:36:26 +02:00
|
|
|
#include "libtorrent/random.hpp"
|
2017-04-11 06:52:46 +02:00
|
|
|
#include "libtorrent/aux_/path.hpp"
|
2016-05-29 18:58:16 +02:00
|
|
|
#include <iostream>
|
2016-06-20 17:32:06 +02:00
|
|
|
#include <tuple>
|
2014-10-12 10:39:14 +02:00
|
|
|
|
|
|
|
#include "test.hpp"
|
|
|
|
#include "setup_transfer.hpp"
|
|
|
|
#include "swarm_suite.hpp"
|
|
|
|
|
2016-06-19 01:24:27 +02:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(push)
|
|
|
|
// warning C4706: assignment within conditional expression
|
|
|
|
#pragma warning( disable : 4706 )
|
|
|
|
#endif
|
|
|
|
|
2017-07-09 16:32:01 +02:00
|
|
|
void test_swarm(test_flags_t const flags)
|
2014-10-12 10:39:14 +02:00
|
|
|
{
|
2017-04-12 20:05:53 +02:00
|
|
|
using namespace lt;
|
2014-10-12 10:39:14 +02:00
|
|
|
|
2016-10-10 02:23:45 +02:00
|
|
|
std::printf("\n\n ==== TEST SWARM === %s%s%s%s%s ===\n\n\n"
|
2017-07-09 16:32:01 +02:00
|
|
|
, (flags & test_flags::super_seeding) ? "super-seeding ": ""
|
|
|
|
, (flags & test_flags::strict_super_seeding) ? "strict-super-seeding ": ""
|
|
|
|
, (flags & test_flags::seed_mode) ? "seed-mode ": ""
|
|
|
|
, (flags & test_flags::time_critical) ? "time-critical ": ""
|
|
|
|
, (flags & test_flags::suggest) ? "suggest ": ""
|
2014-10-12 10:39:14 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
// in case the previous run was terminated
|
|
|
|
error_code ec;
|
|
|
|
remove_all("tmp1_swarm", ec);
|
|
|
|
remove_all("tmp2_swarm", ec);
|
|
|
|
remove_all("tmp3_swarm", ec);
|
|
|
|
|
|
|
|
// these are declared before the session objects
|
|
|
|
// so that they are destructed last. This enables
|
|
|
|
// the sessions to destruct in parallel
|
|
|
|
session_proxy p1;
|
|
|
|
session_proxy p2;
|
|
|
|
session_proxy p3;
|
|
|
|
|
2017-07-26 06:33:10 +02:00
|
|
|
auto const mask = alert::all_categories
|
2014-10-12 10:39:14 +02:00
|
|
|
& ~(alert::progress_notification
|
|
|
|
| alert::performance_warning
|
|
|
|
| alert::stats_notification);
|
|
|
|
|
|
|
|
settings_pack pack;
|
2015-01-03 21:17:38 +01:00
|
|
|
pack.set_bool(settings_pack::enable_lsd, false);
|
|
|
|
pack.set_bool(settings_pack::enable_natpmp, false);
|
|
|
|
pack.set_bool(settings_pack::enable_upnp, false);
|
|
|
|
pack.set_bool(settings_pack::enable_dht, false);
|
2014-10-12 10:39:14 +02:00
|
|
|
pack.set_int(settings_pack::alert_mask, mask);
|
|
|
|
pack.set_bool(settings_pack::allow_multiple_connections_per_ip, true);
|
|
|
|
|
2017-07-09 16:32:01 +02:00
|
|
|
if (flags & test_flags::strict_super_seeding)
|
2014-10-12 10:39:14 +02:00
|
|
|
pack.set_bool(settings_pack::strict_super_seeding, true);
|
|
|
|
|
2017-07-09 16:32:01 +02:00
|
|
|
if (flags & test_flags::suggest)
|
2014-10-12 10:39:14 +02:00
|
|
|
pack.set_int(settings_pack::suggest_mode, settings_pack::suggest_read_cache);
|
|
|
|
|
|
|
|
// this is to avoid everything finish from a single peer
|
|
|
|
// immediately. To make the swarm actually connect all
|
|
|
|
// three peers before finishing.
|
2017-04-02 20:22:17 +02:00
|
|
|
float const rate_limit = 100000;
|
2014-10-12 10:39:14 +02:00
|
|
|
|
2017-04-02 20:22:17 +02:00
|
|
|
int const port = static_cast<int>(lt::random(100));
|
2015-06-18 01:36:26 +02:00
|
|
|
char iface[50];
|
2016-05-17 15:24:06 +02:00
|
|
|
std::snprintf(iface, sizeof(iface), "0.0.0.0:480%02d", port);
|
2016-04-20 06:45:32 +02:00
|
|
|
pack.set_int(settings_pack::upload_rate_limit, int(rate_limit));
|
2015-06-18 01:36:26 +02:00
|
|
|
pack.set_str(settings_pack::listen_interfaces, iface);
|
2014-10-12 10:39:14 +02:00
|
|
|
pack.set_int(settings_pack::max_retry_port_bind, 1000);
|
|
|
|
|
|
|
|
pack.set_int(settings_pack::out_enc_policy, settings_pack::pe_forced);
|
|
|
|
pack.set_int(settings_pack::in_enc_policy, settings_pack::pe_forced);
|
|
|
|
|
2014-12-31 16:51:45 +01:00
|
|
|
lt::session ses1(pack);
|
2014-10-12 10:39:14 +02:00
|
|
|
|
2016-05-17 15:24:06 +02:00
|
|
|
std::snprintf(iface, sizeof(iface), "0.0.0.0:490%02d", port);
|
2015-06-18 01:36:26 +02:00
|
|
|
pack.set_str(settings_pack::listen_interfaces, iface);
|
2016-04-20 06:45:32 +02:00
|
|
|
pack.set_int(settings_pack::download_rate_limit, int(rate_limit / 2));
|
|
|
|
pack.set_int(settings_pack::upload_rate_limit, int(rate_limit));
|
2014-12-31 16:51:45 +01:00
|
|
|
lt::session ses2(pack);
|
2015-06-14 22:41:32 +02:00
|
|
|
|
2016-05-17 15:24:06 +02:00
|
|
|
std::snprintf(iface, sizeof(iface), "0.0.0.0:500%02d", port);
|
2015-06-18 01:36:26 +02:00
|
|
|
pack.set_str(settings_pack::listen_interfaces, iface);
|
2014-12-31 16:51:45 +01:00
|
|
|
lt::session ses3(pack);
|
2014-10-12 10:39:14 +02:00
|
|
|
|
|
|
|
torrent_handle tor1;
|
|
|
|
torrent_handle tor2;
|
|
|
|
torrent_handle tor3;
|
|
|
|
|
|
|
|
add_torrent_params p;
|
2017-07-09 16:32:01 +02:00
|
|
|
p.flags &= ~torrent_flags::paused;
|
|
|
|
p.flags &= ~torrent_flags::auto_managed;
|
|
|
|
if (flags & test_flags::seed_mode) p.flags |= torrent_flags::seed_mode;
|
2014-10-12 10:39:14 +02:00
|
|
|
// test using piece sizes smaller than 16kB
|
2016-06-20 17:32:06 +02:00
|
|
|
std::tie(tor1, tor2, tor3) = setup_transfer(&ses1, &ses2, &ses3, true
|
2017-07-09 16:32:01 +02:00
|
|
|
, false, true, "_swarm", 8 * 1024, nullptr, bool(flags & test_flags::super_seeding), &p);
|
2014-10-12 10:39:14 +02:00
|
|
|
|
2017-07-09 16:32:01 +02:00
|
|
|
if (flags & test_flags::time_critical)
|
2014-10-12 10:39:14 +02:00
|
|
|
{
|
2016-12-22 16:42:33 +01:00
|
|
|
tor2.set_piece_deadline(piece_index_t(2), 0);
|
|
|
|
tor2.set_piece_deadline(piece_index_t(5), 1000);
|
|
|
|
tor2.set_piece_deadline(piece_index_t(8), 2000);
|
2014-10-12 10:39:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
float sum_dl_rate2 = 0.f;
|
|
|
|
float sum_dl_rate3 = 0.f;
|
|
|
|
int count_dl_rates2 = 0;
|
|
|
|
int count_dl_rates3 = 0;
|
|
|
|
|
|
|
|
for (int i = 0; i < 80; ++i)
|
|
|
|
{
|
|
|
|
print_alerts(ses1, "ses1");
|
|
|
|
print_alerts(ses2, "ses2");
|
|
|
|
print_alerts(ses3, "ses3");
|
|
|
|
|
|
|
|
torrent_status st1 = tor1.status();
|
|
|
|
torrent_status st2 = tor2.status();
|
|
|
|
torrent_status st3 = tor3.status();
|
|
|
|
|
2017-07-09 16:32:01 +02:00
|
|
|
if (flags & test_flags::super_seeding)
|
2014-10-12 20:16:46 +02:00
|
|
|
{
|
|
|
|
TEST_CHECK(st1.is_seeding);
|
2017-07-09 16:32:01 +02:00
|
|
|
TEST_CHECK(tor1.flags() & torrent_flags::super_seeding);
|
2014-10-12 20:16:46 +02:00
|
|
|
}
|
|
|
|
|
2014-10-12 10:39:14 +02:00
|
|
|
if (st2.progress < 1.f && st2.progress > 0.5f)
|
|
|
|
{
|
|
|
|
sum_dl_rate2 += st2.download_payload_rate;
|
|
|
|
++count_dl_rates2;
|
|
|
|
}
|
|
|
|
if (st3.progress < 1.f && st3.progress > 0.5f)
|
|
|
|
{
|
|
|
|
sum_dl_rate3 += st3.download_rate;
|
|
|
|
++count_dl_rates3;
|
|
|
|
}
|
|
|
|
|
2016-04-20 06:45:32 +02:00
|
|
|
print_ses_rate(float(i), &st1, &st2, &st3);
|
2014-10-12 10:39:14 +02:00
|
|
|
|
|
|
|
if (st2.is_seeding && st3.is_seeding) break;
|
2016-06-26 15:24:06 +02:00
|
|
|
std::this_thread::sleep_for(lt::milliseconds(1000));
|
2014-10-12 10:39:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CHECK(tor2.status().is_seeding);
|
|
|
|
TEST_CHECK(tor3.status().is_seeding);
|
|
|
|
|
|
|
|
float average2 = sum_dl_rate2 / float(count_dl_rates2);
|
|
|
|
float average3 = sum_dl_rate3 / float(count_dl_rates3);
|
|
|
|
|
2017-01-02 16:16:33 +01:00
|
|
|
std::cout << average2 << std::endl;
|
|
|
|
std::cout << "average rate: " << (average2 / 1000.f) << "kB/s - "
|
2014-10-12 10:39:14 +02:00
|
|
|
<< (average3 / 1000.f) << "kB/s" << std::endl;
|
|
|
|
|
2017-01-02 16:16:33 +01:00
|
|
|
if (tor2.status().is_seeding && tor3.status().is_seeding) std::cout << "done\n";
|
2014-10-12 10:39:14 +02:00
|
|
|
|
|
|
|
// make sure the files are deleted
|
|
|
|
ses1.remove_torrent(tor1, lt::session::delete_files);
|
|
|
|
ses2.remove_torrent(tor2, lt::session::delete_files);
|
|
|
|
ses3.remove_torrent(tor3, lt::session::delete_files);
|
|
|
|
|
2015-04-03 22:15:48 +02:00
|
|
|
alert const* a = wait_for_alert(ses1, torrent_deleted_alert::alert_type, "swarm_suite");
|
2014-10-12 10:39:14 +02:00
|
|
|
|
2016-07-09 22:26:26 +02:00
|
|
|
TEST_CHECK(alert_cast<torrent_deleted_alert>(a) != nullptr);
|
2014-10-12 10:39:14 +02:00
|
|
|
|
|
|
|
// there shouldn't be any alerts generated from now on
|
|
|
|
// make sure that the timer in wait_for_alert() works
|
|
|
|
// this should time out (ret == 0) and it should take
|
|
|
|
// about 2 seconds
|
2015-03-12 05:34:54 +01:00
|
|
|
time_point start = clock_type::now();
|
2014-10-12 10:39:14 +02:00
|
|
|
alert const* ret;
|
|
|
|
while ((ret = ses1.wait_for_alert(seconds(2))))
|
|
|
|
{
|
2016-10-10 02:23:45 +02:00
|
|
|
std::printf("wait returned: %d ms\n"
|
2015-08-27 03:47:20 +02:00
|
|
|
, int(total_milliseconds(clock_type::now() - start)));
|
2015-04-03 22:15:48 +02:00
|
|
|
std::vector<alert*> alerts;
|
|
|
|
ses1.pop_alerts(&alerts);
|
|
|
|
for (std::vector<alert*>::iterator i = alerts.begin()
|
|
|
|
, end(alerts.end()); i != end; ++i)
|
|
|
|
{
|
2016-10-10 02:23:45 +02:00
|
|
|
std::printf("%s\n", ret->message().c_str());
|
2015-04-03 22:15:48 +02:00
|
|
|
}
|
2015-03-15 16:22:01 +01:00
|
|
|
start = clock_type::now();
|
2014-10-12 10:39:14 +02:00
|
|
|
}
|
|
|
|
|
2016-10-10 02:23:45 +02:00
|
|
|
std::printf("loop returned: %d ms\n"
|
2015-08-27 03:47:20 +02:00
|
|
|
, int(total_milliseconds(clock_type::now() - start)));
|
2015-08-26 13:35:44 +02:00
|
|
|
|
2014-10-12 10:39:14 +02:00
|
|
|
// this allows shutting down the sessions in parallel
|
|
|
|
p1 = ses1.abort();
|
|
|
|
p2 = ses2.abort();
|
|
|
|
p3 = ses3.abort();
|
|
|
|
|
2015-08-26 13:35:44 +02:00
|
|
|
time_point end = clock_type::now();
|
|
|
|
|
2016-10-10 02:23:45 +02:00
|
|
|
std::printf("time: %d ms\n", int(total_milliseconds(end - start)));
|
2015-11-08 22:26:58 +01:00
|
|
|
TEST_CHECK(end - start < milliseconds(3000));
|
|
|
|
TEST_CHECK(end - start > milliseconds(1900));
|
2014-10-12 10:39:14 +02:00
|
|
|
|
|
|
|
TEST_CHECK(!exists("tmp1_swarm/temporary"));
|
|
|
|
TEST_CHECK(!exists("tmp2_swarm/temporary"));
|
|
|
|
TEST_CHECK(!exists("tmp3_swarm/temporary"));
|
|
|
|
|
|
|
|
remove_all("tmp1_swarm", ec);
|
|
|
|
remove_all("tmp2_swarm", ec);
|
|
|
|
remove_all("tmp3_swarm", ec);
|
|
|
|
}
|
|
|
|
|
2016-06-19 01:24:27 +02:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(pop)
|
|
|
|
#endif
|
2014-10-12 10:39:14 +02:00
|
|
|
|