2015-03-14 19:55:42 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
# Allow direct execution
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import unittest
|
|
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
|
2021-01-26 11:20:20 +01:00
|
|
|
from youtube_dlc.postprocessor import MetadataFromFieldPP, MetadataFromTitlePP
|
|
|
|
|
|
|
|
|
|
|
|
class TestMetadataFromField(unittest.TestCase):
|
|
|
|
def test_format_to_regex(self):
|
|
|
|
pp = MetadataFromFieldPP(None, ['title:%(title)s - %(artist)s'])
|
|
|
|
self.assertEqual(pp._data[0]['regex'], r'(?P<title>[^\r\n]+)\ \-\ (?P<artist>[^\r\n]+)')
|
2015-03-14 19:55:42 +01:00
|
|
|
|
|
|
|
|
|
|
|
class TestMetadataFromTitle(unittest.TestCase):
|
|
|
|
def test_format_to_regex(self):
|
|
|
|
pp = MetadataFromTitlePP(None, '%(title)s - %(artist)s')
|
2021-01-26 11:20:20 +01:00
|
|
|
self.assertEqual(pp._titleregex, r'(?P<title>[^\r\n]+)\ \-\ (?P<artist>[^\r\n]+)')
|