mirror of
https://github.com/nathom/streamrip.git
synced 2025-05-09 14:11:55 -04:00
26 lines
755 B
Python
26 lines
755 B
Python
import hashlib
|
|
import os
|
|
|
|
import pytest
|
|
from util import arun
|
|
|
|
from streamrip.client.qobuz import QobuzClient
|
|
from streamrip.config import Config
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def qobuz_client():
|
|
config = Config.defaults()
|
|
config.session.qobuz.email_or_userid = os.environ["QOBUZ_EMAIL"]
|
|
config.session.qobuz.password_or_token = hashlib.md5(
|
|
os.environ["QOBUZ_PASSWORD"].encode("utf-8"),
|
|
).hexdigest()
|
|
if "QOBUZ_APP_ID" in os.environ and "QOBUZ_SECRETS" in os.environ:
|
|
config.session.qobuz.app_id = os.environ["QOBUZ_APP_ID"]
|
|
config.session.qobuz.secrets = os.environ["QOBUZ_SECRETS"].split(",")
|
|
client = QobuzClient(config)
|
|
arun(client.login())
|
|
|
|
yield client
|
|
|
|
arun(client.session.close())
|