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