mirror of https://github.com/morpheus65535/bazarr
73 lines
1.7 KiB
Python
73 lines
1.7 KiB
Python
|
#!/usr/bin/env python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
# pylint: disable=no-self-use, pointless-statement, missing-docstring, invalid-name
|
||
|
|
||
|
import os
|
||
|
|
||
|
import pytest
|
||
|
|
||
|
from ..__main__ import main
|
||
|
|
||
|
__location__ = os.path.realpath(os.path.join(os.getcwd(), os.path.dirname(__file__)))
|
||
|
|
||
|
|
||
|
def test_main_no_args():
|
||
|
main([])
|
||
|
|
||
|
|
||
|
def test_main():
|
||
|
main(['Fear.and.Loathing.in.Las.Vegas.FRENCH.ENGLISH.720p.HDDVD.DTS.x264-ESiR.mkv'])
|
||
|
|
||
|
|
||
|
def test_main_unicode():
|
||
|
main(['[阿维达].Avida.2006.FRENCH.DVDRiP.XViD-PROD.avi'])
|
||
|
|
||
|
|
||
|
def test_main_forced_unicode():
|
||
|
main([u'Fear.and.Loathing.in.Las.Vegas.FRENCH.ENGLISH.720p.HDDVD.DTS.x264-ESiR.mkv'])
|
||
|
|
||
|
|
||
|
def test_main_verbose():
|
||
|
main(['Fear.and.Loathing.in.Las.Vegas.FRENCH.ENGLISH.720p.HDDVD.DTS.x264-ESiR.mkv', '--verbose'])
|
||
|
|
||
|
|
||
|
def test_main_yaml():
|
||
|
main(['Fear.and.Loathing.in.Las.Vegas.FRENCH.ENGLISH.720p.HDDVD.DTS.x264-ESiR.mkv', '--yaml'])
|
||
|
|
||
|
|
||
|
def test_main_json():
|
||
|
main(['Fear.and.Loathing.in.Las.Vegas.FRENCH.ENGLISH.720p.HDDVD.DTS.x264-ESiR.mkv', '--json'])
|
||
|
|
||
|
|
||
|
def test_main_show_property():
|
||
|
main(['Fear.and.Loathing.in.Las.Vegas.FRENCH.ENGLISH.720p.HDDVD.DTS.x264-ESiR.mkv', '-P', 'title'])
|
||
|
|
||
|
|
||
|
def test_main_advanced():
|
||
|
main(['Fear.and.Loathing.in.Las.Vegas.FRENCH.ENGLISH.720p.HDDVD.DTS.x264-ESiR.mkv', '-a'])
|
||
|
|
||
|
|
||
|
def test_main_input():
|
||
|
main(['--input', os.path.join(__location__, 'test-input-file.txt')])
|
||
|
|
||
|
|
||
|
def test_main_properties():
|
||
|
main(['-p'])
|
||
|
main(['-p', '--json'])
|
||
|
main(['-p', '--yaml'])
|
||
|
|
||
|
|
||
|
def test_main_values():
|
||
|
main(['-V'])
|
||
|
main(['-V', '--json'])
|
||
|
main(['-V', '--yaml'])
|
||
|
|
||
|
|
||
|
def test_main_help():
|
||
|
with pytest.raises(SystemExit):
|
||
|
main(['--help'])
|
||
|
|
||
|
|
||
|
def test_main_version():
|
||
|
main(['--version'])
|