2006-04-25 23:04:48 +02:00
|
|
|
#include "libtorrent/session.hpp"
|
|
|
|
#include "libtorrent/hasher.hpp"
|
|
|
|
#include <boost/thread.hpp>
|
2006-05-28 21:03:54 +02:00
|
|
|
#include <boost/tuple/tuple.hpp>
|
2006-10-11 16:02:21 +02:00
|
|
|
#include <boost/filesystem/operations.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"
|
2006-04-25 23:04:48 +02:00
|
|
|
|
2006-10-11 16:02:21 +02:00
|
|
|
using boost::filesystem::remove_all;
|
|
|
|
|
2006-05-28 21:03:54 +02:00
|
|
|
void test_transfer(bool clear_files = true, bool disconnect = false)
|
2006-04-25 23:04:48 +02:00
|
|
|
{
|
|
|
|
using namespace libtorrent;
|
|
|
|
|
|
|
|
session ses1;
|
|
|
|
session ses2(fingerprint("LT", 0, 1, 0, 0), std::make_pair(49000, 50000));
|
2006-11-14 01:08:16 +01:00
|
|
|
ses1.add_extension(&create_metadata_plugin);
|
|
|
|
ses2.add_extension(&create_metadata_plugin);
|
2006-05-28 21:03:54 +02:00
|
|
|
torrent_handle tor1;
|
|
|
|
torrent_handle tor2;
|
2006-04-25 23:04:48 +02:00
|
|
|
|
2006-05-28 21:03:54 +02:00
|
|
|
boost::tie(tor1, tor2) = setup_transfer(ses1, ses2, clear_files);
|
2006-04-25 23:04:48 +02:00
|
|
|
|
|
|
|
for (int i = 0; i < 50; ++i)
|
|
|
|
{
|
|
|
|
// make sure this function can be called on
|
|
|
|
// torrents without metadata
|
2006-05-28 21:03:54 +02:00
|
|
|
if (!disconnect) tor2.status();
|
2006-04-30 12:28:45 +02:00
|
|
|
std::auto_ptr<alert> a;
|
|
|
|
a = ses1.pop_alert();
|
|
|
|
if (a.get())
|
|
|
|
std::cerr << "ses1: " << a->msg() << "\n";
|
|
|
|
|
|
|
|
a = ses2.pop_alert();
|
|
|
|
if (a.get())
|
|
|
|
std::cerr << "ses2: " << a->msg() << "\n";
|
|
|
|
|
2006-05-28 21:03:54 +02:00
|
|
|
if (disconnect && tor2.is_valid()) ses2.remove_torrent(tor2);
|
|
|
|
if (!disconnect && tor2.has_metadata()) break;
|
2006-04-25 23:04:48 +02:00
|
|
|
sleep(100);
|
|
|
|
}
|
|
|
|
|
2006-05-28 21:03:54 +02:00
|
|
|
if (disconnect) return;
|
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
TEST_CHECK(tor2.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
|
|
|
|
|
|
|
for (int i = 0; i < 50; ++i)
|
|
|
|
{
|
|
|
|
tor2.status();
|
|
|
|
if (tor2.is_seed()) break;
|
|
|
|
sleep(100);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CHECK(tor2.is_seed());
|
2006-05-28 21:03:54 +02:00
|
|
|
if (tor2.is_seed()) std::cerr << "done\n";
|
2006-04-25 23:04:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int test_main()
|
|
|
|
{
|
|
|
|
using namespace libtorrent;
|
2006-06-25 00:30:59 +02:00
|
|
|
using namespace boost::filesystem;
|
|
|
|
|
2006-05-28 21:03:54 +02:00
|
|
|
// test to disconnect one client prematurely
|
2006-11-19 16:25:02 +01:00
|
|
|
test_transfer(true, true);
|
2006-04-25 23:04:48 +02:00
|
|
|
|
|
|
|
// test where one has data and one doesn't
|
2006-05-28 21:03:54 +02:00
|
|
|
test_transfer(true);
|
2006-04-25 23:04:48 +02:00
|
|
|
|
|
|
|
// test where both have data (to trigger the file check)
|
2006-11-19 16:25:02 +01:00
|
|
|
test_transfer(false);
|
2006-04-25 23:04:48 +02:00
|
|
|
|
2006-06-25 00:30:59 +02:00
|
|
|
remove_all("./tmp1");
|
|
|
|
remove_all("./tmp2");
|
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|