Browse Source

[test_utils] Add tests for prepend_extension

totalwebcasting
Sergey M․ 10 years ago
parent
commit
a4bcaad773
1 changed files with 9 additions and 0 deletions
  1. +9
    -0
      test/test_utils.py

+ 9
- 0
test/test_utils.py View File

@ -41,6 +41,7 @@ from youtube_dl.utils import (
sanitize_filename,
sanitize_path,
sanitize_url_path_consecutive_slashes,
prepend_extension,
shell_quote,
smuggle_url,
str_to_int,
@ -193,6 +194,14 @@ class TestUtil(unittest.TestCase):
sanitize_url_path_consecutive_slashes('http://hostname/abc//'),
'http://hostname/abc/')
def test_prepend_extension(self):
self.assertEqual(prepend_extension('abc.ext', 'temp'), 'abc.temp.ext')
self.assertEqual(prepend_extension('abc.ext', 'temp', 'ext'), 'abc.temp.ext')
self.assertEqual(prepend_extension('abc.unexpected_ext', 'temp', 'ext'), 'abc.unexpected_ext.temp')
self.assertEqual(prepend_extension('abc', 'temp'), 'abc.temp')
self.assertEqual(prepend_extension('.abc', 'temp'), '.abc.temp')
self.assertEqual(prepend_extension('.abc.ext', 'temp'), '.abc.temp.ext')
def test_ordered_set(self):
self.assertEqual(orderedSet([1, 1, 2, 3, 4, 4, 5, 6, 7, 3, 5]), [1, 2, 3, 4, 5, 6, 7])
self.assertEqual(orderedSet([]), [])


Loading…
Cancel
Save