mirror of
https://github.com/arvidn/libtorrent.git
synced 2026-07-30 15:54:20 -04:00
196 lines
4.6 KiB
C++
196 lines
4.6 KiB
C++
/*
|
|
|
|
Copyright (c) 2014-2017, 2019-2021, Arvid Norberg
|
|
Copyright (c) 2016-2017, 2021, Alden Torres
|
|
All rights reserved.
|
|
|
|
You may use, distribute and modify this code under the terms of the BSD license,
|
|
see LICENSE file.
|
|
*/
|
|
|
|
#include "test.hpp"
|
|
#include "setup_transfer.hpp"
|
|
#include "libtorrent/aux_/socket_io.hpp"
|
|
#include "libtorrent/socket.hpp"
|
|
|
|
#include <string>
|
|
|
|
using namespace lt;
|
|
using namespace lt::aux;
|
|
|
|
TORRENT_TEST(address_to_bytes)
|
|
{
|
|
// test address_to_bytes
|
|
TEST_EQUAL(address_to_bytes(addr4("10.11.12.13")), "\x0a\x0b\x0c\x0d");
|
|
TEST_EQUAL(address_to_bytes(addr4("16.5.127.1")), "\x10\x05\x7f\x01");
|
|
|
|
// test endpoint_to_bytes
|
|
TEST_EQUAL(endpoint_to_bytes(uep("10.11.12.13", 8080)), "\x0a\x0b\x0c\x0d\x1f\x90");
|
|
TEST_EQUAL(endpoint_to_bytes(uep("16.5.127.1", 12345)), "\x10\x05\x7f\x01\x30\x39");
|
|
}
|
|
|
|
TORRENT_TEST(read_v4_address)
|
|
{
|
|
std::string buf;
|
|
write_address(addr4("16.5.128.1"), std::back_inserter(buf));
|
|
TEST_EQUAL(buf, "\x10\x05\x80\x01");
|
|
address addr = read_v4_address(buf.begin());
|
|
TEST_EQUAL(addr, addr4("16.5.128.1"));
|
|
|
|
buf.clear();
|
|
write_endpoint(uep("16.5.128.1", 1337)
|
|
, std::back_inserter(buf));
|
|
TEST_EQUAL(buf, "\x10\x05\x80\x01\x05\x39");
|
|
udp::endpoint ep4 = read_v4_endpoint<udp::endpoint>(buf.begin());
|
|
TEST_EQUAL(ep4, uep("16.5.128.1", 1337));
|
|
}
|
|
|
|
TORRENT_TEST(read_v6_endpoint)
|
|
{
|
|
std::string buf;
|
|
write_address(addr6("1000::ffff"), std::back_inserter(buf));
|
|
TEST_CHECK(std::equal(buf.begin(), buf.end(), "\x10\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff"));
|
|
address addr = read_v6_address(buf.begin());
|
|
TEST_EQUAL(addr, addr6("1000::ffff"));
|
|
|
|
buf.clear();
|
|
write_endpoint(uep("1000::ffff", 1337)
|
|
, std::back_inserter(buf));
|
|
TEST_CHECK(std::equal(buf.begin(), buf.end()
|
|
, "\x10\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\x05\x39"));
|
|
TEST_EQUAL(buf.size(), 18);
|
|
udp::endpoint ep6 = read_v6_endpoint<udp::endpoint>(buf.begin());
|
|
TEST_EQUAL(ep6, uep("1000::ffff", 1337));
|
|
}
|
|
|
|
TORRENT_TEST(read_endpoint_list)
|
|
{
|
|
char const eplist[] = "l6:\x10\x05\x80\x01\x05\x39"
|
|
"18:\x10\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\x05\x39" "e";
|
|
bdecode_node e;
|
|
error_code ec;
|
|
bdecode(eplist, eplist + sizeof(eplist)-1, e, ec);
|
|
TEST_CHECK(!ec);
|
|
std::vector<udp::endpoint> list = read_endpoint_list<udp::endpoint>(e);
|
|
|
|
TEST_EQUAL(list.size(), 2);
|
|
TEST_EQUAL(list[1], uep("1000::ffff", 1337));
|
|
TEST_EQUAL(list[0], uep("16.5.128.1", 1337));
|
|
}
|
|
|
|
TORRENT_TEST(parse_invalid_ipv4_endpoint)
|
|
{
|
|
error_code ec;
|
|
tcp::endpoint endp;
|
|
|
|
endp = parse_endpoint("", ec);
|
|
TEST_CHECK(ec);
|
|
ec.clear();
|
|
|
|
endp = parse_endpoint("\n\t ", ec);
|
|
TEST_CHECK(ec);
|
|
ec.clear();
|
|
|
|
endp = parse_endpoint("127.0.0.1-4", ec);
|
|
TEST_CHECK(ec);
|
|
ec.clear();
|
|
|
|
endp = parse_endpoint("127.0.0.1:-4", ec);
|
|
TEST_CHECK(ec);
|
|
ec.clear();
|
|
|
|
endp = parse_endpoint("127.0.0.1:66000", ec);
|
|
TEST_CHECK(ec);
|
|
ec.clear();
|
|
|
|
endp = parse_endpoint("127.0.0.1:abc", ec);
|
|
TEST_CHECK(ec);
|
|
ec.clear();
|
|
|
|
endp = parse_endpoint("127.0.0.1", ec);
|
|
TEST_CHECK(ec);
|
|
ec.clear();
|
|
|
|
#ifndef TORRENT_WINDOWS
|
|
// it appears windows silently accepts truncated IP addresses
|
|
endp = parse_endpoint("127.0.0:123", ec);
|
|
TEST_CHECK(ec);
|
|
ec.clear();
|
|
#endif
|
|
|
|
endp = parse_endpoint("127.0.0.1:", ec);
|
|
TEST_CHECK(ec);
|
|
ec.clear();
|
|
|
|
endp = parse_endpoint("127.0.0.1X", ec);
|
|
TEST_CHECK(ec);
|
|
ec.clear();
|
|
}
|
|
|
|
TORRENT_TEST(parse_valid_ip4_endpoint)
|
|
{
|
|
error_code ec;
|
|
TEST_EQUAL(parse_endpoint("127.0.0.1:4", ec), ep("127.0.0.1", 4));
|
|
TEST_CHECK(!ec);
|
|
ec.clear();
|
|
|
|
TEST_EQUAL(parse_endpoint("\t 127.0.0.1:4 \n", ec), ep("127.0.0.1", 4));
|
|
TEST_CHECK(!ec);
|
|
ec.clear();
|
|
|
|
TEST_EQUAL(parse_endpoint("127.0.0.1:23", ec), ep("127.0.0.1", 23));
|
|
TEST_CHECK(!ec);
|
|
ec.clear();
|
|
}
|
|
|
|
TORRENT_TEST(parse_invalid_ipv6_endpoint)
|
|
{
|
|
error_code ec;
|
|
tcp::endpoint endp;
|
|
|
|
endp = parse_endpoint("[::1]-4", ec);
|
|
TEST_CHECK(ec);
|
|
ec.clear();
|
|
|
|
endp = parse_endpoint("[::1]", ec);
|
|
TEST_CHECK(ec);
|
|
ec.clear();
|
|
|
|
endp = parse_endpoint("[::1]:", ec);
|
|
TEST_CHECK(ec);
|
|
ec.clear();
|
|
|
|
endp = parse_endpoint("[::1]X", ec);
|
|
TEST_CHECK(ec);
|
|
ec.clear();
|
|
|
|
endp = parse_endpoint("[::1", ec);
|
|
TEST_CHECK(ec == errors::expected_close_bracket_in_address);
|
|
ec.clear();
|
|
|
|
parse_endpoint("[ff::1:5", ec);
|
|
TEST_EQUAL(ec, error_code(errors::expected_close_bracket_in_address));
|
|
ec.clear();
|
|
|
|
endp = parse_endpoint("[abcd]:123", ec);
|
|
TEST_CHECK(ec);
|
|
ec.clear();
|
|
|
|
endp = parse_endpoint("[ff::1]", ec);
|
|
TEST_EQUAL(ec, error_code(errors::invalid_port));
|
|
ec.clear();
|
|
}
|
|
|
|
TORRENT_TEST(parse_valid_ipv6_endpoint)
|
|
{
|
|
error_code ec;
|
|
TEST_EQUAL(parse_endpoint("[::1]:4", ec), ep("::1", 4));
|
|
TEST_CHECK(!ec);
|
|
ec.clear();
|
|
|
|
TEST_EQUAL(parse_endpoint(" \t[ff::1]:1214 \r", ec), ep("ff::1", 1214));
|
|
TEST_CHECK(!ec);
|
|
ec.clear();
|
|
}
|
|
|