2021-06-03 09:43:42 +00:00
|
|
|
#!/usr/bin/env python3
|
2015-03-14 18:55:42 +00:00
|
|
|
|
|
|
|
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-06-03 18:00:38 +00:00
|
|
|
from yt_dlp import YoutubeDL
|
|
|
|
from yt_dlp.compat import compat_shlex_quote
|
2021-05-28 20:09:07 +00:00
|
|
|
from yt_dlp.postprocessor import (
|
2021-08-09 12:10:24 +00:00
|
|
|
ExecPP,
|
2021-05-28 20:09:07 +00:00
|
|
|
FFmpegThumbnailsConvertorPP,
|
|
|
|
MetadataFromFieldPP,
|
2021-08-09 19:52:55 +00:00
|
|
|
MetadataParserPP,
|
2021-05-28 20:09:07 +00:00
|
|
|
)
|
2021-01-26 10:20:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
class TestMetadataFromField(unittest.TestCase):
|
2015-03-14 18:55:42 +00:00
|
|
|
|
|
|
|
def test_format_to_regex(self):
|
2021-08-09 19:52:55 +00:00
|
|
|
self.assertEqual(
|
|
|
|
MetadataParserPP.format_to_regex('%(title)s - %(artist)s'),
|
|
|
|
r'(?P<title>.+)\ \-\ (?P<artist>.+)')
|
|
|
|
self.assertEqual(MetadataParserPP.format_to_regex(r'(?P<x>.+)'), r'(?P<x>.+)')
|
|
|
|
|
|
|
|
def test_field_to_template(self):
|
|
|
|
self.assertEqual(MetadataParserPP.field_to_template('title'), '%(title)s')
|
|
|
|
self.assertEqual(MetadataParserPP.field_to_template('1'), '1')
|
|
|
|
self.assertEqual(MetadataParserPP.field_to_template('foo bar'), 'foo bar')
|
|
|
|
self.assertEqual(MetadataParserPP.field_to_template(' literal'), ' literal')
|
|
|
|
|
|
|
|
def test_metadatafromfield(self):
|
|
|
|
self.assertEqual(
|
|
|
|
MetadataFromFieldPP.to_action('%(title)s \\: %(artist)s:%(title)s : %(artist)s'),
|
|
|
|
(MetadataParserPP.Actions.INTERPRET, '%(title)s : %(artist)s', '%(title)s : %(artist)s'))
|
2021-05-28 20:09:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
class TestConvertThumbnail(unittest.TestCase):
|
|
|
|
def test_escaping(self):
|
|
|
|
pp = FFmpegThumbnailsConvertorPP()
|
|
|
|
if not pp.available:
|
|
|
|
print('Skipping: ffmpeg not found')
|
|
|
|
return
|
|
|
|
|
|
|
|
file = 'test/testdata/thumbnails/foo %d bar/foo_%d.{}'
|
|
|
|
tests = (('webp', 'png'), ('png', 'jpg'))
|
|
|
|
|
|
|
|
for inp, out in tests:
|
|
|
|
out_file = file.format(out)
|
|
|
|
if os.path.exists(out_file):
|
|
|
|
os.remove(out_file)
|
|
|
|
pp.convert_thumbnail(file.format(inp), out)
|
|
|
|
assert os.path.exists(out_file)
|
|
|
|
|
|
|
|
for _, out in tests:
|
|
|
|
os.remove(file.format(out))
|
2021-06-03 18:00:38 +00:00
|
|
|
|
|
|
|
|
2021-08-09 12:10:24 +00:00
|
|
|
class TestExec(unittest.TestCase):
|
2021-06-03 18:00:38 +00:00
|
|
|
def test_parse_cmd(self):
|
2021-08-09 12:10:24 +00:00
|
|
|
pp = ExecPP(YoutubeDL(), '')
|
2021-06-03 18:00:38 +00:00
|
|
|
info = {'filepath': 'file name'}
|
2021-08-09 12:10:24 +00:00
|
|
|
cmd = 'echo %s' % compat_shlex_quote(info['filepath'])
|
2021-06-03 18:00:38 +00:00
|
|
|
|
2021-08-09 12:10:24 +00:00
|
|
|
self.assertEqual(pp.parse_cmd('echo', info), cmd)
|
|
|
|
self.assertEqual(pp.parse_cmd('echo {}', info), cmd)
|
|
|
|
self.assertEqual(pp.parse_cmd('echo %(filepath)q', info), cmd)
|