summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na92@gmail.com>2019-12-01 23:06:28 (GMT)
committerAbhilash Raj <maxking@users.noreply.github.com>2019-12-01 23:06:28 (GMT)
commit2fe4c48917c2d1b40cf063c6ed22ae2e71f4cb62 (patch)
tree9807bfc493099f3a1cf0c01d554ed82b74b05f15
parentfdafa1d0ed0a8930b52ee81e57c931cc4d5c2388 (diff)
downloadcpython-2fe4c48917c2d1b40cf063c6ed22ae2e71f4cb62.zip
cpython-2fe4c48917c2d1b40cf063c6ed22ae2e71f4cb62.tar.gz
cpython-2fe4c48917c2d1b40cf063c6ed22ae2e71f4cb62.tar.bz2
bpo-38449: Add URL delimiters test cases (#16729)
* bpo-38449: Add tricky test cases * bpo-38449: Reflect codereview
-rw-r--r--Lib/test/test_mimetypes.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/Lib/test/test_mimetypes.py b/Lib/test/test_mimetypes.py
index bfd5eee..a5a06b1 100644
--- a/Lib/test/test_mimetypes.py
+++ b/Lib/test/test_mimetypes.py
@@ -51,6 +51,21 @@ class MimeTypesTestCase(unittest.TestCase):
eq(self.db.guess_type('foo.xul', strict=False), ('text/xul', None))
eq(self.db.guess_extension('image/jpg', strict=False), '.jpg')
+ def test_filename_with_url_delimiters(self):
+ # bpo-38449: URL delimiters cases should be handled also.
+ # They would have different mime types if interpreted as URL as
+ # compared to when interpreted as filename because of the semicolon.
+ eq = self.assertEqual
+ gzip_expected = ('application/x-tar', 'gzip')
+ eq(self.db.guess_type(";1.tar.gz"), gzip_expected)
+ eq(self.db.guess_type("?1.tar.gz"), gzip_expected)
+ eq(self.db.guess_type("#1.tar.gz"), gzip_expected)
+ eq(self.db.guess_type("#1#.tar.gz"), gzip_expected)
+ eq(self.db.guess_type(";1#.tar.gz"), gzip_expected)
+ eq(self.db.guess_type(";&1=123;?.tar.gz"), gzip_expected)
+ eq(self.db.guess_type("?k1=v1&k2=v2.tar.gz"), gzip_expected)
+ eq(self.db.guess_type(r" \"\`;b&b&c |.tar.gz"), gzip_expected)
+
def test_guess_all_types(self):
eq = self.assertEqual
unless = self.assertTrue