diff options
Diffstat (limited to 'test/test_utils.py')
| -rw-r--r-- | test/test_utils.py | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/test/test_utils.py b/test/test_utils.py index e90caed29..3efbed29d 100644 --- a/test/test_utils.py +++ b/test/test_utils.py @@ -40,6 +40,7 @@ from youtube_dl.utils import (      parse_iso8601,      strip_jsonp,      uppercase_escape, +    limit_length,      escape_rfc3986,      escape_url,  ) @@ -288,6 +289,13 @@ class TestUtil(unittest.TestCase):          self.assertEqual(uppercase_escape('aä'), 'aä')          self.assertEqual(uppercase_escape('\\U0001d550'), '𝕐') +    def test_limit_length(self): +        self.assertEqual(limit_length(None, 12), None) +        self.assertEqual(limit_length('foo', 12), 'foo') +        self.assertTrue( +            limit_length('foo bar baz asd', 12).startswith('foo bar')) +        self.assertTrue('...' in limit_length('foo bar baz asd', 12)) +      def test_escape_rfc3986(self):          reserved = "!*'();:@&=+$,/?#[]"          unreserved = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_.~'  | 
