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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
#include "libtorrent/session.hpp"
|
|
|
|
#include "libtorrent/hasher.hpp"
|
2009-11-02 03:00:41 +01:00
|
|
|
#include "libtorrent/thread.hpp"
|
2006-05-28 21:03:54 +02:00
|
|
|
#include <boost/tuple/tuple.hpp>
|
2006-04-25 23:04:48 +02:00
|
|
|
|
|
|
|
#include "test.hpp"
|
2006-05-28 21:03:54 +02:00
|
|
|
#include "setup_transfer.hpp"
|
2006-11-14 01:08:16 +01:00
|
|
|
#include "libtorrent/extensions/metadata_transfer.hpp"
|
2007-12-02 05:16:51 +01:00
|
|
|
#include "libtorrent/extensions/ut_metadata.hpp"
|
2009-12-15 14:11:07 +01:00
|
|
|
#include <iostream>
|
2006-04-25 23:04:48 +02:00
|
|
|
|
2007-06-09 01:02:31 +02:00
|
|
|
using boost::tuples::ignore;
|
2006-10-11 16:02:21 +02:00
|
|
|
|
2013-10-12 08:03:19 +02:00
|
|
|
enum flags_t
|
|
|
|
{
|
|
|
|
clear_files = 1,
|
|
|
|
disconnect = 2,
|
|
|
|
full_encryption = 4
|
|
|
|
};
|
|
|
|
|
|
|
|
void test_transfer(int flags
|
|
|
|
, boost::shared_ptr<libtorrent::torrent_plugin> (*constructor)(libtorrent::torrent*, void*)
|
|
|
|
, int timeout)
|
2006-04-25 23:04:48 +02:00
|
|
|
{
|
|
|
|
using namespace libtorrent;
|
|
|
|
|
2013-10-12 08:03:19 +02:00
|
|
|
fprintf(stderr, "test transfer: timeout=%d %s%s%s\n"
|
|
|
|
, timeout
|
|
|
|
, (flags & clear_files) ? "clear-files " : ""
|
|
|
|
, (flags & disconnect) ? "disconnect " : ""
|
|
|
|
, (flags & full_encryption) ? "encryption " : "");
|
|
|
|
|
2013-08-31 22:19:03 +02:00
|
|
|
// 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;
|
|
|
|
|
2013-10-12 08:03:19 +02:00
|
|
|
// TODO: it would be nice to test reversing
|
|
|
|
// which session is making the connection as well
|
2008-11-27 21:51:59 +01:00
|
|
|
session ses1(fingerprint("LT", 0, 1, 0, 0), std::make_pair(48100, 49000), "0.0.0.0", 0);
|
|
|
|
session ses2(fingerprint("LT", 0, 1, 0, 0), std::make_pair(49100, 50000), "0.0.0.0", 0);
|
2007-12-02 05:16:51 +01:00
|
|
|
ses1.add_extension(constructor);
|
|
|
|
ses2.add_extension(constructor);
|
2006-05-28 21:03:54 +02:00
|
|
|
torrent_handle tor1;
|
|
|
|
torrent_handle tor2;
|
2007-08-08 23:22:59 +02:00
|
|
|
#ifndef TORRENT_DISABLE_ENCRYPTION
|
2007-06-20 20:41:53 +02:00
|
|
|
pe_settings pes;
|
2013-10-12 08:03:19 +02:00
|
|
|
pes.prefer_rc4 = (flags & full_encryption);
|
2007-12-30 10:36:01 +01:00
|
|
|
pes.out_enc_policy = pe_settings::forced;
|
|
|
|
pes.in_enc_policy = pe_settings::forced;
|
2007-06-20 20:41:53 +02:00
|
|
|
ses1.set_pe_settings(pes);
|
|
|
|
ses2.set_pe_settings(pes);
|
2007-08-08 23:22:59 +02:00
|
|
|
#endif
|
2006-04-25 23:04:48 +02:00
|
|
|
|
2013-10-12 08:03:19 +02:00
|
|
|
boost::tie(tor1, tor2, ignore) = setup_transfer(&ses1, &ses2, NULL, flags & clear_files, true, true, "_meta");
|
2006-04-25 23:04:48 +02:00
|
|
|
|
2013-10-12 08:03:19 +02:00
|
|
|
for (int i = 0; i < timeout * 10; ++i)
|
2006-04-25 23:04:48 +02:00
|
|
|
{
|
|
|
|
// make sure this function can be called on
|
|
|
|
// torrents without metadata
|
2013-10-12 08:03:19 +02:00
|
|
|
if ((flags & disconnect) == 0) tor2.status();
|
2008-01-02 04:18:29 +01:00
|
|
|
print_alerts(ses1, "ses1", false, true);
|
|
|
|
print_alerts(ses2, "ses2", false, true);
|
2006-04-30 12:28:45 +02:00
|
|
|
|
2013-10-12 08:03:19 +02:00
|
|
|
if ((flags & disconnect) && tor2.is_valid()) ses2.remove_torrent(tor2);
|
|
|
|
if ((flags & disconnect) == 0
|
2013-10-10 09:50:34 +02:00
|
|
|
&& tor2.status().has_metadata) break;
|
2007-06-10 22:46:09 +02:00
|
|
|
test_sleep(100);
|
2006-04-25 23:04:48 +02:00
|
|
|
}
|
|
|
|
|
2013-10-12 08:03:19 +02:00
|
|
|
if (flags & disconnect) goto done;
|
2006-05-28 21:03:54 +02:00
|
|
|
|
2010-10-30 19:23:30 +02:00
|
|
|
TEST_CHECK(tor2.status().has_metadata);
|
2006-05-28 21:03:54 +02:00
|
|
|
std::cerr << "waiting for transfer to complete\n";
|
2006-04-25 23:04:48 +02:00
|
|
|
|
2013-10-14 09:09:57 +02:00
|
|
|
for (int i = 0; i < timeout * 10; ++i)
|
2006-04-25 23:04:48 +02:00
|
|
|
{
|
2007-12-30 10:36:01 +01:00
|
|
|
torrent_status st1 = tor1.status();
|
|
|
|
torrent_status st2 = tor2.status();
|
|
|
|
|
2013-10-12 08:03:19 +02:00
|
|
|
print_alerts(ses1, "ses1", false, true);
|
|
|
|
print_alerts(ses2, "ses2", false, true);
|
|
|
|
|
|
|
|
print_ses_rate(i / 10.f, &st1, &st2);
|
2010-10-30 19:23:30 +02:00
|
|
|
if (st2.is_seeding) break;
|
2013-10-12 08:03:19 +02:00
|
|
|
test_sleep(100);
|
2006-04-25 23:04:48 +02:00
|
|
|
}
|
|
|
|
|
2010-10-30 19:23:30 +02:00
|
|
|
TEST_CHECK(tor2.status().is_seeding);
|
|
|
|
if (tor2.status().is_seeding) std::cerr << "done\n";
|
2007-12-30 10:36:01 +01:00
|
|
|
|
2013-09-01 20:00:01 +02:00
|
|
|
done:
|
|
|
|
|
2013-08-31 22:19:03 +02:00
|
|
|
// this allows shutting down the sessions in parallel
|
|
|
|
p1 = ses1.abort();
|
|
|
|
p2 = ses2.abort();
|
|
|
|
|
2009-10-26 02:29:39 +01:00
|
|
|
error_code ec;
|
2012-03-17 20:06:11 +01:00
|
|
|
remove_all("tmp1_meta", ec);
|
|
|
|
remove_all("tmp2_meta", ec);
|
2006-04-25 23:04:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int test_main()
|
|
|
|
{
|
|
|
|
using namespace libtorrent;
|
2006-06-25 00:30:59 +02:00
|
|
|
|
2013-10-14 09:09:57 +02:00
|
|
|
#ifdef TORRENT_USE_VALGRIND
|
|
|
|
const int timeout = 8;
|
|
|
|
#else
|
|
|
|
const int timeout = 3;
|
|
|
|
#endif
|
|
|
|
|
2013-10-12 08:03:19 +02:00
|
|
|
for (int f = 0; f <= (clear_files | disconnect | full_encryption); ++f)
|
2013-10-14 09:09:57 +02:00
|
|
|
test_transfer(f, &create_metadata_plugin, timeout * 2);
|
|
|
|
|
2013-10-12 08:03:19 +02:00
|
|
|
|
|
|
|
for (int f = 0; f <= (clear_files | disconnect | full_encryption); ++f)
|
2013-10-14 09:09:57 +02:00
|
|
|
test_transfer(f, &create_ut_metadata_plugin, timeout);
|
2006-04-25 23:04:48 +02:00
|
|
|
|
2009-10-26 02:29:39 +01:00
|
|
|
error_code ec;
|
2012-03-17 20:06:11 +01:00
|
|
|
remove_all("tmp1", ec);
|
|
|
|
remove_all("tmp2", ec);
|
2006-06-25 00:30:59 +02:00
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|