1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-12-03 16:44:17 +01:00
svtplay-dl/lib/svtplay_dl/tests/test_text.py

42 lines
1.2 KiB
Python
Raw Normal View History

2016-01-10 14:55:21 +01:00
#!/usr/bin/python
# ex:ts=4:sw=4:sts=4:et:fenc=utf-8
# The unittest framwork doesn't play nice with pylint:
# pylint: disable-msg=C0103
from __future__ import absolute_import
2019-08-25 00:40:39 +02:00
2016-01-10 14:55:21 +01:00
import unittest
2019-08-25 00:40:39 +02:00
2019-08-31 01:02:59 +02:00
from svtplay_dl.utils.parser import setup_defaults
from svtplay_dl.utils.text import exclude
from svtplay_dl.utils.text import filenamify
2016-01-10 14:55:21 +01:00
2018-01-30 20:11:37 +01:00
2016-01-10 14:55:21 +01:00
class filenamifyTest(unittest.TestCase):
test_values = [
["foo", "foo"],
["foo bar", "foo.bar"],
["FOO BAR", "foo.bar"],
2019-08-25 00:27:31 +02:00
["foo-bar baz", "foo-bar.baz"],
['Jason "Timbuktu" Diakité', "jason.timbuktu.diakite"],
["Matlagning del 1 av 10 - R\xe4ksm\xf6rg\xe5s | SVT Play", "matlagning.del.1.av.10-raksmorgas.svt.play"],
["$FOOBAR", "foobar"],
2016-01-10 14:55:21 +01:00
]
def test(self):
for inp, ref in self.test_values:
2019-08-31 01:02:59 +02:00
assert filenamify(inp) == ref
def test_exclude_true(self):
config = setup_defaults()
config.set("exclude", "hej")
assert exclude(config, "hejsanhoppsan")
def test_exclude_false(self):
config = setup_defaults()
config.set("exclude", "hej")
assert not exclude(config, "hoppsan")
def test_exlude_default(self):
config = setup_defaults()
assert not exclude(config, "hoppsan")