1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860
|
# SPDX-License-Identifier: MIT
# pylint: disable=too-many-lines
from __future__ import annotations
import errno
import pickle
import socket
import subprocess
import sys
import time
from contextlib import suppress
from pathlib import Path
from typing import Any, Callable, Iterator, Mapping, Sequence, Tuple, Union
import pytest
from mbedtls._tls import (
_SUPPORTED_DTLS_VERSION,
_SUPPORTED_TLS_VERSION,
_dtls_from_version,
_dtls_to_version,
)
from mbedtls._tls import _DTLSCookie as DTLSCookie # type: ignore
from mbedtls._tls import _PSKSToreProxy as PSKStoreProxy # type: ignore
from mbedtls._tls import _tls_from_version, _tls_to_version
from mbedtls.pk import ECC, RSA
from mbedtls.tls import (
ClientContext,
DTLSConfiguration,
DTLSVersion,
HandshakeStep,
HelloVerifyRequest,
ServerContext,
TLSConfiguration,
TLSRecordHeader,
TLSSession,
TLSVersion,
TLSWrappedBuffer,
TLSWrappedSocket,
TrustStore,
WantReadError,
WantWriteError,
)
from mbedtls.x509 import CRT
_Key = Union[RSA, ECC]
_HostName = str
@pytest.fixture(scope="module")
def rootpath() -> Path:
return Path(__file__).parent.parent
@pytest.fixture(scope="module")
def assets(rootpath: Path) -> Path:
return rootpath / "tests" / "data"
@pytest.fixture(scope="module")
def ca_crt(assets: Path) -> CRT:
return CRT.from_file(assets / "ca.crt.pem")
@pytest.fixture(scope="module")
def ca_key(assets: Path) -> _Key:
return RSA.from_file(assets / "ca.key.prv.pem")
@pytest.fixture(scope="module")
def ee_crt(assets: Path) -> CRT:
return CRT.from_file(assets / "ee.crt.pem")
@pytest.fixture(scope="module")
def ee_key(assets: Path) -> _Key:
return RSA.from_file(assets / "ee.key.prv.pem")
@pytest.fixture(scope="module")
def certificate_chain(
ca_crt: CRT, ee_crt: CRT, ee_key: _Key
) -> Tuple[Tuple[CRT, ...], _Key]:
return (ee_crt, ca_crt), ee_key
class TestPickle:
@pytest.mark.parametrize(
"obj",
[
TLSConfiguration(),
DTLSConfiguration(),
ClientContext(TLSConfiguration()),
ClientContext(DTLSConfiguration()),
ServerContext(TLSConfiguration()),
ServerContext(DTLSConfiguration()),
],
ids=type,
)
def test_picklable(self, obj: object) -> None:
assert obj == pickle.loads(pickle.dumps(obj))
@pytest.mark.parametrize(
"obj",
[
TLSSession(),
TLSWrappedBuffer(ClientContext(DTLSConfiguration())),
TLSWrappedBuffer(ClientContext(TLSConfiguration())),
TLSWrappedBuffer(ServerContext(DTLSConfiguration())),
TLSWrappedBuffer(ServerContext(TLSConfiguration())),
TLSWrappedSocket(
socket.socket(),
TLSWrappedBuffer(ClientContext(DTLSConfiguration())),
),
TLSWrappedSocket(
socket.socket(),
TLSWrappedBuffer(ClientContext(TLSConfiguration())),
),
TLSWrappedSocket(
socket.socket(),
TLSWrappedBuffer(ServerContext(DTLSConfiguration())),
),
TLSWrappedSocket(
socket.socket(),
TLSWrappedBuffer(ServerContext(TLSConfiguration())),
),
],
ids=type,
)
def test_unpicklable(self, obj: object) -> None:
with pytest.raises(TypeError) as excinfo:
pickle.dumps(obj)
assert str(excinfo.value).startswith("cannot pickle")
class TestPSKStoreProxy:
@pytest.fixture
def psk_store(self) -> Mapping[str, bytes]:
return {"client": b"the secret key"}
@pytest.fixture
def proxy(self, psk_store: Mapping[str, bytes]) -> PSKStoreProxy:
return PSKStoreProxy(psk_store)
@pytest.mark.parametrize("repr_", [repr, str], ids=lambda f: f.__name__)
def test_repr(
self, repr_: Callable[[object], str], psk_store: Mapping[str, bytes]
) -> None:
assert isinstance(repr_(psk_store), str)
def test_unwrap(
self, proxy: PSKStoreProxy, psk_store: Mapping[str, bytes]
) -> None:
assert proxy.unwrap() == psk_store
def test_eq(
self, proxy: PSKStoreProxy, psk_store: Mapping[str, bytes]
) -> None:
for k, v in psk_store.items():
assert proxy[k] == v
def test_len(
self, proxy: PSKStoreProxy, psk_store: Mapping[str, bytes]
) -> None:
assert len(proxy) == len(psk_store)
class TestVersion:
@pytest.mark.parametrize("version", _SUPPORTED_TLS_VERSION)
def test_tls_enum_to_protocol_version(self, version: TLSVersion) -> None:
assert _tls_to_version(_tls_from_version(version)) is version
@pytest.mark.parametrize("version", _SUPPORTED_DTLS_VERSION)
def test_dtls_enum_to_protocol_version(self, version: DTLSVersion) -> None:
assert _dtls_to_version(_dtls_from_version(version)) is version
class TestTLSRecordHeader:
@pytest.fixture(params=TLSRecordHeader.RecordType)
def record_type(self, request: Any) -> TLSRecordHeader.RecordType:
assert isinstance(request.param, TLSRecordHeader.RecordType)
return request.param
@pytest.fixture(params=_SUPPORTED_TLS_VERSION)
def version(self, request: Any) -> TLSVersion:
assert isinstance(request.param, TLSVersion)
return request.param
@pytest.fixture
def length(self) -> int:
return 42
@pytest.fixture
def header(
self,
record_type: TLSRecordHeader.RecordType,
version: TLSVersion,
length: int,
) -> TLSRecordHeader:
return TLSRecordHeader(record_type, version, length)
@pytest.mark.parametrize("repr_", [repr, str], ids=lambda f: f.__name__)
def test_repr(
self,
repr_: Callable[[object], str],
record_type: TLSRecordHeader.RecordType,
) -> None:
assert isinstance(repr_(record_type), str)
def test_hash(self, record_type: TLSRecordHeader.RecordType) -> None:
assert isinstance(hash(record_type), int)
def test_accessors(
self,
header: TLSRecordHeader,
record_type: TLSRecordHeader.RecordType,
version: TLSVersion,
length: int,
) -> None:
assert len(header) == 5
assert header.record_type is record_type
assert header.version is version
assert header.length == length
def test_serialization(self, header: TLSRecordHeader) -> None:
serialized = bytes(header)
assert isinstance(serialized, bytes)
assert len(serialized) == 5
assert TLSRecordHeader.from_bytes(serialized) == header
class TestTLSSession:
@pytest.fixture
def session(self) -> TLSSession:
return TLSSession()
def test_repr(self, session: TLSSession) -> None:
assert isinstance(repr(session), str)
class TestTrustStore:
@pytest.fixture
def store(self) -> TrustStore:
return TrustStore.system()
@pytest.mark.parametrize("repr_", [repr, str], ids=lambda f: f.__name__)
def test_repr(
self, repr_: Callable[[object], str], store: TrustStore
) -> None:
assert isinstance(repr_(store), str)
def test_eq(self, store: TrustStore) -> None:
other = TrustStore(store)
assert store is not other
assert store == other
def test_bool(self, store: TrustStore) -> None:
assert not TrustStore()
assert store
def test_len(self, store: TrustStore) -> None:
assert len(store) != 0
def test_iter(self, store: TrustStore) -> None:
assert store[0] != store[1]
n = 0
for n, crt in enumerate(store, start=1):
assert crt in store
assert n == len(store)
def test_add_existing_certificate(self, store: TrustStore) -> None:
length = len(store)
store.add(store[0])
assert len(store) == length
def test_add_new_certificate(self, store: TrustStore, ca_crt: CRT) -> None:
length = len(store)
store.add(ca_crt)
assert len(store) == length + 1
class TestDTLSCookie:
@pytest.fixture
def cookie(self) -> DTLSCookie:
return DTLSCookie()
def test_generate_does_not_raise(self, cookie: DTLSCookie) -> None:
cookie.generate()
def test_timeout(self, cookie: DTLSCookie) -> None:
assert cookie.timeout == 60
cookie.timeout = 1000
assert cookie.timeout == 1000
CLIENT_HELLO = (HandshakeStep.CLIENT_HELLO,)
SERVER_HELLO = (
HandshakeStep.SERVER_HELLO,
HandshakeStep.SERVER_CERTIFICATE,
HandshakeStep.SERVER_KEY_EXCHANGE,
HandshakeStep.CERTIFICATE_REQUEST,
HandshakeStep.SERVER_HELLO_DONE,
)
CLIENT_KEY_EXCHANGE = (
HandshakeStep.CLIENT_CERTIFICATE,
HandshakeStep.CLIENT_KEY_EXCHANGE,
HandshakeStep.CERTIFICATE_VERIFY,
HandshakeStep.CLIENT_CHANGE_CIPHER_SPEC,
HandshakeStep.CLIENT_FINISHED,
)
SERVER_CHANGE_CIPHER_SPEC = (
HandshakeStep.SERVER_CHANGE_CIPHER_SPEC,
HandshakeStep.SERVER_FINISHED,
)
HANDSHAKE_OVER = (
HandshakeStep.FLUSH_BUFFERS,
HandshakeStep.HANDSHAKE_WRAPUP,
HandshakeStep.HANDSHAKE_OVER,
)
def do_io(
*, src: TLSWrappedBuffer, dst: TLSWrappedBuffer, amt: int = 1024
) -> None:
# pylint: disable=protected-access
__tracebackhide__ = True # pylint: disable=unused-variable
assert src._output_buffer, "nothing to do"
while src._output_buffer:
in_transit = src.peek_outgoing(amt)
src.consume_outgoing(len(in_transit))
dst.receive_from_network(in_transit)
def do_send(
data: bytes, *, src: TLSWrappedBuffer, dst: TLSWrappedBuffer
) -> bytes:
amt = src.write(data)
do_io(src=src, dst=dst)
return dst.read(amt)
def do_handshake(
end: TLSWrappedBuffer, states: Sequence[HandshakeStep]
) -> None:
# pylint: disable=protected-access
__tracebackhide__ = True # pylint: disable=unused-variable
while end._handshake_state is not states[0]:
# The backend goes through every state for both
# ends. This is not relevant.
try:
end.do_handshake()
except (WantReadError, WantWriteError) as exc:
raise AssertionError(
f"{type(end.context).__name__} wants {end._handshake_state}"
) from exc
for state in states:
assert end._handshake_state is state
if state is HandshakeStep.HANDSHAKE_OVER:
break
with suppress(WantWriteError):
end.do_handshake()
def make_full_handshake(
*, client: TLSWrappedBuffer, server: TLSWrappedBuffer
) -> None:
do_handshake(client, CLIENT_HELLO)
do_io(src=client, dst=server)
do_handshake(server, SERVER_HELLO)
do_io(src=server, dst=client)
assert client.negotiated_protocol() == server.negotiated_protocol()
do_handshake(client, CLIENT_KEY_EXCHANGE)
do_io(src=client, dst=server)
assert client.negotiated_tls_version() == server.negotiated_tls_version()
do_handshake(server, SERVER_CHANGE_CIPHER_SPEC)
do_io(src=server, dst=client)
do_handshake(server, HANDSHAKE_OVER)
do_handshake(client, HANDSHAKE_OVER)
assert client.cipher() == server.cipher()
def make_hello_verify_request(
*, client: TLSWrappedBuffer, server: TLSWrappedBuffer, cookie: bytes
) -> None:
do_handshake(client, CLIENT_HELLO)
do_io(src=client, dst=server)
server.setcookieparam(cookie)
with pytest.raises(HelloVerifyRequest):
do_handshake(
server,
(
HandshakeStep.SERVER_HELLO,
HandshakeStep.SERVER_HELLO_VERIFY_REQUEST_SENT,
),
)
do_handshake(server, (HandshakeStep.HELLO_REQUEST,))
server.setcookieparam(cookie)
do_io(src=server, dst=client)
def do_communicate(args: Any) -> str:
while True:
with subprocess.Popen(
args,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
text=True,
encoding="utf8",
) as proc:
out, err = proc.communicate()
if "ConnectionRefusedError" in err:
time.sleep(0.01) # Avoid tight CPU loop.
continue
return out
class TestTLSHandshake:
@pytest.fixture(scope="class")
def hostname(self) -> _HostName:
return "www.example.com"
def test_cert_without_validation(
self, certificate_chain: Tuple[Tuple[CRT, ...], _Key]
) -> None:
server = ServerContext(
TLSConfiguration(
certificate_chain=certificate_chain,
validate_certificates=False,
)
).wrap_buffers()
client = ClientContext(
TLSConfiguration(validate_certificates=False)
).wrap_buffers("hostname")
make_full_handshake(client=client, server=server)
secret = b"a very secret message"
assert do_send(secret, src=client, dst=server) == secret
assert do_send(secret, src=server, dst=client) == secret
def test_cert_with_validation(
self,
hostname: _HostName,
certificate_chain: Tuple[Tuple[CRT, ...], _Key],
) -> None:
trust_store = TrustStore()
crt: CRT
for crt in certificate_chain[0][1:]:
trust_store.add(crt)
server = ServerContext(
TLSConfiguration(
certificate_chain=certificate_chain,
validate_certificates=False,
)
).wrap_buffers()
# Host name must now be the common name (CN) of the leaf certificate.
client = ClientContext(
TLSConfiguration(trust_store=trust_store)
).wrap_buffers(hostname)
make_full_handshake(client=client, server=server)
secret = b"a very secret message"
assert do_send(secret, src=client, dst=server) == secret
assert do_send(secret, src=server, dst=client) == secret
def test_psk(self) -> None:
psk = ("cli", b"secret")
server = ServerContext(
TLSConfiguration(
pre_shared_key_store=dict((psk,)),
validate_certificates=False,
)
).wrap_buffers()
client = ClientContext(
TLSConfiguration(
pre_shared_key=psk,
validate_certificates=False,
),
).wrap_buffers("hostname")
make_full_handshake(client=client, server=server)
secret = b"a very secret message"
assert do_send(secret, src=client, dst=server) == secret
assert do_send(secret, src=server, dst=client) == secret
class TestDTLSHandshake:
def test_psk(self) -> None:
psk = ("cli", b"secret")
server = ServerContext(
DTLSConfiguration(
pre_shared_key_store=dict((psk,)),
validate_certificates=False,
)
).wrap_buffers()
client = ClientContext(
DTLSConfiguration(
pre_shared_key=psk,
validate_certificates=False,
),
).wrap_buffers("hostname")
make_hello_verify_request(
client=client, server=server, cookie="🍪🍪🍪".encode()
)
make_full_handshake(client=client, server=server)
secret = b"a very secret message"
assert do_send(secret, src=client, dst=server) == secret
assert do_send(secret, src=server, dst=client) == secret
@pytest.mark.parametrize("mtu_cli", [0, 128, 380, 500, (1 << 16) - 1])
@pytest.mark.parametrize("mtu_srv", [0, 128, 380, 500, (1 << 16) - 1])
def test_psk_set_mtu(self, mtu_cli: int, mtu_srv: int) -> None:
psk = ("cli", b"secret")
server = ServerContext(
DTLSConfiguration(
pre_shared_key_store=dict((psk,)),
validate_certificates=False,
)
).wrap_buffers()
server.setmtu(mtu_srv)
client = ClientContext(
DTLSConfiguration(
pre_shared_key=psk,
validate_certificates=False,
),
).wrap_buffers("hostname")
client.setmtu(mtu_cli)
make_hello_verify_request(
client=client, server=server, cookie="🍪🍪🍪".encode()
)
make_full_handshake(client=client, server=server)
secret = b"a very secret message"
assert do_send(secret, src=client, dst=server) == secret
assert do_send(secret, src=server, dst=client) == secret
def test_resume_from_pickle(self) -> None:
psk = ("cli", b"secret")
server = ServerContext(
DTLSConfiguration(
pre_shared_key_store=dict((psk,)),
validate_certificates=False,
)
).wrap_buffers()
client = ClientContext(
DTLSConfiguration(
pre_shared_key=psk,
ciphers=("TLS-ECDHE-PSK-WITH-CHACHA20-POLY1305-SHA256",),
lowest_supported_version=DTLSVersion.DTLSv1_2,
validate_certificates=False,
),
).wrap_buffers("hostname")
make_hello_verify_request(
client=client, server=server, cookie="🍪🍪🍪".encode()
)
make_full_handshake(client=client, server=server)
secret = b"a very secret message"
do_send(secret, src=client, dst=server)
do_send(secret, src=server, dst=client)
client = pickle.loads(pickle.dumps(client))
do_send(secret, src=client, dst=server)
do_send(secret, src=server, dst=client)
class TestWrappedSocket_SmokeTests:
@pytest.mark.parametrize("conf", [TLSConfiguration(), DTLSConfiguration()])
def test_wrap_unwrap_client(
self, conf: Union[TLSConfiguration, DTLSConfiguration]
) -> None:
with ClientContext(conf).wrap_socket(socket.socket(), None):
pass
@pytest.mark.parametrize("conf", [TLSConfiguration(), DTLSConfiguration()])
def test_wrap_unwrap_server(
self, conf: Union[TLSConfiguration, DTLSConfiguration]
) -> None:
with ServerContext(conf).wrap_socket(socket.socket()):
pass
@pytest.mark.e2e
@pytest.mark.skipif(sys.platform == "win32", reason="Flaky under Windows")
class TestProgramsTLS:
@pytest.fixture(scope="class")
def port(self) -> int:
"""Return a free port
Note:
Not 100% race condition free.
"""
port = 0
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as sock:
sock.bind(("localhost", port))
port = sock.getsockname()[1]
return port
@pytest.fixture(scope="class")
def server(
self, rootpath: Path, port: int
) -> Iterator[subprocess.Popen[str]]:
args = [
sys.executable,
str(rootpath / "programs" / "server.py"),
"--port",
f"{port}",
"--tls",
"--psk-store",
"cli=secret",
]
with subprocess.Popen(args, text=True, encoding="utf8") as proc:
yield proc
proc.kill()
proc.wait(1.0)
@pytest.mark.repeat(3)
@pytest.mark.usefixtures("server")
@pytest.mark.timeout(30)
def test_client(self, rootpath: Path, port: int) -> None:
secret = "a very secret message"
args = [
sys.executable,
str(rootpath / "programs" / "client.py"),
"--port",
f"{port}",
"--tls",
"--psk",
"cli=secret",
secret,
]
for _ in range(3):
assert do_communicate(args) == secret + "\n"
@pytest.mark.usefixtures("server")
@pytest.mark.timeout(30)
def test_raw_socket_send_recv(self, port: int) -> None:
secret = b"a very secret message"
with ClientContext(
TLSConfiguration(
pre_shared_key=("cli", b"secret"),
validate_certificates=False,
),
).wrap_socket(
socket.socket(socket.AF_INET, socket.SOCK_STREAM), "localhost"
) as client:
client.connect(("127.0.0.1", port))
client.do_handshake()
sent = client.send(secret)
assert sent == len(secret)
data = client.recv(1024)
assert data == secret
@pytest.mark.usefixtures("server")
@pytest.mark.timeout(30)
def test_raw_socket_send_recv_into(self, port: int) -> None:
secret = b"a very secret message"
buffer = bytearray(b"\0" * 256)
with ClientContext(
TLSConfiguration(
pre_shared_key=("cli", b"secret"),
validate_certificates=False,
),
).wrap_socket(
socket.socket(socket.AF_INET, socket.SOCK_STREAM), "localhost"
) as client:
client.connect(("127.0.0.1", port))
client.do_handshake()
sent = client.send(secret)
assert sent == len(secret)
received = client.recv_into(buffer, 1024)
assert buffer[:received] == secret
@pytest.mark.usefixtures("server")
@pytest.mark.timeout(30)
def test_raw_socket_sendall_recv(self, port: int) -> None:
secret = b"a very secret message"
with ClientContext(
TLSConfiguration(
pre_shared_key=("cli", b"secret"),
validate_certificates=False,
),
).wrap_socket(
socket.socket(socket.AF_INET, socket.SOCK_STREAM), "localhost"
) as client:
client.connect(("127.0.0.1", port))
client.do_handshake()
client.sendall(secret)
data = client.recv(1024)
assert data == secret
@pytest.mark.usefixtures("server")
@pytest.mark.timeout(30)
def test_raw_socket_connectionless_unavailable(self, port: int) -> None:
address = ("127.0.0.1", port)
with ClientContext(
TLSConfiguration(
pre_shared_key=("cli", b"secret"),
validate_certificates=False,
),
).wrap_socket(
socket.socket(socket.AF_INET, socket.SOCK_STREAM), "localhost"
) as client:
with pytest.raises(OSError) as excinfo:
client.do_handshake(address)
assert excinfo.value.errno is errno.ENOTCONN
@pytest.mark.e2e
@pytest.mark.skipif(sys.platform == "win32", reason="Flaky under Windows")
class TestProgramsDTLS:
@pytest.fixture(scope="class")
def port(self) -> int:
"""Return a free port
Note:
Not 100% race condition free.
"""
port = 0
with socket.socket(socket.AF_INET, socket.SOCK_DGRAM) as sock:
sock.bind(("localhost", port))
port = sock.getsockname()[1]
return port
@pytest.fixture(scope="class")
def server(
self, rootpath: Path, port: int
) -> Iterator[subprocess.Popen[str]]:
args = [
sys.executable,
str(rootpath / "programs" / "server.py"),
"--port",
f"{port}",
"--dtls",
"--psk-store",
"cli=secret",
]
with subprocess.Popen(args, text=True, encoding="utf8") as proc:
yield proc
proc.kill()
proc.wait(1.0)
@pytest.mark.repeat(3)
@pytest.mark.usefixtures("server")
@pytest.mark.timeout(30)
def test_client(self, rootpath: Path, port: int) -> None:
secret = "a very secret message"
args = [
sys.executable,
str(rootpath / "programs" / "client.py"),
"--port",
f"{port}",
"--dtls",
"--psk",
"cli=secret",
secret,
]
for _ in range(3):
assert do_communicate(args) == secret + "\n"
@pytest.mark.usefixtures("server")
@pytest.mark.timeout(30)
def test_raw_socket_send_recv(self, port: int) -> None:
address = ("127.0.0.1", port)
secret = b"a very secret message"
with ClientContext(
DTLSConfiguration(
pre_shared_key=("cli", b"secret"),
validate_certificates=False,
),
).wrap_socket(
socket.socket(socket.AF_INET, socket.SOCK_DGRAM), "localhost"
) as client:
client.connect(address)
client.do_handshake()
sent = client.send(secret)
assert sent == len(secret)
data = client.recv(1024)
assert data == secret
@pytest.mark.usefixtures("server")
@pytest.mark.timeout(30)
def test_raw_socket_sendto_recvfrom(self, port: int) -> None:
address = ("127.0.0.1", port)
secret = b"a very secret message"
with ClientContext(
DTLSConfiguration(
pre_shared_key=("cli", b"secret"),
validate_certificates=False,
),
).wrap_socket(
socket.socket(socket.AF_INET, socket.SOCK_DGRAM), "localhost"
) as client:
client.do_handshake(address)
sent = client.sendto(secret, address)
assert sent == len(secret)
data, addr = client.recvfrom(1024)
assert addr == address
assert data == secret
@pytest.mark.usefixtures("server")
@pytest.mark.timeout(30)
def test_raw_socket_sendto_recvfrom_with_flags(self, port: int) -> None:
# Note that flags is always 0 (noop) here because we are only
# interested in testing the API. See also issue #62.
address = ("127.0.0.1", port)
secret = b"a very secret message"
with ClientContext(
DTLSConfiguration(
pre_shared_key=("cli", b"secret"),
validate_certificates=False,
),
).wrap_socket(
socket.socket(socket.AF_INET, socket.SOCK_DGRAM), "localhost"
) as client:
client.do_handshake(0, address)
sent = client.sendto(secret, 0, address)
assert sent == len(secret)
data, addr = client.recvfrom(1024, 0)
assert addr == address
assert data == secret
@pytest.mark.usefixtures("server")
@pytest.mark.timeout(30)
def test_raw_socket_sendto_recvfrom_into(self, port: int) -> None:
address = ("127.0.0.1", port)
secret = b"a very secret message"
buffer = bytearray(b"\0" * 256)
with ClientContext(
DTLSConfiguration(
pre_shared_key=("cli", b"secret"),
validate_certificates=False,
),
).wrap_socket(
socket.socket(socket.AF_INET, socket.SOCK_DGRAM), "localhost"
) as client:
client.do_handshake(address)
sent = client.sendto(secret, address)
assert sent == len(secret)
received, addr = client.recvfrom_into(buffer, 1024)
assert addr == address
assert buffer[:received] == secret
|