merged uTP branch into trunk (yay)
This commit is contained in:
@@ -34,6 +34,7 @@ test-suite libtorrent :
|
||||
[ run test_bdecode_performance.cpp ]
|
||||
[ run test_pe_crypto.cpp ]
|
||||
|
||||
[ run test_utp.cpp ]
|
||||
[ run test_auto_unchoke.cpp ]
|
||||
[ run test_http_connection.cpp ]
|
||||
[ run test_torrent.cpp ]
|
||||
|
@@ -241,9 +241,9 @@ setup_transfer(session* ses1, session* ses2, session* ses3
|
||||
ses1->set_settings(sess_set);
|
||||
ses2->set_settings(sess_set);
|
||||
if (ses3) ses3->set_settings(sess_set);
|
||||
ses1->set_alert_mask(~alert::progress_notification);
|
||||
ses2->set_alert_mask(~alert::progress_notification);
|
||||
if (ses3) ses3->set_alert_mask(~alert::progress_notification);
|
||||
ses1->set_alert_mask(~(alert::progress_notification | alert::stats_notification));
|
||||
ses2->set_alert_mask(~(alert::progress_notification | alert::stats_notification));
|
||||
if (ses3) ses3->set_alert_mask(~(alert::progress_notification | alert::stats_notification));
|
||||
|
||||
std::srand(time(0));
|
||||
peer_id pid;
|
||||
@@ -289,9 +289,11 @@ setup_transfer(session* ses1, session* ses2, session* ses3
|
||||
if (p) param = *p;
|
||||
param.ti = clone_ptr(t);
|
||||
param.save_path = "./tmp1" + suffix;
|
||||
param.seed_mode = true;
|
||||
error_code ec;
|
||||
torrent_handle tor1 = ses1->add_torrent(param, ec);
|
||||
tor1.super_seeding(super_seeding);
|
||||
param.seed_mode = false;
|
||||
TEST_CHECK(!ses1->get_torrents().empty());
|
||||
torrent_handle tor2;
|
||||
torrent_handle tor3;
|
||||
@@ -753,7 +755,7 @@ void web_server_thread(int* port, bool ssl, bool chunked)
|
||||
|
||||
while (!p.finished())
|
||||
{
|
||||
TORRENT_ASSERT(len < sizeof(buf));
|
||||
TORRENT_ASSERT(len < int(sizeof(buf)));
|
||||
size_t received = s.read_some(boost::asio::buffer(&buf[len]
|
||||
, sizeof(buf) - len), ec);
|
||||
// fprintf(stderr, "read: %d\n", int(received));
|
||||
|
@@ -43,8 +43,11 @@ POSSIBILITY OF SUCH DAMAGE.
|
||||
#include "libtorrent/broadcast_socket.hpp"
|
||||
#include "libtorrent/identify_client.hpp"
|
||||
#include "libtorrent/file.hpp"
|
||||
#include "libtorrent/packet_buffer.hpp"
|
||||
#include "libtorrent/session.hpp"
|
||||
#include "libtorrent/bencode.hpp"
|
||||
#include "libtorrent/timestamp_history.hpp"
|
||||
#include "libtorrent/enum_net.hpp"
|
||||
#ifndef TORRENT_DISABLE_DHT
|
||||
#include "libtorrent/kademlia/node_id.hpp"
|
||||
#include "libtorrent/kademlia/routing_table.hpp"
|
||||
@@ -382,6 +385,98 @@ int test_main()
|
||||
error_code ec;
|
||||
int ret = 0;
|
||||
|
||||
// test timestamp_history
|
||||
{
|
||||
timestamp_history h;
|
||||
TEST_EQUAL(h.add_sample(0x32, false), 0);
|
||||
TEST_EQUAL(h.base(), 0x32);
|
||||
TEST_EQUAL(h.add_sample(0x33, false), 0x1);
|
||||
TEST_EQUAL(h.base(), 0x32);
|
||||
TEST_EQUAL(h.add_sample(0x3433, false), 0x3401);
|
||||
TEST_EQUAL(h.base(), 0x32);
|
||||
TEST_EQUAL(h.add_sample(0x30, false), 0);
|
||||
TEST_EQUAL(h.base(), 0x30);
|
||||
|
||||
// test that wrapping of the timestamp is properly handled
|
||||
h.add_sample(0xfffffff3, false);
|
||||
TEST_EQUAL(h.base(), 0xfffffff3);
|
||||
}
|
||||
|
||||
// test packet_buffer
|
||||
{
|
||||
packet_buffer pb;
|
||||
|
||||
TEST_EQUAL(pb.capacity(), 0);
|
||||
TEST_EQUAL(pb.size(), 0);
|
||||
TEST_EQUAL(pb.span(), 0);
|
||||
|
||||
pb.insert(123, (void*)123);
|
||||
TEST_EQUAL(pb.at(123 + 16), 0);
|
||||
|
||||
TEST_CHECK(pb.at(123) == (void*)123);
|
||||
TEST_CHECK(pb.capacity() > 0);
|
||||
TEST_EQUAL(pb.size(), 1);
|
||||
TEST_EQUAL(pb.span(), 1);
|
||||
TEST_EQUAL(pb.cursor(), 123);
|
||||
|
||||
pb.insert(125, (void*)125);
|
||||
|
||||
TEST_CHECK(pb.at(125) == (void*)125);
|
||||
TEST_EQUAL(pb.size(), 2);
|
||||
TEST_EQUAL(pb.span(), 3);
|
||||
TEST_EQUAL(pb.cursor(), 123);
|
||||
|
||||
pb.insert(500, (void*)500);
|
||||
TEST_EQUAL(pb.size(), 3);
|
||||
TEST_EQUAL(pb.span(), 501 - 123);
|
||||
TEST_EQUAL(pb.capacity(), 512);
|
||||
|
||||
TEST_CHECK(pb.remove(123) == (void*)123);
|
||||
TEST_EQUAL(pb.size(), 2);
|
||||
TEST_EQUAL(pb.span(), 501 - 125);
|
||||
TEST_EQUAL(pb.cursor(), 125);
|
||||
TEST_CHECK(pb.remove(125) == (void*)125);
|
||||
TEST_EQUAL(pb.size(), 1);
|
||||
TEST_EQUAL(pb.span(), 1);
|
||||
TEST_EQUAL(pb.cursor(), 500);
|
||||
|
||||
TEST_CHECK(pb.remove(500) == (void*)500);
|
||||
TEST_EQUAL(pb.size(), 0);
|
||||
TEST_EQUAL(pb.span(), 0);
|
||||
|
||||
for (int i = 0; i < 0xff; ++i)
|
||||
{
|
||||
int index = (i + 0xfff0) & 0xffff;
|
||||
pb.insert(index, (void*)(index + 1));
|
||||
fprintf(stderr, "insert: %u (mask: %x)\n", index, int(pb.capacity() - 1));
|
||||
TEST_EQUAL(pb.capacity(), 512);
|
||||
if (i >= 14)
|
||||
{
|
||||
index = (index - 14) & 0xffff;
|
||||
fprintf(stderr, "remove: %u\n", index);
|
||||
TEST_CHECK(pb.remove(index) == (void*)(index + 1));
|
||||
TEST_EQUAL(pb.size(), 14);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
// test wrapping the indices
|
||||
packet_buffer pb;
|
||||
|
||||
TEST_EQUAL(pb.size(), 0);
|
||||
|
||||
pb.insert(0xfffe, (void*)1);
|
||||
TEST_CHECK(pb.at(0xfffe) == (void*)1);
|
||||
|
||||
pb.insert(2, (void*)2);
|
||||
TEST_CHECK(pb.at(2) == (void*)2);
|
||||
|
||||
pb.remove(0xfffe);
|
||||
TEST_CHECK(pb.at(0xfffe) == (void*)0);
|
||||
TEST_CHECK(pb.at(2) == (void*)2);
|
||||
}
|
||||
|
||||
TEST_CHECK(error_code(errors::http_error).message() == "HTTP error");
|
||||
TEST_CHECK(error_code(errors::missing_file_sizes).message() == "missing or invalid 'file sizes' entry");
|
||||
TEST_CHECK(error_code(errors::unsupported_protocol_version).message() == "unsupported protocol version");
|
||||
@@ -391,7 +486,7 @@ int test_main()
|
||||
|
||||
TEST_CHECK(errors::reserved129 == 129);
|
||||
TEST_CHECK(errors::reserved159 == 159);
|
||||
TEST_CHECK(errors::reserved108 == 108);
|
||||
TEST_CHECK(errors::reserved109 == 109);
|
||||
|
||||
{
|
||||
// test session state load/restore
|
||||
@@ -1062,6 +1157,16 @@ int test_main()
|
||||
#endif
|
||||
TEST_CHECK(is_any(address_v4::any()));
|
||||
TEST_CHECK(!is_any(address::from_string("31.53.21.64", ec)));
|
||||
|
||||
TEST_CHECK(match_addr_mask(
|
||||
address::from_string("10.0.1.3", ec),
|
||||
address::from_string("10.0.3.3", ec),
|
||||
address::from_string("255.255.0.0", ec)));
|
||||
|
||||
TEST_CHECK(!match_addr_mask(
|
||||
address::from_string("10.0.1.3", ec),
|
||||
address::from_string("10.1.3.3", ec),
|
||||
address::from_string("255.255.0.0", ec)));
|
||||
|
||||
// test torrent parsing
|
||||
|
||||
|
151
test/test_utp.cpp
Normal file
151
test/test_utp.cpp
Normal file
@@ -0,0 +1,151 @@
|
||||
/*
|
||||
|
||||
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.
|
||||
|
||||
*/
|
||||
|
||||
#include "libtorrent/session.hpp"
|
||||
#include "libtorrent/session_settings.hpp"
|
||||
#include "libtorrent/hasher.hpp"
|
||||
#include "libtorrent/alert_types.hpp"
|
||||
#include "libtorrent/bencode.hpp"
|
||||
#include "libtorrent/thread.hpp"
|
||||
#include "libtorrent/time.hpp"
|
||||
#include "libtorrent/file.hpp"
|
||||
#include <boost/tuple/tuple.hpp>
|
||||
#include <boost/bind.hpp>
|
||||
|
||||
#include "test.hpp"
|
||||
#include "setup_transfer.hpp"
|
||||
#include <fstream>
|
||||
#include <iostream>
|
||||
|
||||
using namespace libtorrent;
|
||||
using boost::tuples::ignore;
|
||||
|
||||
void test_transfer()
|
||||
{
|
||||
// in case the previous run was terminated
|
||||
error_code ec;
|
||||
remove_all("./tmp1_utp", ec);
|
||||
remove_all("./tmp2_utp", ec);
|
||||
|
||||
session ses1(fingerprint("LT", 0, 1, 0, 0), std::make_pair(48885, 49930), "0.0.0.0", 0);
|
||||
session ses2(fingerprint("LT", 0, 1, 0, 0), std::make_pair(49885, 50930), "0.0.0.0", 0);
|
||||
|
||||
session_settings sett;
|
||||
|
||||
sett.enable_outgoing_tcp = false;
|
||||
sett.min_reconnect_time = 1;
|
||||
sett.announce_to_all_trackers = true;
|
||||
sett.announce_to_all_tiers = true;
|
||||
// make sure we announce to both http and udp trackers
|
||||
sett.prefer_udp_trackers = false;
|
||||
|
||||
// for performance testing
|
||||
// sett.disable_hash_checks = true;
|
||||
// sett.utp_delayed_ack = 0;
|
||||
|
||||
// disable this to use regular size packets over loopback
|
||||
// sett.utp_dynamic_sock_buf = false;
|
||||
|
||||
ses1.set_settings(sett);
|
||||
ses2.set_settings(sett);
|
||||
|
||||
#ifndef TORRENT_DISABLE_ENCRYPTION
|
||||
pe_settings pes;
|
||||
pes.out_enc_policy = pe_settings::disabled;
|
||||
pes.in_enc_policy = pe_settings::disabled;
|
||||
ses1.set_pe_settings(pes);
|
||||
ses2.set_pe_settings(pes);
|
||||
#endif
|
||||
|
||||
torrent_handle tor1;
|
||||
torrent_handle tor2;
|
||||
|
||||
create_directory("./tmp1_utp", ec);
|
||||
std::ofstream file("./tmp1_utp/temporary");
|
||||
boost::intrusive_ptr<torrent_info> t = ::create_torrent(&file, 16 * 1024, 1000, false);
|
||||
file.close();
|
||||
|
||||
// for performance testing
|
||||
add_torrent_params atp;
|
||||
// atp.storage = &disabled_storage_constructor;
|
||||
|
||||
// test using piece sizes smaller than 16kB
|
||||
boost::tie(tor1, tor2, ignore) = setup_transfer(&ses1, &ses2, 0
|
||||
, true, false, true, "_utp", 8 * 1024, &t, false, &atp);
|
||||
|
||||
for (int i = 0; i < 300; ++i)
|
||||
{
|
||||
print_alerts(ses1, "ses1", true, true, true);
|
||||
print_alerts(ses2, "ses2", true, true, true);
|
||||
|
||||
torrent_status st1 = tor1.status();
|
||||
torrent_status st2 = tor2.status();
|
||||
|
||||
std::cerr
|
||||
<< "\033[32m" << int(st1.download_payload_rate / 1000.f) << "kB/s "
|
||||
<< "\033[33m" << int(st1.upload_payload_rate / 1000.f) << "kB/s "
|
||||
<< "\033[0m" << int(st1.progress * 100) << "% "
|
||||
<< st1.num_peers
|
||||
<< ": "
|
||||
<< "\033[32m" << int(st2.download_payload_rate / 1000.f) << "kB/s "
|
||||
<< "\033[31m" << int(st2.upload_payload_rate / 1000.f) << "kB/s "
|
||||
<< "\033[0m" << int(st2.progress * 100) << "% "
|
||||
<< st2.num_peers
|
||||
<< " cc: " << st2.connect_candidates
|
||||
<< std::endl;
|
||||
|
||||
if (st2.is_finished) break;
|
||||
|
||||
TEST_CHECK(st1.state == torrent_status::seeding
|
||||
|| st1.state == torrent_status::checking_files);
|
||||
TEST_CHECK(st2.state == torrent_status::downloading);
|
||||
|
||||
test_sleep(500);
|
||||
}
|
||||
|
||||
TEST_CHECK(tor1.status().is_finished);
|
||||
TEST_CHECK(tor2.status().is_finished);
|
||||
}
|
||||
|
||||
int test_main()
|
||||
{
|
||||
using namespace libtorrent;
|
||||
|
||||
test_transfer();
|
||||
|
||||
error_code ec;
|
||||
remove_all("./tmp1_utp", ec);
|
||||
remove_all("./tmp2_utp", ec);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user