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
|
import json
from pathlib import Path
from typing import Tuple
import pytest_asyncio
from aioresponses import aioresponses
from nio import AsyncClient, AsyncClientConfig, LoginResponse
from nio.crypto import OlmDevice
login_response: dict = json.loads(Path("tests/data/login_response.json").read_text())
@pytest_asyncio.fixture
async def unauthed_async_client(tempdir) -> AsyncClient:
client = AsyncClient(
"https://example.org",
"ephemeral",
"DEVICEID",
tempdir,
config=AsyncClientConfig(max_timeouts=3),
)
yield client
await client.close()
@pytest_asyncio.fixture
async def async_client(unauthed_async_client) -> AsyncClient:
await unauthed_async_client.receive_response(
LoginResponse.from_dict(login_response)
)
assert unauthed_async_client.logged_in
yield unauthed_async_client
@pytest_asyncio.fixture
async def async_client_pair(tempdir) -> Tuple[AsyncClient, AsyncClient]:
ALICE_ID = "@alice:example.org"
ALICE_DEVICE = "JLAFKJWSCS"
BOB_ID = "@bob:example.org"
BOB_DEVICE = "ASDFOEAK"
config = AsyncClientConfig(max_timeouts=3)
alice = AsyncClient(
"https://example.org",
ALICE_ID,
ALICE_DEVICE,
tempdir,
config=config,
)
bob = AsyncClient(
"https://example.org",
BOB_ID,
BOB_DEVICE,
tempdir,
config=config,
)
await alice.receive_response(LoginResponse(ALICE_ID, ALICE_DEVICE, "alice_1234"))
await bob.receive_response(LoginResponse(BOB_ID, BOB_DEVICE, "bob_1234"))
yield alice, bob
await alice.close()
await bob.close()
@pytest_asyncio.fixture
async def async_client_pair_same_user(tempdir) -> Tuple[AsyncClient, AsyncClient]:
ALICE_ID = "@alice:example.org"
FIRST_DEVICE = "JLAFKJWSCS"
SECOND_DEVICE = "ASDFOEAK"
config = AsyncClientConfig(max_timeouts=3)
alice = AsyncClient(
"https://example.org",
ALICE_ID,
FIRST_DEVICE,
tempdir,
config=config,
)
bob = AsyncClient(
"https://example.org",
ALICE_ID,
SECOND_DEVICE,
tempdir,
config=config,
)
await alice.receive_response(LoginResponse(ALICE_ID, FIRST_DEVICE, "alice_1234"))
await bob.receive_response(LoginResponse(ALICE_ID, SECOND_DEVICE, "bob_1234"))
alice_device = OlmDevice(
alice.user_id, alice.device_id, alice.olm.account.identity_keys
)
bob_device = OlmDevice(bob.user_id, bob.device_id, bob.olm.account.identity_keys)
alice.olm.device_store.add(bob_device)
bob.olm.device_store.add(alice_device)
alice.verify_device(bob_device)
bob.verify_device(alice_device)
yield (alice, bob)
await alice.close()
await bob.close()
@pytest_asyncio.fixture
def aioresponse() -> aioresponses:
with aioresponses() as m:
yield m
|