2018-09-17 08:27:00 +08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# pylint: disable=no-self-use, pointless-statement, missing-docstring, invalid-name, pointless-string-statement
|
2020-05-20 23:29:39 +08:00
|
|
|
import json
|
2018-09-17 08:27:00 +08:00
|
|
|
import os
|
2021-03-22 22:26:26 +08:00
|
|
|
from pathlib import Path
|
2018-09-17 08:27:00 +08:00
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
2020-05-20 23:29:39 +08:00
|
|
|
from ..api import guessit, properties, suggested_expected, GuessitException
|
2018-09-17 08:27:00 +08:00
|
|
|
|
|
|
|
__location__ = os.path.realpath(os.path.join(os.getcwd(), os.path.dirname(__file__)))
|
|
|
|
|
|
|
|
|
|
|
|
def test_default():
|
|
|
|
ret = guessit('Fear.and.Loathing.in.Las.Vegas.FRENCH.ENGLISH.720p.HDDVD.DTS.x264-ESiR.mkv')
|
|
|
|
assert ret and 'title' in ret
|
|
|
|
|
|
|
|
|
|
|
|
def test_forced_unicode():
|
2021-03-22 22:26:26 +08:00
|
|
|
ret = guessit('Fear.and.Loathing.in.Las.Vegas.FRENCH.ENGLISH.720p.HDDVD.DTS.x264-ESiR.mkv')
|
|
|
|
assert ret and 'title' in ret and isinstance(ret['title'], str)
|
2018-09-17 08:27:00 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_forced_binary():
|
|
|
|
ret = guessit(b'Fear.and.Loathing.in.Las.Vegas.FRENCH.ENGLISH.720p.HDDVD.DTS.x264-ESiR.mkv')
|
2021-03-22 22:26:26 +08:00
|
|
|
assert ret and 'title' in ret and isinstance(ret['title'], bytes)
|
2018-09-17 08:27:00 +08:00
|
|
|
|
|
|
|
|
2020-05-20 23:29:39 +08:00
|
|
|
def test_pathlike_object():
|
2021-03-22 22:26:26 +08:00
|
|
|
path = Path('Fear.and.Loathing.in.Las.Vegas.FRENCH.ENGLISH.720p.HDDVD.DTS.x264-ESiR.mkv')
|
|
|
|
ret = guessit(path)
|
|
|
|
assert ret and 'title' in ret
|
2020-05-20 23:29:39 +08:00
|
|
|
|
|
|
|
|
2018-09-17 08:27:00 +08:00
|
|
|
def test_unicode_japanese():
|
|
|
|
ret = guessit('[阿维达].Avida.2006.FRENCH.DVDRiP.XViD-PROD.avi')
|
|
|
|
assert ret and 'title' in ret
|
|
|
|
|
|
|
|
|
|
|
|
def test_unicode_japanese_options():
|
|
|
|
ret = guessit("[阿维达].Avida.2006.FRENCH.DVDRiP.XViD-PROD.avi", options={"expected_title": ["阿维达"]})
|
|
|
|
assert ret and 'title' in ret and ret['title'] == "阿维达"
|
|
|
|
|
|
|
|
|
|
|
|
def test_forced_unicode_japanese_options():
|
2021-03-22 22:26:26 +08:00
|
|
|
ret = guessit("[阿维达].Avida.2006.FRENCH.DVDRiP.XViD-PROD.avi", options={"expected_title": ["阿维达"]})
|
|
|
|
assert ret and 'title' in ret and ret['title'] == "阿维达"
|
2018-09-17 08:27:00 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_properties():
|
|
|
|
props = properties()
|
|
|
|
assert 'video_codec' in props.keys()
|
|
|
|
|
|
|
|
|
|
|
|
def test_exception():
|
|
|
|
with pytest.raises(GuessitException) as excinfo:
|
|
|
|
guessit(object())
|
|
|
|
assert "An internal error has occured in guessit" in str(excinfo.value)
|
|
|
|
assert "Guessit Exception Report" in str(excinfo.value)
|
|
|
|
assert "Please report at https://github.com/guessit-io/guessit/issues" in str(excinfo.value)
|
2020-05-20 23:29:39 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_suggested_expected():
|
|
|
|
with open(os.path.join(__location__, 'suggested.json'), 'r') as f:
|
|
|
|
content = json.load(f)
|
|
|
|
actual = suggested_expected(content['titles'])
|
|
|
|
assert actual == content['suggested']
|