1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-30 23:24:16 +01:00
svtplay-dl/lib/svtplay_dl/tests/filenamify.py

26 lines
762 B
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
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:
self.assertEqual(filenamify(inp), ref)