2007-02-20 02:42:12 +01:00
|
|
|
#include "libtorrent/session.hpp"
|
|
|
|
#include "libtorrent/hasher.hpp"
|
|
|
|
#include "libtorrent/file_pool.hpp"
|
|
|
|
#include "libtorrent/storage.hpp"
|
2007-08-21 03:17:42 +02:00
|
|
|
#include "libtorrent/bencode.hpp"
|
2007-02-20 02:42:12 +01:00
|
|
|
#include <boost/thread.hpp>
|
|
|
|
#include <boost/tuple/tuple.hpp>
|
|
|
|
#include <boost/filesystem/operations.hpp>
|
2007-08-21 03:17:42 +02:00
|
|
|
#include <fstream>
|
2007-02-20 02:42:12 +01:00
|
|
|
|
|
|
|
#include "test.hpp"
|
|
|
|
#include "setup_transfer.hpp"
|
|
|
|
|
|
|
|
using namespace boost::filesystem;
|
|
|
|
using namespace libtorrent;
|
|
|
|
|
|
|
|
void add_files(
|
|
|
|
torrent_info& t
|
|
|
|
, path const& p
|
|
|
|
, path const& l)
|
|
|
|
{
|
|
|
|
if (l.leaf()[0] == '.') return;
|
|
|
|
path f(p / l);
|
|
|
|
if (is_directory(f))
|
|
|
|
{
|
|
|
|
for (directory_iterator i(f), end; i != end; ++i)
|
|
|
|
add_files(t, p, l / i->leaf());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::cerr << "adding \"" << l.string() << "\"\n";
|
|
|
|
t.add_file(l, file_size(f));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-11-28 01:16:14 +01:00
|
|
|
// proxy: 0=none, 1=socks4, 2=socks5, 3=socks5_pw 4=http 5=http_pw
|
|
|
|
void test_transfer(torrent_info torrent_file, int proxy)
|
2007-02-20 02:42:12 +01:00
|
|
|
{
|
|
|
|
using namespace libtorrent;
|
2007-11-28 01:16:14 +01:00
|
|
|
|
|
|
|
session ses;
|
|
|
|
ses.set_severity_level(alert::debug);
|
2007-12-30 10:36:01 +01:00
|
|
|
ses.listen_on(std::make_pair(51000, 52000));
|
2007-11-28 01:16:14 +01:00
|
|
|
remove_all("./tmp1");
|
|
|
|
|
|
|
|
char const* test_name[] = {"no", "SOCKS4", "SOCKS5", "SOCKS5 password", "HTTP", "HTTP password"};
|
|
|
|
|
|
|
|
std::cerr << " ==== TESTING " << test_name[proxy] << " proxy ====" << std::endl;
|
2007-02-20 02:42:12 +01:00
|
|
|
|
2007-11-28 01:16:14 +01:00
|
|
|
if (proxy)
|
|
|
|
{
|
|
|
|
start_proxy(8002, proxy);
|
|
|
|
proxy_settings ps;
|
|
|
|
ps.hostname = "127.0.0.1";
|
|
|
|
ps.port = 8002;
|
|
|
|
ps.username = "testuser";
|
|
|
|
ps.password = "testpass";
|
|
|
|
ps.type = (proxy_settings::proxy_type)proxy;
|
|
|
|
ses.set_web_seed_proxy(ps);
|
|
|
|
}
|
|
|
|
|
|
|
|
torrent_handle th = ses.add_torrent(torrent_file, "./tmp1");
|
|
|
|
|
|
|
|
std::vector<announce_entry> empty;
|
|
|
|
th.replace_trackers(empty);
|
|
|
|
|
|
|
|
for (int i = 0; i < 30; ++i)
|
|
|
|
{
|
|
|
|
torrent_status s = th.status();
|
|
|
|
std::cerr << s.progress << " " << (s.download_rate / 1000.f) << std::endl;
|
|
|
|
std::auto_ptr<alert> a;
|
|
|
|
a = ses.pop_alert();
|
|
|
|
if (a.get())
|
|
|
|
std::cerr << a->msg() << "\n";
|
|
|
|
|
|
|
|
if (th.is_seed()) break;
|
|
|
|
test_sleep(1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CHECK(th.is_seed());
|
|
|
|
|
|
|
|
if (proxy) stop_proxy(8002);
|
|
|
|
|
|
|
|
remove_all("./tmp1");
|
|
|
|
}
|
|
|
|
|
|
|
|
int test_main()
|
|
|
|
{
|
|
|
|
using namespace libtorrent;
|
|
|
|
using namespace boost::filesystem;
|
|
|
|
|
2007-09-01 05:00:31 +02:00
|
|
|
boost::intrusive_ptr<torrent_info> torrent_file(new torrent_info);
|
2007-11-26 00:11:29 +01:00
|
|
|
torrent_file->add_url_seed("http://127.0.0.1:8000/");
|
|
|
|
|
|
|
|
create_directory("test_torrent");
|
|
|
|
char random_data[300000];
|
|
|
|
std::srand(std::time(0));
|
|
|
|
std::generate(random_data, random_data + sizeof(random_data), &std::rand);
|
|
|
|
std::ofstream("./test_torrent/test1").write(random_data, 35);
|
|
|
|
std::ofstream("./test_torrent/test2").write(random_data, 16536 - 35);
|
|
|
|
std::ofstream("./test_torrent/test3").write(random_data, 16536);
|
|
|
|
std::ofstream("./test_torrent/test4").write(random_data, 17);
|
|
|
|
std::ofstream("./test_torrent/test5").write(random_data, 16536);
|
|
|
|
std::ofstream("./test_torrent/test6").write(random_data, 300000);
|
|
|
|
std::ofstream("./test_torrent/test7").write(random_data, 300000);
|
|
|
|
|
|
|
|
add_files(*torrent_file, complete("."), "test_torrent");
|
2007-02-20 02:42:12 +01:00
|
|
|
|
2007-11-27 01:06:59 +01:00
|
|
|
start_web_server(8000);
|
2007-02-20 02:42:12 +01:00
|
|
|
|
|
|
|
file_pool fp;
|
2007-04-02 08:21:53 +02:00
|
|
|
boost::scoped_ptr<storage_interface> s(default_storage_constructor(
|
2007-11-26 00:11:29 +01:00
|
|
|
torrent_file, ".", fp));
|
2007-02-20 02:42:12 +01:00
|
|
|
// calculate the hash for all pieces
|
2007-09-01 05:00:31 +02:00
|
|
|
int num = torrent_file->num_pieces();
|
|
|
|
std::vector<char> buf(torrent_file->piece_length());
|
2007-02-20 02:42:12 +01:00
|
|
|
for (int i = 0; i < num; ++i)
|
|
|
|
{
|
2007-09-01 05:00:31 +02:00
|
|
|
s->read(&buf[0], i, 0, torrent_file->piece_size(i));
|
|
|
|
hasher h(&buf[0], torrent_file->piece_size(i));
|
|
|
|
torrent_file->set_hash(i, h.final());
|
2007-02-20 02:42:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// to calculate the info_hash
|
2007-09-01 05:00:31 +02:00
|
|
|
entry te = torrent_file->create_torrent();
|
2007-08-21 03:17:42 +02:00
|
|
|
|
2007-02-20 02:42:12 +01:00
|
|
|
|
2007-11-28 01:16:14 +01:00
|
|
|
for (int i = 0; i < 6; ++i)
|
|
|
|
test_transfer(*torrent_file, i);
|
2007-02-20 02:42:12 +01:00
|
|
|
|
2007-11-26 00:11:29 +01:00
|
|
|
|
2007-11-28 01:16:14 +01:00
|
|
|
|
2007-11-27 01:06:59 +01:00
|
|
|
stop_web_server(8000);
|
2007-11-28 01:16:14 +01:00
|
|
|
remove_all("./test_torrent");
|
2007-02-20 02:42:12 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|