2015-03-14 18:55:42 +00: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-02-24 18:45:56 +00:00
|
|
|
from yt_dlp.postprocessor import MetadataFromFieldPP, MetadataFromTitlePP
|
2021-01-26 10:20:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
class TestMetadataFromField(unittest.TestCase):
|
|
|
|
def test_format_to_regex(self):
|
|
|
|
pp = MetadataFromFieldPP(None, ['title:%(title)s - %(artist)s'])
|
2021-04-03 08:29:55 +00:00
|
|
|
self.assertEqual(pp._data[0]['regex'], r'(?P<title>.+)\ \-\ (?P<artist>.+)')
|
2015-03-14 18:55:42 +00:00
|
|
|
|
2021-04-21 05:42:04 +00:00
|
|
|
def test_field_to_outtmpl(self):
|
|
|
|
pp = MetadataFromFieldPP(None, ['title:%(title)s : %(artist)s'])
|
|
|
|
self.assertEqual(pp._data[0]['tmpl'], '%(title)s')
|
|
|
|
|
|
|
|
def test_in_out_seperation(self):
|
|
|
|
pp = MetadataFromFieldPP(None, ['%(title)s \\: %(artist)s:%(title)s : %(artist)s'])
|
|
|
|
self.assertEqual(pp._data[0]['in'], '%(title)s : %(artist)s')
|
|
|
|
self.assertEqual(pp._data[0]['out'], '%(title)s : %(artist)s')
|
|
|
|
|
2015-03-14 18:55:42 +00:00
|
|
|
|
|
|
|
class TestMetadataFromTitle(unittest.TestCase):
|
|
|
|
def test_format_to_regex(self):
|
|
|
|
pp = MetadataFromTitlePP(None, '%(title)s - %(artist)s')
|
2021-04-03 08:29:55 +00:00
|
|
|
self.assertEqual(pp._titleregex, r'(?P<title>.+)\ \-\ (?P<artist>.+)')
|