1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-09-19 16:56:17 +02:00

Disable configparser interpolation to allow unescaped '%' in values

This commit is contained in:
Daniel Mach 2022-10-04 09:36:10 +02:00
parent a68f96fc7f
commit 5094099f08
2 changed files with 27 additions and 1 deletions

View File

@ -211,7 +211,7 @@ class OscConfigParser(configparser.ConfigParser):
"""
def __init__(self, defaults=None):
super().__init__(defaults or {})
super().__init__(defaults or {}, interpolation=None)
self._sections = ConfigLineOrder()
# XXX: unfortunately we have to override the _read() method from the ConfigParser()

View File

@ -0,0 +1,26 @@
import unittest
from osc.OscConfigParser import OscConfigParser
class TestOscConfigParser(unittest.TestCase):
def setUp(self):
self.parser = OscConfigParser()
self.parser.read_string("""
[general]
apiurl = http://localhost
[http://localhost]
credentials_mgr_class=
user=
pass=
""")
def test_disabled_interpolation(self):
# with interpolation on, this would raise
# ValueError: invalid interpolation syntax in '%' at position 0
self.parser.set("http://localhost", "pass", "%")
if __name__ == "__main__":
unittest.main()