2012-06-04 08:30:45 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2010, 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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2011-09-17 23:15:42 +02:00
|
|
|
#include "test.hpp"
|
|
|
|
#include "setup_transfer.hpp"
|
|
|
|
#include "libtorrent/alert.hpp"
|
|
|
|
#include "libtorrent/session.hpp"
|
|
|
|
#include "libtorrent/error_code.hpp"
|
|
|
|
|
|
|
|
#include <fstream>
|
|
|
|
|
|
|
|
using namespace libtorrent;
|
|
|
|
|
|
|
|
int test_main()
|
|
|
|
{
|
|
|
|
int http_port = start_web_server();
|
|
|
|
int udp_port = start_tracker();
|
|
|
|
|
|
|
|
int prev_udp_announces = g_udp_tracker_requests;
|
|
|
|
int prev_http_announces = g_http_tracker_requests;
|
|
|
|
|
|
|
|
int const alert_mask = alert::all_categories
|
|
|
|
& ~alert::progress_notification
|
|
|
|
& ~alert::stats_notification;
|
|
|
|
|
|
|
|
session* s = new libtorrent::session(fingerprint("LT", 0, 1, 0, 0), std::make_pair(48875, 49800), "0.0.0.0", 0, alert_mask);
|
|
|
|
|
|
|
|
session_settings sett;
|
|
|
|
sett.half_open_limit = 1;
|
|
|
|
sett.announce_to_all_trackers = true;
|
|
|
|
sett.announce_to_all_tiers = true;
|
|
|
|
s->set_settings(sett);
|
|
|
|
|
|
|
|
error_code ec;
|
2012-06-17 01:23:36 +02:00
|
|
|
create_directory("tmp1_tracker", ec);
|
|
|
|
std::ofstream file(combine_path("tmp1_tracker", "temporary").c_str());
|
2011-09-17 23:15:42 +02:00
|
|
|
boost::intrusive_ptr<torrent_info> t = ::create_torrent(&file, 16 * 1024, 13, false);
|
|
|
|
file.close();
|
|
|
|
|
|
|
|
char tracker_url[200];
|
|
|
|
snprintf(tracker_url, sizeof(tracker_url), "http://127.0.0.1:%d/announce", http_port);
|
2012-03-04 21:07:35 +01:00
|
|
|
t->add_tracker(tracker_url, 0);
|
2011-09-17 23:15:42 +02:00
|
|
|
|
|
|
|
snprintf(tracker_url, sizeof(tracker_url), "udp://127.0.0.1:%d/announce", udp_port);
|
2012-03-04 21:07:35 +01:00
|
|
|
t->add_tracker(tracker_url, 1);
|
2011-09-17 23:15:42 +02:00
|
|
|
|
|
|
|
add_torrent_params addp;
|
2012-03-19 05:02:13 +01:00
|
|
|
addp.flags &= ~add_torrent_params::flag_paused;
|
|
|
|
addp.flags &= ~add_torrent_params::flag_auto_managed;
|
2011-09-17 23:15:42 +02:00
|
|
|
addp.ti = t;
|
2012-06-17 01:23:36 +02:00
|
|
|
addp.save_path = "tmp1_tracker";
|
2011-09-17 23:15:42 +02:00
|
|
|
torrent_handle h = s->add_torrent(addp);
|
|
|
|
|
2012-03-04 21:07:35 +01:00
|
|
|
for (int i = 0; i < 100; ++i)
|
|
|
|
{
|
|
|
|
print_alerts(*s, "s");
|
|
|
|
test_sleep(100);
|
|
|
|
if (g_udp_tracker_requests == prev_udp_announces + 1
|
|
|
|
&& g_http_tracker_requests == prev_http_announces + 1) break;
|
|
|
|
}
|
2011-09-17 23:15:42 +02:00
|
|
|
|
|
|
|
// we should have announced to the tracker by now
|
|
|
|
TEST_EQUAL(g_udp_tracker_requests, prev_udp_announces + 1);
|
|
|
|
TEST_EQUAL(g_http_tracker_requests, prev_http_announces + 1);
|
|
|
|
|
2012-03-04 21:07:35 +01:00
|
|
|
fprintf(stderr, "destructing session\n");
|
2011-09-17 23:15:42 +02:00
|
|
|
delete s;
|
2012-03-04 21:07:35 +01:00
|
|
|
fprintf(stderr, "done\n");
|
2011-09-17 23:15:42 +02:00
|
|
|
|
|
|
|
// we should have announced the stopped event now
|
|
|
|
TEST_EQUAL(g_udp_tracker_requests, prev_udp_announces + 2);
|
|
|
|
TEST_EQUAL(g_http_tracker_requests, prev_http_announces + 2);
|
|
|
|
|
2011-09-26 01:29:23 +02:00
|
|
|
// ========================================
|
|
|
|
// test that we move on to try the next tier if the first one fails
|
|
|
|
// ========================================
|
|
|
|
|
|
|
|
s = new libtorrent::session(fingerprint("LT", 0, 1, 0, 0), std::make_pair(39775, 39800), "0.0.0.0", 0, alert_mask);
|
|
|
|
|
|
|
|
sett.half_open_limit = 1;
|
|
|
|
sett.announce_to_all_trackers = true;
|
|
|
|
sett.announce_to_all_tiers = false;
|
2011-09-26 06:05:36 +02:00
|
|
|
sett.tracker_completion_timeout = 2;
|
|
|
|
sett.tracker_receive_timeout = 1;
|
2011-09-26 01:29:23 +02:00
|
|
|
s->set_settings(sett);
|
|
|
|
|
2012-06-17 01:23:36 +02:00
|
|
|
create_directory("tmp2_tracker", ec);
|
|
|
|
file.open(combine_path("tmp2_tracker", "temporary").c_str());
|
2011-09-26 01:29:23 +02:00
|
|
|
t = ::create_torrent(&file, 16 * 1024, 13, false);
|
|
|
|
file.close();
|
|
|
|
|
|
|
|
// this should fail
|
2013-06-12 09:57:13 +02:00
|
|
|
snprintf(tracker_url, sizeof(tracker_url), "udp://www1.non-existent.com:80/announce");
|
2011-09-26 01:29:23 +02:00
|
|
|
t->add_tracker(tracker_url, 0);
|
|
|
|
|
|
|
|
// and this should fail
|
|
|
|
snprintf(tracker_url, sizeof(tracker_url), "http://127.0.0.2:3/announce");
|
|
|
|
t->add_tracker(tracker_url, 1);
|
|
|
|
|
|
|
|
// this should be announced to
|
|
|
|
// udp trackers are prioritized if they're on the same host as an http one
|
|
|
|
// so this must be before the http one on 127.0.0.1
|
|
|
|
snprintf(tracker_url, sizeof(tracker_url), "udp://127.0.0.1:%d/announce", udp_port);
|
|
|
|
t->add_tracker(tracker_url, 2);
|
|
|
|
|
|
|
|
// and this should not be announced to (since the one before it succeeded)
|
|
|
|
snprintf(tracker_url, sizeof(tracker_url), "http://127.0.0.1:%d/announce", http_port);
|
|
|
|
t->add_tracker(tracker_url, 3);
|
|
|
|
|
|
|
|
prev_udp_announces = g_udp_tracker_requests;
|
|
|
|
prev_http_announces = g_http_tracker_requests;
|
|
|
|
|
2012-03-19 05:02:13 +01:00
|
|
|
addp.flags &= ~add_torrent_params::flag_paused;
|
|
|
|
addp.flags &= ~add_torrent_params::flag_auto_managed;
|
2011-09-26 01:29:23 +02:00
|
|
|
addp.ti = t;
|
2012-06-17 01:23:36 +02:00
|
|
|
addp.save_path = "tmp2_tracker";
|
2011-09-26 01:29:23 +02:00
|
|
|
h = s->add_torrent(addp);
|
|
|
|
|
|
|
|
for (int i = 0; i < 10; ++i)
|
|
|
|
{
|
|
|
|
print_alerts(*s, "s");
|
2011-09-26 06:05:36 +02:00
|
|
|
test_sleep(1000);
|
2011-09-26 01:29:23 +02:00
|
|
|
if (g_udp_tracker_requests == prev_udp_announces + 1) break;
|
|
|
|
}
|
|
|
|
|
|
|
|
test_sleep(1000);
|
|
|
|
|
|
|
|
TEST_EQUAL(g_udp_tracker_requests, prev_udp_announces + 1);
|
|
|
|
TEST_EQUAL(g_http_tracker_requests, prev_http_announces);
|
|
|
|
|
2012-03-04 21:07:35 +01:00
|
|
|
fprintf(stderr, "destructing session\n");
|
2011-09-26 01:29:23 +02:00
|
|
|
delete s;
|
2012-03-04 21:07:35 +01:00
|
|
|
fprintf(stderr, "done\n");
|
2011-09-26 01:29:23 +02:00
|
|
|
|
2011-09-17 23:15:42 +02:00
|
|
|
stop_tracker();
|
|
|
|
stop_web_server();
|
2011-09-26 01:29:23 +02:00
|
|
|
|
|
|
|
return 0;
|
2011-09-17 23:15:42 +02:00
|
|
|
}
|
|
|
|
|