/usr/lib/python3/dist-packages/jeepney/tests
NameSizeModeActions
__pycache__/-0755rm
secrets_introspect.xml45750644editdlrm
test_auth.py6110644editdlrm
test_bindgen.py10980644editdlrm
test_bus.py8470644editdlrm
test_bus_messages.py32280644editdlrm
test_fds.py18210644editdlrm
test_low_level.py25540644editdlrm
test_routing.py9590644editdlrm
__init__.py00644editdlrm
Edit: /usr/lib/python3/dist-packages/jeepney/tests/test_auth.py (611B)
import pytest from jeepney import auth def test_make_auth_external(): b = auth.make_auth_external() assert b.startswith(b'AUTH EXTERNAL') def test_make_auth_anonymous(): b = auth.make_auth_anonymous() assert b.startswith(b'AUTH ANONYMOUS') def test_parser(): p = auth.SASLParser() p.feed(b'OK 728d62bc2eb394') assert not p.authenticated p.feed(b'1ebbb0b42958b1e0d6\r\n') assert p.authenticated def test_parser_rejected(): p = auth.SASLParser() with pytest.raises(auth.AuthenticationError): p.feed(b'REJECTED EXTERNAL\r\n') assert not p.authenticated