manga-dlp/tests/test_02_utils.py

302 lines
7.3 KiB
Python
Raw Normal View History

import shutil
2022-05-11 14:22:57 +02:00
from pathlib import Path
2022-05-17 22:10:16 +02:00
2022-05-16 16:09:17 +02:00
import pytest
2022-05-17 22:10:16 +02:00
2022-05-19 00:25:25 +02:00
import mangadlp.app as app
import mangadlp.utils as utils
2022-05-16 16:09:17 +02:00
def test_make_archive_true():
img_path = Path("tests/test_dir")
archive_path = Path("tests/test_dir.cbz")
2022-05-13 22:34:25 +02:00
file_format = ".cbz"
img_path.mkdir(parents=True, exist_ok=True)
for n in range(5):
img_name = img_path / f"page{n}"
img_name.with_suffix(".png").touch(exist_ok=True)
2022-05-16 16:09:17 +02:00
utils.make_archive(img_path, file_format)
assert archive_path.exists()
# cleanup
archive_path.unlink(missing_ok=True)
img_path.with_suffix(".zip").unlink(missing_ok=True)
shutil.rmtree(img_path, ignore_errors=True)
2022-05-16 16:09:17 +02:00
def test_make_archive_false():
archive_path = Path("tests/test_dir2.cbz")
2022-05-16 16:09:17 +02:00
img_path = Path("tests/test_dir2")
2022-05-13 22:34:25 +02:00
file_format = "cbz"
2022-05-16 16:09:17 +02:00
with pytest.raises(IOError) as e:
utils.make_archive(img_path, file_format)
assert e.type == IOError
assert not archive_path.exists()
2022-05-16 16:09:17 +02:00
# cleanup
Path("tests/test_dir2.zip").unlink()
def test_chapter_list():
chapters_in = "1-4,8,11,14-15,22"
chapters_out = ["1", "2", "3", "4", "8", "11", "14", "15", "22"]
2022-06-20 17:46:04 +02:00
assert utils.get_chapter_list(chapters_in, []) == chapters_out
2022-05-11 14:22:57 +02:00
def test_chapter_list_forcevol():
chapters_in = "1:1-1:4,2:8,3:11,4:14-4:15,5:22"
chapters_out = ["1:1", "1:2", "1:3", "1:4", "2:8", "3:11", "4:14", "4:15", "5:22"]
2022-06-20 17:46:04 +02:00
assert utils.get_chapter_list(chapters_in, []) == chapters_out
2022-05-11 14:22:57 +02:00
2022-05-19 00:25:25 +02:00
def test_chapter_list_full():
mdlp = app.MangaDLP(
url_uuid="https://mangadex.org/title/0aea9f43-d4a9-4bf7-bebc-550a512f9b95/shikimori-s-not-just-a-cutie",
language="en",
chapters="",
list_chapters=True,
file_format="cbz",
forcevol=True,
download_path="tests",
2022-06-25 14:28:42 +02:00
download_wait=2,
2022-05-19 00:25:25 +02:00
)
chap_list = utils.get_chapter_list("1:1,1:2,1:4-1:7,2:", mdlp.manga_chapter_list)
assert chap_list == [
"1:1",
"1:2",
"1:4",
"1:5",
"1:6",
"1:7",
"2:17",
"2:18",
"2:19",
"2:20",
"2:21",
"2:22",
"2:23",
"2:24",
"2:25",
"2:26",
]
def test_fix_name():
2022-05-17 22:10:16 +02:00
filename_in1 = r"..hello?; @test1-*<\>test2.cbz.."
filename_in2 = r"!hello: >test1-/test2<!.cbz"
filename_in3 = r" hello test1-test2.cbz@ "
filename_in4 = r'hello "test1"-test2..cbz.'
filename_in5 = r'.. hello "test1"-\/test2..cbz .'
# out
filename_out = "hello test1-test2.cbz"
assert utils.fix_name(filename_in1) == filename_out
assert utils.fix_name(filename_in2) == filename_out
assert utils.fix_name(filename_in3) == filename_out
assert utils.fix_name(filename_in4) == filename_out
2022-05-17 22:10:16 +02:00
assert utils.fix_name(filename_in5) == filename_out
def test_get_filename_forcevol():
2023-01-15 16:34:51 +01:00
manga_name = "The test manga"
chapter_name = "The holy test Chapter"
chapter_vol = "2"
chapter_num = "44"
forcevol = True
name_format = "{default}"
name_format_none = ""
filename = "Vol. 2 Ch. 44 - The holy test Chapter"
assert (
utils.get_filename(
2023-01-15 16:34:51 +01:00
manga_name,
chapter_name,
chapter_vol,
chapter_num,
forcevol,
name_format,
name_format_none,
)
== filename
)
2022-05-11 14:22:57 +02:00
def test_get_filename_forcevol_noname():
2023-01-15 16:34:51 +01:00
manga_name = "The test manga"
2022-05-11 14:22:57 +02:00
chapter_name = ""
chapter_vol = "2"
chapter_num = "44"
forcevol = True
name_format = "{default}"
name_format_none = ""
2022-05-11 14:22:57 +02:00
filename = "Vol. 2 Ch. 44"
assert (
utils.get_filename(
2023-01-15 16:34:51 +01:00
manga_name,
chapter_name,
chapter_vol,
chapter_num,
forcevol,
name_format,
name_format_none,
)
== filename
)
def test_get_filename_novol():
manga_name = "The test manga"
chapter_name = ""
chapter_vol = ""
chapter_num = "1"
forcevol = True
name_format = "{default}"
name_format_none = ""
filename = "Vol. 0 Ch. 1"
assert (
utils.get_filename(
manga_name,
chapter_name,
chapter_vol,
chapter_num,
forcevol,
name_format,
name_format_none,
)
== filename
2022-05-11 14:22:57 +02:00
)
def test_get_filename():
2023-01-15 16:34:51 +01:00
manga_name = "The test manga"
chapter_name = "The holy test Chapter"
chapter_vol = "2"
chapter_num = "44"
forcevol = False
name_format = "{default}"
name_format_none = ""
filename = "Ch. 44 - The holy test Chapter"
assert (
utils.get_filename(
2023-01-15 16:34:51 +01:00
manga_name,
chapter_name,
chapter_vol,
chapter_num,
forcevol,
name_format,
name_format_none,
)
== filename
)
def test_get_filename_oneshot():
2023-01-15 16:34:51 +01:00
manga_name = "The test manga"
chapter_name = "Oneshot"
chapter_vol = ""
chapter_num = ""
forcevol = False
name_format = "{default}"
name_format_none = ""
filename = "Oneshot"
assert (
utils.get_filename(
2023-01-15 16:34:51 +01:00
manga_name,
chapter_name,
chapter_vol,
chapter_num,
forcevol,
name_format,
name_format_none,
)
== filename
)
2022-05-11 14:22:57 +02:00
def test_get_filename_noname():
2023-01-15 16:34:51 +01:00
manga_name = "The test manga"
2022-05-11 14:22:57 +02:00
chapter_name = ""
chapter_vol = "1"
chapter_num = "1"
forcevol = False
name_format = "{default}"
name_format_none = ""
2022-05-11 14:22:57 +02:00
filename = "Ch. 1"
assert (
utils.get_filename(
2023-01-15 16:34:51 +01:00
manga_name,
chapter_name,
chapter_vol,
chapter_num,
forcevol,
name_format,
name_format_none,
)
== filename
)
def test_get_filename_custom_format():
2023-01-15 16:34:51 +01:00
manga_name = "The test manga"
chapter_name = "Test"
chapter_vol = "1"
chapter_num = "1"
forcevol = False
2023-01-15 16:34:51 +01:00
name_format = "{manga_title}-{chapter_name}-{chapter_num}-{chapter_vol}"
name_format_none = ""
2023-01-15 16:34:51 +01:00
filename = "The test manga-Test-1-1"
assert (
utils.get_filename(
2023-01-15 16:34:51 +01:00
manga_name,
chapter_name,
chapter_vol,
chapter_num,
forcevol,
name_format,
name_format_none,
)
== filename
)
def test_get_filename_custom_format_err():
2023-01-15 16:34:51 +01:00
manga_name = "The test manga"
chapter_name = "Test"
chapter_vol = "1"
chapter_num = "1"
forcevol = False
name_format = "{chapter_test}-{chapter_num}-{chapter_vol}"
name_format_none = ""
filename = "Ch. 1 - Test"
assert (
utils.get_filename(
2023-01-15 16:34:51 +01:00
manga_name,
chapter_name,
chapter_vol,
chapter_num,
forcevol,
name_format,
name_format_none,
)
== filename
)
def test_get_filename_custom_format_none():
2023-01-15 16:34:51 +01:00
manga_name = "The test manga"
chapter_name = ""
chapter_vol = "1"
chapter_num = ""
forcevol = False
name_format = "{chapter_name}-{chapter_num}-{chapter_vol}"
name_format_none = "ABC"
filename = "ABC-ABC-1"
assert (
utils.get_filename(
2023-01-15 16:34:51 +01:00
manga_name,
chapter_name,
chapter_vol,
chapter_num,
forcevol,
name_format,
name_format_none,
)
== filename
2022-05-11 14:22:57 +02:00
)