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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2008-05-17 16:19:34 +02:00
|
|
|
#include "libtorrent/parse_url.hpp"
|
2007-05-22 22:44:18 +02:00
|
|
|
#include "libtorrent/http_tracker_connection.hpp"
|
|
|
|
#include "libtorrent/buffer.hpp"
|
2007-08-07 03:32:38 +02:00
|
|
|
#include "libtorrent/xml_parse.hpp"
|
2007-08-07 09:29:51 +02:00
|
|
|
#include "libtorrent/upnp.hpp"
|
2007-09-24 20:51:04 +02:00
|
|
|
#include "libtorrent/entry.hpp"
|
2008-05-28 04:35:02 +02:00
|
|
|
#include "libtorrent/bitfield.hpp"
|
2007-09-24 20:51:04 +02:00
|
|
|
#include "libtorrent/torrent_info.hpp"
|
2007-12-02 19:34:37 +01:00
|
|
|
#include "libtorrent/escape_string.hpp"
|
2008-04-05 23:18:27 +02:00
|
|
|
#include "libtorrent/broadcast_socket.hpp"
|
|
|
|
#ifndef TORRENT_DISABLE_DHT
|
2007-12-15 20:18:08 +01:00
|
|
|
#include "libtorrent/kademlia/node_id.hpp"
|
2008-03-16 04:52:13 +01:00
|
|
|
#include "libtorrent/kademlia/routing_table.hpp"
|
2008-04-05 23:18:27 +02:00
|
|
|
#endif
|
2007-05-22 22:44:18 +02:00
|
|
|
#include <boost/tuple/tuple.hpp>
|
|
|
|
#include <boost/tuple/tuple_comparison.hpp>
|
2007-08-07 03:32:38 +02:00
|
|
|
#include <boost/bind.hpp>
|
2007-05-22 22:44:18 +02:00
|
|
|
|
|
|
|
#include "test.hpp"
|
|
|
|
|
|
|
|
using namespace libtorrent;
|
|
|
|
using namespace boost::tuples;
|
2007-08-07 03:32:38 +02:00
|
|
|
using boost::bind;
|
2007-05-22 22:44:18 +02:00
|
|
|
|
2007-12-29 19:24:50 +01:00
|
|
|
tuple<int, int, bool> feed_bytes(http_parser& parser, char const* str)
|
2007-05-22 22:44:18 +02:00
|
|
|
{
|
2007-12-29 19:24:50 +01:00
|
|
|
tuple<int, int, bool> ret(0, 0, false);
|
2008-06-03 17:17:09 +02:00
|
|
|
tuple<int, int, bool> prev(0, 0, false);
|
|
|
|
for (int chunks = 1; chunks < 70; ++chunks)
|
2007-05-22 22:44:18 +02:00
|
|
|
{
|
2008-06-03 17:17:09 +02:00
|
|
|
ret = make_tuple(0, 0, false);
|
|
|
|
parser.reset();
|
|
|
|
buffer::const_interval recv_buf(str, str);
|
|
|
|
for (; *str;)
|
|
|
|
{
|
|
|
|
int chunk_size = (std::min)(chunks, int(strlen(recv_buf.end)));
|
|
|
|
if (chunk_size == 0) break;
|
|
|
|
recv_buf.end += chunk_size;
|
|
|
|
int payload, protocol;
|
|
|
|
bool error = false;
|
|
|
|
tie(payload, protocol) = parser.incoming(recv_buf, error);
|
|
|
|
ret.get<0>() += payload;
|
|
|
|
ret.get<1>() += protocol;
|
|
|
|
ret.get<2>() += error;
|
|
|
|
std::cerr << payload << ", " << protocol << ", " << chunk_size << std::endl;
|
|
|
|
TORRENT_ASSERT(payload + protocol == chunk_size);
|
|
|
|
}
|
|
|
|
TEST_CHECK(prev == make_tuple(0, 0, false) || ret == prev);
|
|
|
|
prev = ret;
|
2007-05-22 22:44:18 +02:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2007-08-07 03:32:38 +02:00
|
|
|
void parser_callback(std::string& out, int token, char const* s, char const* val)
|
|
|
|
{
|
|
|
|
switch (token)
|
|
|
|
{
|
|
|
|
case xml_start_tag: out += "B"; break;
|
|
|
|
case xml_end_tag: out += "F"; break;
|
|
|
|
case xml_empty_tag: out += "E"; break;
|
2007-08-07 05:27:08 +02:00
|
|
|
case xml_declaration_tag: out += "D"; break;
|
|
|
|
case xml_comment: out += "C"; break;
|
2007-08-07 03:32:38 +02:00
|
|
|
case xml_string: out += "S"; break;
|
|
|
|
case xml_attribute: out += "A"; break;
|
2007-08-07 05:27:08 +02:00
|
|
|
case xml_parse_error: out += "P"; break;
|
|
|
|
default: TEST_CHECK(false);
|
2007-08-07 03:32:38 +02:00
|
|
|
}
|
|
|
|
out += s;
|
|
|
|
if (token == xml_attribute)
|
|
|
|
{
|
2007-08-07 05:27:08 +02:00
|
|
|
TEST_CHECK(val != 0);
|
2007-08-07 03:32:38 +02:00
|
|
|
out += "V";
|
|
|
|
out += val;
|
|
|
|
}
|
2007-08-07 05:27:08 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
TEST_CHECK(val == 0);
|
|
|
|
}
|
2007-08-07 03:32:38 +02:00
|
|
|
}
|
|
|
|
|
2008-04-05 23:18:27 +02:00
|
|
|
#ifndef TORRENT_DISABLE_DHT
|
2008-03-16 04:52:13 +01:00
|
|
|
void add_and_replace(libtorrent::dht::node_id& dst, libtorrent::dht::node_id const& add)
|
|
|
|
{
|
|
|
|
bool carry = false;
|
|
|
|
for (int k = 19; k >= 0; --k)
|
|
|
|
{
|
|
|
|
int sum = dst[k] + add[k] + (carry?1:0);
|
|
|
|
dst[k] = sum & 255;
|
|
|
|
carry = sum > 255;
|
|
|
|
}
|
|
|
|
}
|
2008-04-05 23:18:27 +02:00
|
|
|
#endif
|
2008-03-16 04:52:13 +01:00
|
|
|
|
2007-05-22 22:44:18 +02:00
|
|
|
int test_main()
|
|
|
|
{
|
|
|
|
using namespace libtorrent;
|
|
|
|
|
|
|
|
TEST_CHECK(parse_url_components("http://foo:bar@host.com:80/path/to/file")
|
2008-05-17 16:19:34 +02:00
|
|
|
== make_tuple("http", "foo:bar", "host.com", 80, "/path/to/file", (char const*)0));
|
2007-05-22 22:44:18 +02:00
|
|
|
|
|
|
|
TEST_CHECK(parse_url_components("http://host.com/path/to/file")
|
2008-05-17 16:19:34 +02:00
|
|
|
== make_tuple("http", "", "host.com", 80, "/path/to/file", (char const*)0));
|
2007-05-22 22:44:18 +02:00
|
|
|
|
|
|
|
TEST_CHECK(parse_url_components("ftp://host.com:21/path/to/file")
|
2008-05-17 16:19:34 +02:00
|
|
|
== make_tuple("ftp", "", "host.com", 21, "/path/to/file", (char const*)0));
|
2007-05-22 22:44:18 +02:00
|
|
|
|
|
|
|
TEST_CHECK(parse_url_components("http://host.com/path?foo:bar@foo:")
|
2008-05-17 16:19:34 +02:00
|
|
|
== make_tuple("http", "", "host.com", 80, "/path?foo:bar@foo:", (char const*)0));
|
2007-05-22 22:44:18 +02:00
|
|
|
|
2007-06-09 02:11:11 +02:00
|
|
|
TEST_CHECK(parse_url_components("http://192.168.0.1/path/to/file")
|
2008-05-17 16:19:34 +02:00
|
|
|
== make_tuple("http", "", "192.168.0.1", 80, "/path/to/file", (char const*)0));
|
2007-06-09 02:11:11 +02:00
|
|
|
|
|
|
|
TEST_CHECK(parse_url_components("http://[::1]/path/to/file")
|
2008-05-17 16:19:34 +02:00
|
|
|
== make_tuple("http", "", "[::1]", 80, "/path/to/file", (char const*)0));
|
2007-06-09 02:11:11 +02:00
|
|
|
|
2007-05-22 22:44:18 +02:00
|
|
|
// base64 test vectors from http://www.faqs.org/rfcs/rfc4648.html
|
|
|
|
|
|
|
|
TEST_CHECK(base64encode("") == "");
|
|
|
|
TEST_CHECK(base64encode("f") == "Zg==");
|
|
|
|
TEST_CHECK(base64encode("fo") == "Zm8=");
|
|
|
|
TEST_CHECK(base64encode("foo") == "Zm9v");
|
|
|
|
TEST_CHECK(base64encode("foob") == "Zm9vYg==");
|
|
|
|
TEST_CHECK(base64encode("fooba") == "Zm9vYmE=");
|
|
|
|
TEST_CHECK(base64encode("foobar") == "Zm9vYmFy");
|
|
|
|
|
2007-12-02 20:10:45 +01:00
|
|
|
// base32 test vectors from http://www.faqs.org/rfcs/rfc4648.html
|
|
|
|
|
2007-12-02 19:34:37 +01:00
|
|
|
TEST_CHECK(base32encode("") == "");
|
|
|
|
TEST_CHECK(base32encode("f") == "MY======");
|
|
|
|
TEST_CHECK(base32encode("fo") == "MZXQ====");
|
|
|
|
TEST_CHECK(base32encode("foo") == "MZXW6===");
|
|
|
|
TEST_CHECK(base32encode("foob") == "MZXW6YQ=");
|
|
|
|
TEST_CHECK(base32encode("fooba") == "MZXW6YTB");
|
|
|
|
TEST_CHECK(base32encode("foobar") == "MZXW6YTBOI======");
|
|
|
|
|
2007-12-03 07:03:16 +01:00
|
|
|
TEST_CHECK(base32decode("") == "");
|
|
|
|
TEST_CHECK(base32decode("MY======") == "f");
|
|
|
|
TEST_CHECK(base32decode("MZXQ====") == "fo");
|
|
|
|
TEST_CHECK(base32decode("MZXW6===") == "foo");
|
|
|
|
TEST_CHECK(base32decode("MZXW6YQ=") == "foob");
|
|
|
|
TEST_CHECK(base32decode("MZXW6YTB") == "fooba");
|
|
|
|
TEST_CHECK(base32decode("MZXW6YTBOI======") == "foobar");
|
|
|
|
|
|
|
|
TEST_CHECK(base32decode("MY") == "f");
|
|
|
|
TEST_CHECK(base32decode("MZXW6YQ") == "foob");
|
|
|
|
TEST_CHECK(base32decode("MZXW6YTBOI") == "foobar");
|
|
|
|
TEST_CHECK(base32decode("mZXw6yTBO1======") == "foobar");
|
|
|
|
|
|
|
|
std::string test;
|
|
|
|
for (int i = 0; i < 255; ++i)
|
|
|
|
test += char(i);
|
|
|
|
|
|
|
|
TEST_CHECK(base32decode(base32encode(test)) == test);
|
|
|
|
|
2007-12-02 20:10:45 +01:00
|
|
|
// url_has_argument
|
|
|
|
|
|
|
|
TEST_CHECK(!url_has_argument("http://127.0.0.1/test", "test"));
|
|
|
|
TEST_CHECK(!url_has_argument("http://127.0.0.1/test?foo=24", "bar"));
|
|
|
|
TEST_CHECK(*url_has_argument("http://127.0.0.1/test?foo=24", "foo") == "24");
|
|
|
|
TEST_CHECK(*url_has_argument("http://127.0.0.1/test?foo=24&bar=23", "foo") == "24");
|
|
|
|
TEST_CHECK(*url_has_argument("http://127.0.0.1/test?foo=24&bar=23", "bar") == "23");
|
|
|
|
TEST_CHECK(*url_has_argument("http://127.0.0.1/test?foo=24&bar=23&a=e", "bar") == "23");
|
|
|
|
TEST_CHECK(*url_has_argument("http://127.0.0.1/test?foo=24&bar=23&a=e", "a") == "e");
|
|
|
|
TEST_CHECK(!url_has_argument("http://127.0.0.1/test?foo=24&bar=23&a=e", "b"));
|
|
|
|
|
2007-05-22 22:44:18 +02:00
|
|
|
// HTTP request parser
|
|
|
|
|
|
|
|
http_parser parser;
|
2007-12-29 19:24:50 +01:00
|
|
|
boost::tuple<int, int, bool> received = feed_bytes(parser
|
2007-05-22 22:44:18 +02:00
|
|
|
, "HTTP/1.1 200 OK\r\n"
|
|
|
|
"Content-Length: 4\r\n"
|
|
|
|
"Content-Type: text/plain\r\n"
|
|
|
|
"\r\n"
|
|
|
|
"test");
|
|
|
|
|
2007-12-29 19:24:50 +01:00
|
|
|
TEST_CHECK(received == make_tuple(4, 64, false));
|
2007-05-22 22:44:18 +02:00
|
|
|
TEST_CHECK(parser.finished());
|
|
|
|
TEST_CHECK(std::equal(parser.get_body().begin, parser.get_body().end, "test"));
|
2007-09-25 05:14:05 +02:00
|
|
|
TEST_CHECK(parser.header("content-type") == "text/plain");
|
|
|
|
TEST_CHECK(atoi(parser.header("content-length").c_str()) == 4);
|
2007-05-22 22:44:18 +02:00
|
|
|
|
|
|
|
parser.reset();
|
|
|
|
|
|
|
|
TEST_CHECK(!parser.finished());
|
|
|
|
|
|
|
|
char const* upnp_response =
|
|
|
|
"HTTP/1.1 200 OK\r\n"
|
|
|
|
"ST:upnp:rootdevice\r\n"
|
|
|
|
"USN:uuid:000f-66d6-7296000099dc::upnp:rootdevice\r\n"
|
|
|
|
"Location: http://192.168.1.1:5431/dyndev/uuid:000f-66d6-7296000099dc\r\n"
|
|
|
|
"Server: Custom/1.0 UPnP/1.0 Proc/Ver\r\n"
|
|
|
|
"EXT:\r\n"
|
|
|
|
"Cache-Control:max-age=180\r\n"
|
|
|
|
"DATE: Fri, 02 Jan 1970 08:10:38 GMT\r\n\r\n";
|
|
|
|
|
|
|
|
received = feed_bytes(parser, upnp_response);
|
|
|
|
|
2007-12-29 19:24:50 +01:00
|
|
|
TEST_CHECK(received == make_tuple(0, int(strlen(upnp_response)), false));
|
2007-05-22 22:44:18 +02:00
|
|
|
TEST_CHECK(parser.get_body().left() == 0);
|
2007-09-25 05:14:05 +02:00
|
|
|
TEST_CHECK(parser.header("st") == "upnp:rootdevice");
|
|
|
|
TEST_CHECK(parser.header("location")
|
2007-05-22 22:44:18 +02:00
|
|
|
== "http://192.168.1.1:5431/dyndev/uuid:000f-66d6-7296000099dc");
|
2007-09-25 05:14:05 +02:00
|
|
|
TEST_CHECK(parser.header("ext") == "");
|
|
|
|
TEST_CHECK(parser.header("date") == "Fri, 02 Jan 1970 08:10:38 GMT");
|
2007-05-22 22:44:18 +02:00
|
|
|
|
2007-09-21 01:25:40 +02:00
|
|
|
parser.reset();
|
|
|
|
TEST_CHECK(!parser.finished());
|
|
|
|
|
|
|
|
char const* upnp_notify =
|
|
|
|
"NOTIFY * HTTP/1.1\r\n"
|
|
|
|
"Host:239.255.255.250:1900\r\n"
|
|
|
|
"NT:urn:schemas-upnp-org:device:MediaServer:1\r\n"
|
|
|
|
"NTS:ssdp:alive\r\n"
|
|
|
|
"Location:http://10.0.1.15:2353/upnphost/udhisapi.dll?content=uuid:c17f2c31-d19b-4912-af94-651945c8a84e\r\n"
|
|
|
|
"USN:uuid:c17f0c32-d1db-4be8-ae94-25f94583026e::urn:schemas-upnp-org:device:MediaServer:1\r\n"
|
|
|
|
"Cache-Control:max-age=900\r\n"
|
|
|
|
"Server:Microsoft-Windows-NT/5.1 UPnP/1.0 UPnP-Device-Host/1.0\r\n";
|
|
|
|
|
|
|
|
received = feed_bytes(parser, upnp_notify);
|
|
|
|
|
2007-12-29 19:24:50 +01:00
|
|
|
TEST_CHECK(received == make_tuple(0, int(strlen(upnp_notify)), false));
|
2007-09-21 01:25:40 +02:00
|
|
|
TEST_CHECK(parser.method() == "notify");
|
|
|
|
TEST_CHECK(parser.path() == "*");
|
|
|
|
|
2007-09-25 05:14:05 +02:00
|
|
|
parser.reset();
|
|
|
|
TEST_CHECK(!parser.finished());
|
|
|
|
|
|
|
|
char const* bt_lsd = "BT-SEARCH * HTTP/1.1\r\n"
|
|
|
|
"Host: 239.192.152.143:6771\r\n"
|
|
|
|
"Port: 6881\r\n"
|
|
|
|
"Infohash: 12345678901234567890\r\n"
|
|
|
|
"\r\n\r\n";
|
|
|
|
|
|
|
|
received = feed_bytes(parser, bt_lsd);
|
|
|
|
|
2007-12-29 19:24:50 +01:00
|
|
|
TEST_CHECK(received == make_tuple(2, int(strlen(bt_lsd) - 2), false));
|
2007-09-25 05:14:05 +02:00
|
|
|
TEST_CHECK(parser.method() == "bt-search");
|
|
|
|
TEST_CHECK(parser.path() == "*");
|
|
|
|
TEST_CHECK(atoi(parser.header("port").c_str()) == 6881);
|
|
|
|
TEST_CHECK(parser.header("infohash") == "12345678901234567890");
|
|
|
|
|
|
|
|
TEST_CHECK(!parser.finished());
|
|
|
|
|
|
|
|
parser.reset();
|
|
|
|
TEST_CHECK(!parser.finished());
|
|
|
|
|
|
|
|
// make sure we support trackers with incorrect line endings
|
|
|
|
char const* tracker_response =
|
|
|
|
"HTTP/1.1 200 OK\n"
|
|
|
|
"content-length: 5\n"
|
|
|
|
"content-type: test/plain\n"
|
|
|
|
"\n"
|
|
|
|
"\ntest";
|
|
|
|
|
|
|
|
received = feed_bytes(parser, tracker_response);
|
|
|
|
|
2007-12-29 19:24:50 +01:00
|
|
|
TEST_CHECK(received == make_tuple(5, int(strlen(tracker_response) - 5), false));
|
2007-09-25 05:14:05 +02:00
|
|
|
TEST_CHECK(parser.get_body().left() == 5);
|
|
|
|
|
2007-08-07 03:32:38 +02:00
|
|
|
// test xml parser
|
|
|
|
|
|
|
|
char xml1[] = "<a>foo<b/>bar</a>";
|
|
|
|
std::string out1;
|
|
|
|
|
|
|
|
xml_parse(xml1, xml1 + sizeof(xml1) - 1, bind(&parser_callback
|
|
|
|
, boost::ref(out1), _1, _2, _3));
|
|
|
|
std::cerr << out1 << std::endl;
|
|
|
|
TEST_CHECK(out1 == "BaSfooEbSbarFa");
|
|
|
|
|
2007-08-07 05:27:08 +02:00
|
|
|
char xml2[] = "<?xml version = \"1.0\"?><c x=\"1\" \t y=\"3\"/><d foo='bar'></d boo='foo'><!--comment-->";
|
2007-08-07 03:32:38 +02:00
|
|
|
std::string out2;
|
|
|
|
|
|
|
|
xml_parse(xml2, xml2 + sizeof(xml2) - 1, bind(&parser_callback
|
|
|
|
, boost::ref(out2), _1, _2, _3));
|
|
|
|
std::cerr << out2 << std::endl;
|
2007-08-07 05:27:08 +02:00
|
|
|
TEST_CHECK(out2 == "DxmlAversionV1.0EcAxV1AyV3BdAfooVbarFdAbooVfooCcomment");
|
|
|
|
|
|
|
|
char xml3[] = "<a f=1>foo</a f='b>";
|
|
|
|
std::string out3;
|
|
|
|
|
|
|
|
xml_parse(xml3, xml3 + sizeof(xml3) - 1, bind(&parser_callback
|
|
|
|
, boost::ref(out3), _1, _2, _3));
|
|
|
|
std::cerr << out3 << std::endl;
|
|
|
|
TEST_CHECK(out3 == "BaPunquoted attribute valueSfooFaPmissing end quote on attribute");
|
|
|
|
|
|
|
|
char xml4[] = "<a f>foo</a v >";
|
|
|
|
std::string out4;
|
|
|
|
|
|
|
|
xml_parse(xml4, xml4 + sizeof(xml4) - 1, bind(&parser_callback
|
|
|
|
, boost::ref(out4), _1, _2, _3));
|
|
|
|
std::cerr << out4 << std::endl;
|
|
|
|
TEST_CHECK(out4 == "BaPgarbage inside element bracketsSfooFaPgarbage inside element brackets");
|
2007-08-07 09:29:51 +02:00
|
|
|
|
|
|
|
// test network functions
|
|
|
|
|
2008-05-03 18:05:42 +02:00
|
|
|
error_code ec;
|
2007-09-24 20:58:25 +02:00
|
|
|
TEST_CHECK(is_local(address::from_string("192.168.0.1", ec)));
|
|
|
|
TEST_CHECK(is_local(address::from_string("10.1.1.56", ec)));
|
|
|
|
TEST_CHECK(!is_local(address::from_string("14.14.251.63", ec)));
|
|
|
|
TEST_CHECK(is_loopback(address::from_string("127.0.0.1", ec)));
|
|
|
|
TEST_CHECK(is_loopback(address::from_string("::1", ec)));
|
|
|
|
TEST_CHECK(is_any(address_v6::any()));
|
|
|
|
TEST_CHECK(is_any(address_v4::any()));
|
|
|
|
TEST_CHECK(!is_any(address::from_string("31.53.21.64", ec)));
|
2007-09-24 20:51:04 +02:00
|
|
|
|
|
|
|
// test torrent parsing
|
|
|
|
|
|
|
|
entry info;
|
|
|
|
info["pieces"] = "aaaaaaaaaaaaaaaaaaaa";
|
|
|
|
info["name.utf-8"] = "test1";
|
|
|
|
info["name"] = "test__";
|
|
|
|
info["piece length"] = 16 * 1024;
|
|
|
|
info["length"] = 3245;
|
|
|
|
entry torrent;
|
|
|
|
torrent["info"] = info;
|
|
|
|
|
|
|
|
torrent_info ti(torrent);
|
2008-01-06 08:35:32 +01:00
|
|
|
std::cerr << ti.name() << std::endl;
|
2007-09-24 20:51:04 +02:00
|
|
|
TEST_CHECK(ti.name() == "test1");
|
|
|
|
|
2008-03-21 10:00:54 +01:00
|
|
|
#ifdef TORRENT_WINDOWS
|
|
|
|
info["name.utf-8"] = "c:/test1/test2/test3";
|
|
|
|
#else
|
2008-01-06 08:35:32 +01:00
|
|
|
info["name.utf-8"] = "/test1/test2/test3";
|
2008-03-21 10:00:54 +01:00
|
|
|
#endif
|
2008-01-06 08:35:32 +01:00
|
|
|
torrent["info"] = info;
|
|
|
|
torrent_info ti2(torrent);
|
|
|
|
std::cerr << ti2.name() << std::endl;
|
|
|
|
TEST_CHECK(ti2.name() == "test3");
|
|
|
|
|
|
|
|
info["name.utf-8"] = "test2/../test3/.././../../test4";
|
|
|
|
torrent["info"] = info;
|
|
|
|
torrent_info ti3(torrent);
|
|
|
|
std::cerr << ti3.name() << std::endl;
|
|
|
|
TEST_CHECK(ti3.name() == "test2/test3/test4");
|
|
|
|
|
2008-04-05 23:18:27 +02:00
|
|
|
#ifndef TORRENT_DISABLE_DHT
|
2007-12-15 20:18:08 +01:00
|
|
|
// test kademlia functions
|
|
|
|
|
|
|
|
using namespace libtorrent::dht;
|
|
|
|
|
|
|
|
for (int i = 0; i < 160; i += 4)
|
|
|
|
{
|
|
|
|
for (int j = 0; j < 160; j += 4)
|
|
|
|
{
|
|
|
|
node_id a(0);
|
|
|
|
a[(159-i) / 8] = 1 << (i & 7);
|
|
|
|
node_id b(0);
|
|
|
|
b[(159-j) / 8] = 1 << (j & 7);
|
|
|
|
int dist = distance_exp(a, b);
|
|
|
|
|
|
|
|
TEST_CHECK(dist >= 0 && dist < 160);
|
2008-02-25 11:28:53 +01:00
|
|
|
TEST_CHECK(dist == ((i == j)?0:(std::max)(i, j)));
|
2007-12-15 20:18:08 +01:00
|
|
|
|
|
|
|
for (int k = 0; k < 160; k += 4)
|
|
|
|
{
|
|
|
|
node_id c(0);
|
|
|
|
c[(159-k) / 8] = 1 << (k & 7);
|
|
|
|
|
|
|
|
bool cmp = compare_ref(a, b, c);
|
|
|
|
TEST_CHECK(cmp == (distance(a, c) < distance(b, c)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-03-16 04:52:13 +01:00
|
|
|
// test kademlia routing table
|
|
|
|
dht_settings s;
|
|
|
|
node_id id = boost::lexical_cast<sha1_hash>("6123456789abcdef01232456789abcdef0123456");
|
|
|
|
dht::routing_table table(id, 10, s);
|
|
|
|
table.node_seen(id, udp::endpoint(address_v4::any(), rand()));
|
|
|
|
|
|
|
|
node_id tmp;
|
|
|
|
node_id diff = boost::lexical_cast<sha1_hash>("00000f7459456a9453f8719b09547c11d5f34064");
|
|
|
|
std::vector<node_entry> nodes;
|
|
|
|
for (int i = 0; i < 1000000; ++i)
|
|
|
|
{
|
|
|
|
table.node_seen(tmp, udp::endpoint(address_v4::any(), rand()));
|
|
|
|
add_and_replace(tmp, diff);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::copy(table.begin(), table.end(), std::back_inserter(nodes));
|
|
|
|
|
|
|
|
std::cout << "nodes: " << nodes.size() << std::endl;
|
|
|
|
|
|
|
|
std::vector<node_entry> temp;
|
|
|
|
|
|
|
|
std::generate(tmp.begin(), tmp.end(), &std::rand);
|
2008-03-31 05:56:38 +02:00
|
|
|
table.find_node(tmp, temp, false, nodes.size() + 1);
|
2008-03-16 04:52:13 +01:00
|
|
|
std::cout << "returned: " << temp.size() << std::endl;
|
2008-03-31 05:54:03 +02:00
|
|
|
TEST_CHECK(temp.size() == nodes.size());
|
2008-03-16 04:52:13 +01:00
|
|
|
|
|
|
|
std::generate(tmp.begin(), tmp.end(), &std::rand);
|
|
|
|
table.find_node(tmp, temp, true, nodes.size() + 1);
|
|
|
|
std::cout << "returned: " << temp.size() << std::endl;
|
2008-03-31 05:54:03 +02:00
|
|
|
TEST_CHECK(temp.size() == nodes.size() + 1);
|
2008-03-16 04:52:13 +01:00
|
|
|
|
|
|
|
std::generate(tmp.begin(), tmp.end(), &std::rand);
|
|
|
|
table.find_node(tmp, temp, false, 7);
|
|
|
|
std::cout << "returned: " << temp.size() << std::endl;
|
|
|
|
TEST_CHECK(temp.size() == 7);
|
|
|
|
|
|
|
|
std::sort(nodes.begin(), nodes.end(), bind(&compare_ref
|
|
|
|
, bind(&node_entry::id, _1)
|
|
|
|
, bind(&node_entry::id, _2), tmp));
|
|
|
|
|
|
|
|
int hits = 0;
|
|
|
|
for (std::vector<node_entry>::iterator i = temp.begin()
|
|
|
|
, end(temp.end()); i != end; ++i)
|
|
|
|
{
|
|
|
|
int hit = std::find_if(nodes.begin(), nodes.end()
|
|
|
|
, bind(&node_entry::id, _1) == i->id) - nodes.begin();
|
|
|
|
std::cerr << hit << std::endl;
|
|
|
|
if (hit < int(temp.size())) ++hits;
|
|
|
|
}
|
|
|
|
TEST_CHECK(hits > int(temp.size()) / 2);
|
|
|
|
|
|
|
|
std::generate(tmp.begin(), tmp.end(), &std::rand);
|
|
|
|
table.find_node(tmp, temp, false, 15);
|
|
|
|
std::cout << "returned: " << temp.size() << std::endl;
|
|
|
|
TEST_CHECK(temp.size() == 15);
|
|
|
|
|
|
|
|
std::sort(nodes.begin(), nodes.end(), bind(&compare_ref
|
|
|
|
, bind(&node_entry::id, _1)
|
|
|
|
, bind(&node_entry::id, _2), tmp));
|
|
|
|
|
|
|
|
hits = 0;
|
|
|
|
for (std::vector<node_entry>::iterator i = temp.begin()
|
|
|
|
, end(temp.end()); i != end; ++i)
|
|
|
|
{
|
|
|
|
int hit = std::find_if(nodes.begin(), nodes.end()
|
|
|
|
, bind(&node_entry::id, _1) == i->id) - nodes.begin();
|
|
|
|
std::cerr << hit << std::endl;
|
|
|
|
if (hit < int(temp.size())) ++hits;
|
|
|
|
}
|
|
|
|
TEST_CHECK(hits > int(temp.size()) / 2);
|
|
|
|
|
2008-04-05 23:18:27 +02:00
|
|
|
#endif
|
2008-03-16 04:52:13 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
2008-01-07 05:39:18 +01:00
|
|
|
// test peer_id/sha1_hash type
|
|
|
|
|
|
|
|
sha1_hash h1(0);
|
|
|
|
sha1_hash h2(0);
|
|
|
|
TEST_CHECK(h1 == h2);
|
|
|
|
TEST_CHECK(!(h1 != h2));
|
|
|
|
TEST_CHECK(!(h1 < h2));
|
|
|
|
TEST_CHECK(!(h1 < h2));
|
|
|
|
TEST_CHECK(h1.is_all_zeros());
|
|
|
|
|
|
|
|
h1 = boost::lexical_cast<sha1_hash>("0123456789012345678901234567890123456789");
|
|
|
|
h2 = boost::lexical_cast<sha1_hash>("0113456789012345678901234567890123456789");
|
|
|
|
|
|
|
|
TEST_CHECK(h2 < h1);
|
|
|
|
TEST_CHECK(h2 == h2);
|
|
|
|
TEST_CHECK(h1 == h1);
|
|
|
|
h2.clear();
|
|
|
|
TEST_CHECK(h2.is_all_zeros());
|
|
|
|
|
|
|
|
h2 = boost::lexical_cast<sha1_hash>("ffffffffff0000000000ffffffffff0000000000");
|
|
|
|
h1 = boost::lexical_cast<sha1_hash>("fffff00000fffff00000fffff00000fffff00000");
|
|
|
|
h1 &= h2;
|
|
|
|
TEST_CHECK(h1 == boost::lexical_cast<sha1_hash>("fffff000000000000000fffff000000000000000"));
|
|
|
|
|
|
|
|
h2 = boost::lexical_cast<sha1_hash>("ffffffffff0000000000ffffffffff0000000000");
|
|
|
|
h1 = boost::lexical_cast<sha1_hash>("fffff00000fffff00000fffff00000fffff00000");
|
|
|
|
h1 |= h2;
|
|
|
|
TEST_CHECK(h1 == boost::lexical_cast<sha1_hash>("fffffffffffffff00000fffffffffffffff00000"));
|
|
|
|
|
|
|
|
h2 = boost::lexical_cast<sha1_hash>("0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f");
|
|
|
|
h1 ^= h2;
|
|
|
|
std::cerr << h1 << std::endl;
|
|
|
|
TEST_CHECK(h1 == boost::lexical_cast<sha1_hash>("f0f0f0f0f0f0f0ff0f0ff0f0f0f0f0f0f0ff0f0f"));
|
|
|
|
TEST_CHECK(h1 != h2);
|
|
|
|
|
|
|
|
h2 = sha1_hash(" ");
|
|
|
|
TEST_CHECK(h2 == boost::lexical_cast<sha1_hash>("2020202020202020202020202020202020202020"));
|
|
|
|
|
2008-02-28 04:09:34 +01:00
|
|
|
// CIDR distance test
|
|
|
|
h1 = boost::lexical_cast<sha1_hash>("0123456789abcdef01232456789abcdef0123456");
|
|
|
|
h2 = boost::lexical_cast<sha1_hash>("0123456789abcdef01232456789abcdef0123456");
|
|
|
|
TEST_CHECK(common_bits(&h1[0], &h2[0], 20) == 160);
|
|
|
|
h2 = boost::lexical_cast<sha1_hash>("0120456789abcdef01232456789abcdef0123456");
|
|
|
|
TEST_CHECK(common_bits(&h1[0], &h2[0], 20) == 14);
|
|
|
|
h2 = boost::lexical_cast<sha1_hash>("012f456789abcdef01232456789abcdef0123456");
|
|
|
|
TEST_CHECK(common_bits(&h1[0], &h2[0], 20) == 12);
|
|
|
|
h2 = boost::lexical_cast<sha1_hash>("0123456789abcdef11232456789abcdef0123456");
|
|
|
|
TEST_CHECK(common_bits(&h1[0], &h2[0], 20) == 16 * 4 + 3);
|
2008-05-28 04:35:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
// test bitfield
|
|
|
|
bitfield test1(10, false);
|
|
|
|
TEST_CHECK(test1.count() == 0);
|
|
|
|
test1.set_bit(9);
|
|
|
|
TEST_CHECK(test1.count() == 1);
|
|
|
|
test1.clear_bit(9);
|
|
|
|
TEST_CHECK(test1.count() == 0);
|
|
|
|
test1.set_bit(2);
|
|
|
|
TEST_CHECK(test1.count() == 1);
|
|
|
|
test1.set_bit(1);
|
|
|
|
test1.set_bit(9);
|
|
|
|
TEST_CHECK(test1.count() == 3);
|
|
|
|
test1.clear_bit(2);
|
|
|
|
TEST_CHECK(test1.count() == 2);
|
|
|
|
int distance = std::distance(test1.begin(), test1.end());
|
|
|
|
std::cerr << distance << std::endl;
|
|
|
|
TEST_CHECK(distance == 10);
|
|
|
|
|
|
|
|
test1.set_all();
|
|
|
|
TEST_CHECK(test1.count() == 10);
|
|
|
|
|
|
|
|
test1.clear_all();
|
|
|
|
TEST_CHECK(test1.count() == 0);
|
2007-05-22 22:44:18 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|