manga-dlp/tests/test_01_main.py
Ivan Schaller 40e8bf11b4
Some checks failed
ci/woodpecker/push/tests Pipeline failed
rewrote parts of script to be clear
2022-05-13 22:34:25 +02:00

22 lines
693 B
Python

from pathlib import Path
import mangadlp.app as app
from mangadlp.api.mangadex import Mangadex
def test_readin_list():
list_file = Path("tests/test_list.txt")
test_list = app.readin_list(list_file)
assert test_list == [
"https://mangadex.org/title/a96676e5-8ae2-425e-b549-7f15dd34a6d8/komi-san-wa-komyushou-desu",
"https://mangadex.org/title/bd6d0982-0091-4945-ad70-c028ed3c0917/mushoku-tensei-isekai-ittara-honki-dasu",
"37f5cce0-8070-4ada-96e5-fa24b1bd4ff9",
]
def test_check_api():
url = "https://mangadex.org/title/a96676e5-8ae2-425e-b549-7f15dd34a6d8/komi-san-wa-komyushou-desu"
test = app.check_api(url)
assert test == Mangadex