mirror of
https://github.com/python/cpython.git
synced 2025-12-08 06:10:17 +00:00
gh-136065: Fix quadratic complexity in os.path.expandvars() (GH-134952)
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
This commit is contained in:
parent
81cec22a9b
commit
f029e8db62
5 changed files with 96 additions and 116 deletions
|
|
@ -9,9 +9,9 @@
|
|||
import sys
|
||||
import unittest
|
||||
import warnings
|
||||
from test.support import (
|
||||
is_apple, os_helper, warnings_helper
|
||||
)
|
||||
from test import support
|
||||
from test.support import os_helper
|
||||
from test.support import warnings_helper
|
||||
from test.support.script_helper import assert_python_ok
|
||||
from test.support.os_helper import FakePath
|
||||
|
||||
|
|
@ -462,6 +462,19 @@ def check(value, expected):
|
|||
os.fsencode('$bar%s bar' % nonascii))
|
||||
check(b'$spam}bar', os.fsencode('%s}bar' % nonascii))
|
||||
|
||||
@support.requires_resource('cpu')
|
||||
def test_expandvars_large(self):
|
||||
expandvars = self.pathmodule.expandvars
|
||||
with os_helper.EnvironmentVarGuard() as env:
|
||||
env.clear()
|
||||
env["A"] = "B"
|
||||
n = 100_000
|
||||
self.assertEqual(expandvars('$A'*n), 'B'*n)
|
||||
self.assertEqual(expandvars('${A}'*n), 'B'*n)
|
||||
self.assertEqual(expandvars('$A!'*n), 'B!'*n)
|
||||
self.assertEqual(expandvars('${A}A'*n), 'BA'*n)
|
||||
self.assertEqual(expandvars('${'*10*n), '${'*10*n)
|
||||
|
||||
def test_abspath(self):
|
||||
self.assertIn("foo", self.pathmodule.abspath("foo"))
|
||||
with warnings.catch_warnings():
|
||||
|
|
@ -519,7 +532,7 @@ def test_nonascii_abspath(self):
|
|||
# directory (when the bytes name is used).
|
||||
and sys.platform not in {
|
||||
"win32", "emscripten", "wasi"
|
||||
} and not is_apple
|
||||
} and not support.is_apple
|
||||
):
|
||||
name = os_helper.TESTFN_UNDECODABLE
|
||||
elif os_helper.TESTFN_NONASCII:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue