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
|
import os
import secrets
import pytest
from transmission_rpc import LOGGER
from transmission_rpc.client import Client
HOST = os.getenv("TR_HOST", "127.0.0.1")
PORT = int(os.getenv("TR_PORT", "9091"))
USER = os.getenv("TR_USER", "admin")
PASSWORD = os.getenv("TR_PASSWORD", "password")
@pytest.fixture()
def tr_client():
LOGGER.setLevel("INFO")
with Client(host=HOST, port=PORT, username=USER, password=PASSWORD) as c:
for torrent in c.get_torrents():
c.remove_torrent(torrent.id, delete_data=True)
yield c
for torrent in c.get_torrents():
c.remove_torrent(torrent.id, delete_data=True)
@pytest.fixture()
def fake_hash_factory():
return lambda: secrets.token_hex(20)
|