about summary refs log tree commit diff
path: root/test/test_execution.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2015-03-24 16:39:46 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2015-03-24 16:39:46 +0100
commitf5e2efbbf0a4a1fa02df09a12ce9ec69970ab14c (patch)
tree3a209cce82563e41433b822f6152630347a35ad5 /test/test_execution.py
parentb0872c19ea6fb5dcc20d695d6faead4af42da364 (diff)
downloadyoutube-dl-f5e2efbbf0a4a1fa02df09a12ce9ec69970ab14c.tar.gz
youtube-dl-f5e2efbbf0a4a1fa02df09a12ce9ec69970ab14c.tar.xz
youtube-dl-f5e2efbbf0a4a1fa02df09a12ce9ec69970ab14c.zip
[options] Handle special characters in argv (Fixes #5157)
Diffstat (limited to 'test/test_execution.py')
-rw-r--r--test/test_execution.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/test_execution.py b/test/test_execution.py
index 60df187de..f31e51558 100644
--- a/test/test_execution.py
+++ b/test/test_execution.py
@@ -1,4 +1,6 @@
 #!/usr/bin/env python
+# coding: utf-8
+
 from __future__ import unicode_literals
 
 import unittest
@@ -27,5 +29,12 @@ class TestExecution(unittest.TestCase):
     def test_main_exec(self):
         subprocess.check_call([sys.executable, 'youtube_dl/__main__.py', '--version'], cwd=rootDir, stdout=_DEV_NULL)
 
+    def test_cmdline_umlauts(self):
+        p = subprocess.Popen(
+            [sys.executable, 'youtube_dl/__main__.py', 'รค', '--version'],
+            cwd=rootDir, stdout=_DEV_NULL, stderr=subprocess.PIPE)
+        _, stderr = p.communicate()
+        self.assertFalse(stderr)
+
 if __name__ == '__main__':
     unittest.main()