Asyncio-based SOCKS5 server that tunnels connections through configurable chains of SOCKS5, SOCKS4/4a, and HTTP CONNECT proxies. Tor integration via standard SOCKS5 hop.
77 lines
2.3 KiB
Python
77 lines
2.3 KiB
Python
"""Tests for configuration loading and proxy URL parsing."""
|
|
|
|
import pytest
|
|
|
|
from s5p.config import ChainHop, Config, parse_proxy_url
|
|
|
|
|
|
class TestParseProxyUrl:
|
|
"""Test proxy URL parsing."""
|
|
|
|
def test_socks5_basic(self):
|
|
hop = parse_proxy_url("socks5://127.0.0.1:9050")
|
|
assert hop.proto == "socks5"
|
|
assert hop.host == "127.0.0.1"
|
|
assert hop.port == 9050
|
|
assert hop.username is None
|
|
assert hop.password is None
|
|
|
|
def test_socks5_with_auth(self):
|
|
hop = parse_proxy_url("socks5://user:pass@proxy.example.com:1080")
|
|
assert hop.proto == "socks5"
|
|
assert hop.host == "proxy.example.com"
|
|
assert hop.port == 1080
|
|
assert hop.username == "user"
|
|
assert hop.password == "pass"
|
|
|
|
def test_socks4(self):
|
|
hop = parse_proxy_url("socks4://10.0.0.1:1080")
|
|
assert hop.proto == "socks4"
|
|
assert hop.host == "10.0.0.1"
|
|
assert hop.port == 1080
|
|
|
|
def test_http_connect(self):
|
|
hop = parse_proxy_url("http://proxy:8080")
|
|
assert hop.proto == "http"
|
|
assert hop.host == "proxy"
|
|
assert hop.port == 8080
|
|
|
|
def test_default_port_socks5(self):
|
|
hop = parse_proxy_url("socks5://host")
|
|
assert hop.port == 1080
|
|
|
|
def test_default_port_http(self):
|
|
hop = parse_proxy_url("http://host")
|
|
assert hop.port == 8080
|
|
|
|
def test_unsupported_protocol(self):
|
|
with pytest.raises(ValueError, match="unsupported protocol"):
|
|
parse_proxy_url("ftp://host:21")
|
|
|
|
def test_missing_host(self):
|
|
with pytest.raises(ValueError, match="missing host"):
|
|
parse_proxy_url("socks5://")
|
|
|
|
|
|
class TestChainHop:
|
|
"""Test ChainHop string representation."""
|
|
|
|
def test_str_without_auth(self):
|
|
hop = ChainHop(proto="socks5", host="localhost", port=9050)
|
|
assert str(hop) == "socks5://localhost:9050"
|
|
|
|
def test_str_with_auth(self):
|
|
hop = ChainHop(proto="http", host="proxy", port=8080, username="u", password="p")
|
|
assert str(hop) == "http://u@proxy:8080"
|
|
|
|
|
|
class TestConfig:
|
|
"""Test Config defaults."""
|
|
|
|
def test_defaults(self):
|
|
c = Config()
|
|
assert c.listen_host == "127.0.0.1"
|
|
assert c.listen_port == 1080
|
|
assert c.chain == []
|
|
assert c.timeout == 10.0
|