mirror of
https://github.com/openSUSE/osc.git
synced 2025-09-07 21:58:41 +02:00
Disable configparser interpolation to allow unescaped '%' in values
This commit is contained in:
26
tests/test_config_parser.py
Normal file
26
tests/test_config_parser.py
Normal 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()
|
Reference in New Issue
Block a user