summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAarni Koskela <akx@iki.fi>2021-04-28 10:33:40 +0300
committerAarni Koskela <akx@iki.fi>2021-04-28 10:38:33 +0300
commit3a700b5b8b53606fd98ef8294a56f9510f7290f8 (patch)
treeb434dd471169778995b7177a41b580935607155d /tests
parent5afe2b2f11dcdd6090c00231d342c2e9cd1bdaab (diff)
downloadbabel-3a700b5b8b53606fd98ef8294a56f9510f7290f8.tar.gz
Run locale identifiers through `os.path.basename()`
Diffstat (limited to 'tests')
-rw-r--r--tests/test_localedata.py30
1 files changed, 29 insertions, 1 deletions
diff --git a/tests/test_localedata.py b/tests/test_localedata.py
index 83cd669..9cb4282 100644
--- a/tests/test_localedata.py
+++ b/tests/test_localedata.py
@@ -11,11 +11,17 @@
# individuals. For the exact contribution history, see the revision
# history and logs, available at http://babel.edgewall.org/log/.
+import os
+import pickle
+import sys
+import tempfile
import unittest
import random
from operator import methodcaller
-from babel import localedata
+import pytest
+
+from babel import localedata, Locale, UnknownLocaleError
class MergeResolveTestCase(unittest.TestCase):
@@ -131,3 +137,25 @@ def test_locale_identifiers_cache(monkeypatch):
localedata.locale_identifiers.cache = None
assert localedata.locale_identifiers()
assert len(listdir_calls) == 2
+
+
+def test_locale_name_cleanup():
+ """
+ Test that locale identifiers are cleaned up to avoid directory traversal.
+ """
+ no_exist_name = os.path.join(tempfile.gettempdir(), "babel%d.dat" % random.randint(1, 99999))
+ with open(no_exist_name, "wb") as f:
+ pickle.dump({}, f)
+
+ try:
+ name = os.path.splitext(os.path.relpath(no_exist_name, localedata._dirname))[0]
+ except ValueError:
+ if sys.platform == "win32":
+ pytest.skip("unable to form relpath")
+ raise
+
+ assert not localedata.exists(name)
+ with pytest.raises(IOError):
+ localedata.load(name)
+ with pytest.raises(UnknownLocaleError):
+ Locale(name)