22 lines
619 B
Python
22 lines
619 B
Python
"""This tests setting a hardcoded UID in AuthExternal"""
|
|
import os
|
|
|
|
import pytest
|
|
|
|
from dbus_fast.auth import UID_NOT_SPECIFIED, AuthExternal
|
|
from dbus_fast.errors import AuthError
|
|
|
|
|
|
def test_uid_is_set():
|
|
auth = AuthExternal(uid=999)
|
|
assert auth._authentication_start() == "AUTH EXTERNAL 393939"
|
|
|
|
|
|
def test_auth_external_no_uid():
|
|
"""Test AuthExternal with UID_NOT_SPECIFIED"""
|
|
auth = AuthExternal(uid=UID_NOT_SPECIFIED)
|
|
assert auth._authentication_start() == "AUTH EXTERNAL"
|
|
assert auth._receive_line("DATA") == "DATA"
|
|
with pytest.raises(AuthError):
|
|
auth._receive_line("REJECTED")
|