HEX
Server: LiteSpeed
System: Linux php-prod-1.spaceapp.ru 5.15.0-157-generic #167-Ubuntu SMP Wed Sep 17 21:35:53 UTC 2025 x86_64
User: xnsbb3110 (1041)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: //proc/self/root/proc/self/root/lib/python3/dist-packages/jeepney/tests/test_auth.py
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