Brian Curtin | 9a27b0c | 2010-07-26 00:27:10 +0000 | [diff] [blame] | 1 | import collections |
Alexandre Vassalotti | 1d1eaa4 | 2008-05-14 22:59:42 +0000 | [diff] [blame] | 2 | import configparser |
Guido van Rossum | 34d1928 | 2007-08-09 01:03:29 +0000 | [diff] [blame] | 3 | import io |
Brian Curtin | 9a27b0c | 2010-07-26 00:27:10 +0000 | [diff] [blame] | 4 | import os |
Łukasz Langa | 535c077 | 2010-12-04 13:48:13 +0000 | [diff] [blame] | 5 | import sys |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 6 | import textwrap |
Łukasz Langa | 535c077 | 2010-12-04 13:48:13 +0000 | [diff] [blame] | 7 | import unittest |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 8 | import warnings |
Fred Drake | 8ef6767 | 2000-09-27 22:45:25 +0000 | [diff] [blame] | 9 | |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 10 | from test import support |
Fred Drake | 3d5f7e8 | 2000-12-04 16:30:40 +0000 | [diff] [blame] | 11 | |
Raymond Hettinger | f80680d | 2008-02-06 00:07:11 +0000 | [diff] [blame] | 12 | class SortedDict(collections.UserDict): |
Fred Drake | 03c44a3 | 2010-02-19 06:08:41 +0000 | [diff] [blame] | 13 | |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 14 | def items(self): |
Guido van Rossum | cc2b016 | 2007-02-11 06:12:03 +0000 | [diff] [blame] | 15 | return sorted(self.data.items()) |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 16 | |
| 17 | def keys(self): |
Guido van Rossum | cc2b016 | 2007-02-11 06:12:03 +0000 | [diff] [blame] | 18 | return sorted(self.data.keys()) |
Thomas Wouters | 9fe394c | 2007-02-05 01:24:16 +0000 | [diff] [blame] | 19 | |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 20 | def values(self): |
Guido van Rossum | cc2b016 | 2007-02-11 06:12:03 +0000 | [diff] [blame] | 21 | return [i[1] for i in self.items()] |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 22 | |
Łukasz Langa | e698cd5 | 2011-04-28 10:58:57 +0200 | [diff] [blame] | 23 | def iteritems(self): |
| 24 | return iter(self.items()) |
| 25 | |
| 26 | def iterkeys(self): |
| 27 | return iter(self.keys()) |
| 28 | |
| 29 | def itervalues(self): |
| 30 | return iter(self.values()) |
| 31 | |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 32 | __iter__ = iterkeys |
Fred Drake | 3d5f7e8 | 2000-12-04 16:30:40 +0000 | [diff] [blame] | 33 | |
Fred Drake | 03c44a3 | 2010-02-19 06:08:41 +0000 | [diff] [blame] | 34 | |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 35 | class CfgParserTestCaseClass(unittest.TestCase): |
Fred Drake | 03c44a3 | 2010-02-19 06:08:41 +0000 | [diff] [blame] | 36 | allow_no_value = False |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 37 | delimiters = ('=', ':') |
| 38 | comment_prefixes = (';', '#') |
Łukasz Langa | b25a791 | 2010-12-17 01:32:29 +0000 | [diff] [blame] | 39 | inline_comment_prefixes = (';', '#') |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 40 | empty_lines_in_values = True |
| 41 | dict_type = configparser._default_dict |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 42 | strict = False |
Łukasz Langa | c264c09 | 2010-11-20 16:15:37 +0000 | [diff] [blame] | 43 | default_section = configparser.DEFAULTSECT |
Łukasz Langa | b6a6f5f | 2010-12-03 16:28:00 +0000 | [diff] [blame] | 44 | interpolation = configparser._UNSET |
Fred Drake | 03c44a3 | 2010-02-19 06:08:41 +0000 | [diff] [blame] | 45 | |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 46 | def newconfig(self, defaults=None): |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 47 | arguments = dict( |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 48 | defaults=defaults, |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 49 | allow_no_value=self.allow_no_value, |
| 50 | delimiters=self.delimiters, |
| 51 | comment_prefixes=self.comment_prefixes, |
Łukasz Langa | b25a791 | 2010-12-17 01:32:29 +0000 | [diff] [blame] | 52 | inline_comment_prefixes=self.inline_comment_prefixes, |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 53 | empty_lines_in_values=self.empty_lines_in_values, |
| 54 | dict_type=self.dict_type, |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 55 | strict=self.strict, |
Łukasz Langa | c264c09 | 2010-11-20 16:15:37 +0000 | [diff] [blame] | 56 | default_section=self.default_section, |
Łukasz Langa | b6a6f5f | 2010-12-03 16:28:00 +0000 | [diff] [blame] | 57 | interpolation=self.interpolation, |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 58 | ) |
Łukasz Langa | 7f64c8a | 2010-12-16 01:16:22 +0000 | [diff] [blame] | 59 | instance = self.config_class(**arguments) |
Łukasz Langa | b6a6f5f | 2010-12-03 16:28:00 +0000 | [diff] [blame] | 60 | return instance |
Fred Drake | 8ef6767 | 2000-09-27 22:45:25 +0000 | [diff] [blame] | 61 | |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 62 | def fromstring(self, string, defaults=None): |
| 63 | cf = self.newconfig(defaults) |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 64 | cf.read_string(string) |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 65 | return cf |
Fred Drake | 8ef6767 | 2000-09-27 22:45:25 +0000 | [diff] [blame] | 66 | |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 67 | class BasicTestCase(CfgParserTestCaseClass): |
| 68 | |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 69 | def basic_test(self, cf): |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 70 | E = ['Commented Bar', |
| 71 | 'Foo Bar', |
| 72 | 'Internationalized Stuff', |
| 73 | 'Long Line', |
| 74 | 'Section\\with$weird%characters[\t', |
| 75 | 'Spaces', |
| 76 | 'Spacey Bar', |
| 77 | 'Spacey Bar From The Beginning', |
Fred Drake | cc645b9 | 2010-09-04 04:35:34 +0000 | [diff] [blame] | 78 | 'Types', |
Fred Drake | 03c44a3 | 2010-02-19 06:08:41 +0000 | [diff] [blame] | 79 | ] |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 80 | |
Fred Drake | 03c44a3 | 2010-02-19 06:08:41 +0000 | [diff] [blame] | 81 | if self.allow_no_value: |
Fred Drake | cc645b9 | 2010-09-04 04:35:34 +0000 | [diff] [blame] | 82 | E.append('NoValue') |
Fred Drake | 03c44a3 | 2010-02-19 06:08:41 +0000 | [diff] [blame] | 83 | E.sort() |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 84 | F = [('baz', 'qwe'), ('foo', 'bar3')] |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 85 | |
| 86 | # API access |
| 87 | L = cf.sections() |
| 88 | L.sort() |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 89 | eq = self.assertEqual |
Fred Drake | 03c44a3 | 2010-02-19 06:08:41 +0000 | [diff] [blame] | 90 | eq(L, E) |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 91 | L = cf.items('Spacey Bar From The Beginning') |
| 92 | L.sort() |
| 93 | eq(L, F) |
Fred Drake | 8ef6767 | 2000-09-27 22:45:25 +0000 | [diff] [blame] | 94 | |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 95 | # mapping access |
| 96 | L = [section for section in cf] |
| 97 | L.sort() |
Łukasz Langa | c264c09 | 2010-11-20 16:15:37 +0000 | [diff] [blame] | 98 | E.append(self.default_section) |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 99 | E.sort() |
| 100 | eq(L, E) |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 101 | L = cf['Spacey Bar From The Beginning'].items() |
| 102 | L = sorted(list(L)) |
| 103 | eq(L, F) |
| 104 | L = cf.items() |
| 105 | L = sorted(list(L)) |
| 106 | self.assertEqual(len(L), len(E)) |
| 107 | for name, section in L: |
| 108 | eq(name, section.name) |
| 109 | eq(cf.defaults(), cf[self.default_section]) |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 110 | |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 111 | # The use of spaces in the section names serves as a |
| 112 | # regression test for SourceForge bug #583248: |
| 113 | # http://www.python.org/sf/583248 |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 114 | |
| 115 | # API access |
| 116 | eq(cf.get('Foo Bar', 'foo'), 'bar1') |
| 117 | eq(cf.get('Spacey Bar', 'foo'), 'bar2') |
| 118 | eq(cf.get('Spacey Bar From The Beginning', 'foo'), 'bar3') |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 119 | eq(cf.get('Spacey Bar From The Beginning', 'baz'), 'qwe') |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 120 | eq(cf.get('Commented Bar', 'foo'), 'bar4') |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 121 | eq(cf.get('Commented Bar', 'baz'), 'qwe') |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 122 | eq(cf.get('Spaces', 'key with spaces'), 'value') |
| 123 | eq(cf.get('Spaces', 'another with spaces'), 'splat!') |
Fred Drake | cc645b9 | 2010-09-04 04:35:34 +0000 | [diff] [blame] | 124 | eq(cf.getint('Types', 'int'), 42) |
| 125 | eq(cf.get('Types', 'int'), "42") |
| 126 | self.assertAlmostEqual(cf.getfloat('Types', 'float'), 0.44) |
| 127 | eq(cf.get('Types', 'float'), "0.44") |
| 128 | eq(cf.getboolean('Types', 'boolean'), False) |
Łukasz Langa | 2cf9ddb | 2010-12-04 12:46:01 +0000 | [diff] [blame] | 129 | eq(cf.get('Types', '123'), 'strange but acceptable') |
Fred Drake | 03c44a3 | 2010-02-19 06:08:41 +0000 | [diff] [blame] | 130 | if self.allow_no_value: |
| 131 | eq(cf.get('NoValue', 'option-without-value'), None) |
Fred Drake | 3d5f7e8 | 2000-12-04 16:30:40 +0000 | [diff] [blame] | 132 | |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 133 | # test vars= and fallback= |
| 134 | eq(cf.get('Foo Bar', 'foo', fallback='baz'), 'bar1') |
Fred Drake | cc645b9 | 2010-09-04 04:35:34 +0000 | [diff] [blame] | 135 | eq(cf.get('Foo Bar', 'foo', vars={'foo': 'baz'}), 'baz') |
| 136 | with self.assertRaises(configparser.NoSectionError): |
| 137 | cf.get('No Such Foo Bar', 'foo') |
| 138 | with self.assertRaises(configparser.NoOptionError): |
| 139 | cf.get('Foo Bar', 'no-such-foo') |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 140 | eq(cf.get('No Such Foo Bar', 'foo', fallback='baz'), 'baz') |
| 141 | eq(cf.get('Foo Bar', 'no-such-foo', fallback='baz'), 'baz') |
| 142 | eq(cf.get('Spacey Bar', 'foo', fallback=None), 'bar2') |
| 143 | eq(cf.get('No Such Spacey Bar', 'foo', fallback=None), None) |
| 144 | eq(cf.getint('Types', 'int', fallback=18), 42) |
| 145 | eq(cf.getint('Types', 'no-such-int', fallback=18), 18) |
| 146 | eq(cf.getint('Types', 'no-such-int', fallback="18"), "18") # sic! |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 147 | with self.assertRaises(configparser.NoOptionError): |
| 148 | cf.getint('Types', 'no-such-int') |
Fred Drake | cc645b9 | 2010-09-04 04:35:34 +0000 | [diff] [blame] | 149 | self.assertAlmostEqual(cf.getfloat('Types', 'float', |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 150 | fallback=0.0), 0.44) |
Fred Drake | cc645b9 | 2010-09-04 04:35:34 +0000 | [diff] [blame] | 151 | self.assertAlmostEqual(cf.getfloat('Types', 'no-such-float', |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 152 | fallback=0.0), 0.0) |
| 153 | eq(cf.getfloat('Types', 'no-such-float', fallback="0.0"), "0.0") # sic! |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 154 | with self.assertRaises(configparser.NoOptionError): |
| 155 | cf.getfloat('Types', 'no-such-float') |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 156 | eq(cf.getboolean('Types', 'boolean', fallback=True), False) |
| 157 | eq(cf.getboolean('Types', 'no-such-boolean', fallback="yes"), |
Fred Drake | cc645b9 | 2010-09-04 04:35:34 +0000 | [diff] [blame] | 158 | "yes") # sic! |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 159 | eq(cf.getboolean('Types', 'no-such-boolean', fallback=True), True) |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 160 | with self.assertRaises(configparser.NoOptionError): |
| 161 | cf.getboolean('Types', 'no-such-boolean') |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 162 | eq(cf.getboolean('No Such Types', 'boolean', fallback=True), True) |
Fred Drake | cc645b9 | 2010-09-04 04:35:34 +0000 | [diff] [blame] | 163 | if self.allow_no_value: |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 164 | eq(cf.get('NoValue', 'option-without-value', fallback=False), None) |
Fred Drake | cc645b9 | 2010-09-04 04:35:34 +0000 | [diff] [blame] | 165 | eq(cf.get('NoValue', 'no-such-option-without-value', |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 166 | fallback=False), False) |
Fred Drake | cc645b9 | 2010-09-04 04:35:34 +0000 | [diff] [blame] | 167 | |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 168 | # mapping access |
| 169 | eq(cf['Foo Bar']['foo'], 'bar1') |
| 170 | eq(cf['Spacey Bar']['foo'], 'bar2') |
Łukasz Langa | a73dc9d | 2010-11-21 13:56:42 +0000 | [diff] [blame] | 171 | section = cf['Spacey Bar From The Beginning'] |
| 172 | eq(section.name, 'Spacey Bar From The Beginning') |
| 173 | self.assertIs(section.parser, cf) |
| 174 | with self.assertRaises(AttributeError): |
| 175 | section.name = 'Name is read-only' |
| 176 | with self.assertRaises(AttributeError): |
| 177 | section.parser = 'Parser is read-only' |
| 178 | eq(section['foo'], 'bar3') |
| 179 | eq(section['baz'], 'qwe') |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 180 | eq(cf['Commented Bar']['foo'], 'bar4') |
| 181 | eq(cf['Commented Bar']['baz'], 'qwe') |
| 182 | eq(cf['Spaces']['key with spaces'], 'value') |
| 183 | eq(cf['Spaces']['another with spaces'], 'splat!') |
| 184 | eq(cf['Long Line']['foo'], |
| 185 | 'this line is much, much longer than my editor\nlikes it.') |
| 186 | if self.allow_no_value: |
| 187 | eq(cf['NoValue']['option-without-value'], None) |
Łukasz Langa | 2f0fd0f | 2010-12-04 17:48:18 +0000 | [diff] [blame] | 188 | # test vars= and fallback= |
| 189 | eq(cf['Foo Bar'].get('foo', 'baz'), 'bar1') |
| 190 | eq(cf['Foo Bar'].get('foo', fallback='baz'), 'bar1') |
| 191 | eq(cf['Foo Bar'].get('foo', vars={'foo': 'baz'}), 'baz') |
| 192 | with self.assertRaises(KeyError): |
| 193 | cf['No Such Foo Bar']['foo'] |
| 194 | with self.assertRaises(KeyError): |
| 195 | cf['Foo Bar']['no-such-foo'] |
| 196 | with self.assertRaises(KeyError): |
| 197 | cf['No Such Foo Bar'].get('foo', fallback='baz') |
| 198 | eq(cf['Foo Bar'].get('no-such-foo', 'baz'), 'baz') |
| 199 | eq(cf['Foo Bar'].get('no-such-foo', fallback='baz'), 'baz') |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 200 | eq(cf['Foo Bar'].get('no-such-foo'), None) |
Łukasz Langa | 2f0fd0f | 2010-12-04 17:48:18 +0000 | [diff] [blame] | 201 | eq(cf['Spacey Bar'].get('foo', None), 'bar2') |
| 202 | eq(cf['Spacey Bar'].get('foo', fallback=None), 'bar2') |
| 203 | with self.assertRaises(KeyError): |
| 204 | cf['No Such Spacey Bar'].get('foo', None) |
| 205 | eq(cf['Types'].getint('int', 18), 42) |
| 206 | eq(cf['Types'].getint('int', fallback=18), 42) |
| 207 | eq(cf['Types'].getint('no-such-int', 18), 18) |
| 208 | eq(cf['Types'].getint('no-such-int', fallback=18), 18) |
| 209 | eq(cf['Types'].getint('no-such-int', "18"), "18") # sic! |
| 210 | eq(cf['Types'].getint('no-such-int', fallback="18"), "18") # sic! |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 211 | eq(cf['Types'].getint('no-such-int'), None) |
Łukasz Langa | 2f0fd0f | 2010-12-04 17:48:18 +0000 | [diff] [blame] | 212 | self.assertAlmostEqual(cf['Types'].getfloat('float', 0.0), 0.44) |
| 213 | self.assertAlmostEqual(cf['Types'].getfloat('float', |
| 214 | fallback=0.0), 0.44) |
| 215 | self.assertAlmostEqual(cf['Types'].getfloat('no-such-float', 0.0), 0.0) |
| 216 | self.assertAlmostEqual(cf['Types'].getfloat('no-such-float', |
| 217 | fallback=0.0), 0.0) |
| 218 | eq(cf['Types'].getfloat('no-such-float', "0.0"), "0.0") # sic! |
| 219 | eq(cf['Types'].getfloat('no-such-float', fallback="0.0"), "0.0") # sic! |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 220 | eq(cf['Types'].getfloat('no-such-float'), None) |
Łukasz Langa | 2f0fd0f | 2010-12-04 17:48:18 +0000 | [diff] [blame] | 221 | eq(cf['Types'].getboolean('boolean', True), False) |
| 222 | eq(cf['Types'].getboolean('boolean', fallback=True), False) |
| 223 | eq(cf['Types'].getboolean('no-such-boolean', "yes"), "yes") # sic! |
| 224 | eq(cf['Types'].getboolean('no-such-boolean', fallback="yes"), |
| 225 | "yes") # sic! |
| 226 | eq(cf['Types'].getboolean('no-such-boolean', True), True) |
| 227 | eq(cf['Types'].getboolean('no-such-boolean', fallback=True), True) |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 228 | eq(cf['Types'].getboolean('no-such-boolean'), None) |
Łukasz Langa | 2f0fd0f | 2010-12-04 17:48:18 +0000 | [diff] [blame] | 229 | if self.allow_no_value: |
| 230 | eq(cf['NoValue'].get('option-without-value', False), None) |
| 231 | eq(cf['NoValue'].get('option-without-value', fallback=False), None) |
| 232 | eq(cf['NoValue'].get('no-such-option-without-value', False), False) |
| 233 | eq(cf['NoValue'].get('no-such-option-without-value', |
| 234 | fallback=False), False) |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 235 | |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 236 | # Make sure the right things happen for remove_section() and |
| 237 | # remove_option(); added to include check for SourceForge bug #123324. |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 238 | |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 239 | cf[self.default_section]['this_value'] = '1' |
| 240 | cf[self.default_section]['that_value'] = '2' |
| 241 | |
| 242 | # API access |
| 243 | self.assertTrue(cf.remove_section('Spaces')) |
| 244 | self.assertFalse(cf.has_option('Spaces', 'key with spaces')) |
| 245 | self.assertFalse(cf.remove_section('Spaces')) |
| 246 | self.assertFalse(cf.remove_section(self.default_section)) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 247 | self.assertTrue(cf.remove_option('Foo Bar', 'foo'), |
Mark Dickinson | 934896d | 2009-02-21 20:59:32 +0000 | [diff] [blame] | 248 | "remove_option() failed to report existence of option") |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 249 | self.assertFalse(cf.has_option('Foo Bar', 'foo'), |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 250 | "remove_option() failed to remove option") |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 251 | self.assertFalse(cf.remove_option('Foo Bar', 'foo'), |
Mark Dickinson | 934896d | 2009-02-21 20:59:32 +0000 | [diff] [blame] | 252 | "remove_option() failed to report non-existence of option" |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 253 | " that was removed") |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 254 | self.assertTrue(cf.has_option('Foo Bar', 'this_value')) |
| 255 | self.assertFalse(cf.remove_option('Foo Bar', 'this_value')) |
| 256 | self.assertTrue(cf.remove_option(self.default_section, 'this_value')) |
| 257 | self.assertFalse(cf.has_option('Foo Bar', 'this_value')) |
| 258 | self.assertFalse(cf.remove_option(self.default_section, 'this_value')) |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 259 | |
Michael Foord | bd6c079 | 2010-07-25 23:09:25 +0000 | [diff] [blame] | 260 | with self.assertRaises(configparser.NoSectionError) as cm: |
| 261 | cf.remove_option('No Such Section', 'foo') |
| 262 | self.assertEqual(cm.exception.args, ('No Such Section',)) |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 263 | |
| 264 | eq(cf.get('Long Line', 'foo'), |
Andrew M. Kuchling | 1bf7117 | 2002-03-08 18:10:12 +0000 | [diff] [blame] | 265 | 'this line is much, much longer than my editor\nlikes it.') |
Fred Drake | 3d5f7e8 | 2000-12-04 16:30:40 +0000 | [diff] [blame] | 266 | |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 267 | # mapping access |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 268 | del cf['Types'] |
| 269 | self.assertFalse('Types' in cf) |
| 270 | with self.assertRaises(KeyError): |
| 271 | del cf['Types'] |
| 272 | with self.assertRaises(ValueError): |
| 273 | del cf[self.default_section] |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 274 | del cf['Spacey Bar']['foo'] |
| 275 | self.assertFalse('foo' in cf['Spacey Bar']) |
| 276 | with self.assertRaises(KeyError): |
| 277 | del cf['Spacey Bar']['foo'] |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 278 | self.assertTrue('that_value' in cf['Spacey Bar']) |
| 279 | with self.assertRaises(KeyError): |
| 280 | del cf['Spacey Bar']['that_value'] |
| 281 | del cf[self.default_section]['that_value'] |
| 282 | self.assertFalse('that_value' in cf['Spacey Bar']) |
| 283 | with self.assertRaises(KeyError): |
| 284 | del cf[self.default_section]['that_value'] |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 285 | with self.assertRaises(KeyError): |
| 286 | del cf['No Such Section']['foo'] |
| 287 | |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 288 | # Don't add new asserts below in this method as most of the options |
| 289 | # and sections are now removed. |
| 290 | |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 291 | def test_basic(self): |
| 292 | config_string = """\ |
| 293 | [Foo Bar] |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 294 | foo{0[0]}bar1 |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 295 | [Spacey Bar] |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 296 | foo {0[0]} bar2 |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 297 | [Spacey Bar From The Beginning] |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 298 | foo {0[0]} bar3 |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 299 | baz {0[0]} qwe |
| 300 | [Commented Bar] |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 301 | foo{0[1]} bar4 {1[1]} comment |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 302 | baz{0[0]}qwe {1[0]}another one |
| 303 | [Long Line] |
| 304 | foo{0[1]} this line is much, much longer than my editor |
| 305 | likes it. |
| 306 | [Section\\with$weird%characters[\t] |
| 307 | [Internationalized Stuff] |
| 308 | foo[bg]{0[1]} Bulgarian |
| 309 | foo{0[0]}Default |
| 310 | foo[en]{0[0]}English |
| 311 | foo[de]{0[0]}Deutsch |
| 312 | [Spaces] |
| 313 | key with spaces {0[1]} value |
| 314 | another with spaces {0[0]} splat! |
Fred Drake | cc645b9 | 2010-09-04 04:35:34 +0000 | [diff] [blame] | 315 | [Types] |
| 316 | int {0[1]} 42 |
| 317 | float {0[0]} 0.44 |
| 318 | boolean {0[0]} NO |
Łukasz Langa | 2cf9ddb | 2010-12-04 12:46:01 +0000 | [diff] [blame] | 319 | 123 {0[1]} strange but acceptable |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 320 | """.format(self.delimiters, self.comment_prefixes) |
| 321 | if self.allow_no_value: |
| 322 | config_string += ( |
| 323 | "[NoValue]\n" |
| 324 | "option-without-value\n" |
| 325 | ) |
| 326 | cf = self.fromstring(config_string) |
| 327 | self.basic_test(cf) |
| 328 | if self.strict: |
| 329 | with self.assertRaises(configparser.DuplicateOptionError): |
| 330 | cf.read_string(textwrap.dedent("""\ |
| 331 | [Duplicate Options Here] |
| 332 | option {0[0]} with a value |
| 333 | option {0[1]} with another value |
| 334 | """.format(self.delimiters))) |
| 335 | with self.assertRaises(configparser.DuplicateSectionError): |
| 336 | cf.read_string(textwrap.dedent("""\ |
| 337 | [And Now For Something] |
| 338 | completely different {0[0]} True |
| 339 | [And Now For Something] |
| 340 | the larch {0[1]} 1 |
| 341 | """.format(self.delimiters))) |
| 342 | else: |
| 343 | cf.read_string(textwrap.dedent("""\ |
| 344 | [Duplicate Options Here] |
| 345 | option {0[0]} with a value |
| 346 | option {0[1]} with another value |
| 347 | """.format(self.delimiters))) |
| 348 | |
| 349 | cf.read_string(textwrap.dedent("""\ |
| 350 | [And Now For Something] |
| 351 | completely different {0[0]} True |
| 352 | [And Now For Something] |
| 353 | the larch {0[1]} 1 |
| 354 | """.format(self.delimiters))) |
| 355 | |
| 356 | def test_basic_from_dict(self): |
| 357 | config = { |
| 358 | "Foo Bar": { |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 359 | "foo": "bar1", |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 360 | }, |
| 361 | "Spacey Bar": { |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 362 | "foo": "bar2", |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 363 | }, |
| 364 | "Spacey Bar From The Beginning": { |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 365 | "foo": "bar3", |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 366 | "baz": "qwe", |
| 367 | }, |
| 368 | "Commented Bar": { |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 369 | "foo": "bar4", |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 370 | "baz": "qwe", |
| 371 | }, |
| 372 | "Long Line": { |
| 373 | "foo": "this line is much, much longer than my editor\nlikes " |
| 374 | "it.", |
| 375 | }, |
| 376 | "Section\\with$weird%characters[\t": { |
| 377 | }, |
| 378 | "Internationalized Stuff": { |
| 379 | "foo[bg]": "Bulgarian", |
| 380 | "foo": "Default", |
| 381 | "foo[en]": "English", |
| 382 | "foo[de]": "Deutsch", |
| 383 | }, |
| 384 | "Spaces": { |
| 385 | "key with spaces": "value", |
| 386 | "another with spaces": "splat!", |
Fred Drake | cc645b9 | 2010-09-04 04:35:34 +0000 | [diff] [blame] | 387 | }, |
| 388 | "Types": { |
| 389 | "int": 42, |
| 390 | "float": 0.44, |
| 391 | "boolean": False, |
Łukasz Langa | 2cf9ddb | 2010-12-04 12:46:01 +0000 | [diff] [blame] | 392 | 123: "strange but acceptable", |
Fred Drake | cc645b9 | 2010-09-04 04:35:34 +0000 | [diff] [blame] | 393 | }, |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 394 | } |
| 395 | if self.allow_no_value: |
| 396 | config.update({ |
| 397 | "NoValue": { |
| 398 | "option-without-value": None, |
| 399 | } |
| 400 | }) |
| 401 | cf = self.newconfig() |
| 402 | cf.read_dict(config) |
| 403 | self.basic_test(cf) |
| 404 | if self.strict: |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 405 | with self.assertRaises(configparser.DuplicateSectionError): |
| 406 | cf.read_dict({ |
| 407 | '1': {'key': 'value'}, |
| 408 | 1: {'key2': 'value2'}, |
| 409 | }) |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 410 | with self.assertRaises(configparser.DuplicateOptionError): |
| 411 | cf.read_dict({ |
| 412 | "Duplicate Options Here": { |
| 413 | 'option': 'with a value', |
| 414 | 'OPTION': 'with another value', |
| 415 | }, |
| 416 | }) |
| 417 | else: |
| 418 | cf.read_dict({ |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 419 | 'section': {'key': 'value'}, |
| 420 | 'SECTION': {'key2': 'value2'}, |
| 421 | }) |
| 422 | cf.read_dict({ |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 423 | "Duplicate Options Here": { |
| 424 | 'option': 'with a value', |
| 425 | 'OPTION': 'with another value', |
| 426 | }, |
| 427 | }) |
| 428 | |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 429 | def test_case_sensitivity(self): |
| 430 | cf = self.newconfig() |
| 431 | cf.add_section("A") |
| 432 | cf.add_section("a") |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 433 | cf.add_section("B") |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 434 | L = cf.sections() |
| 435 | L.sort() |
| 436 | eq = self.assertEqual |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 437 | eq(L, ["A", "B", "a"]) |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 438 | cf.set("a", "B", "value") |
| 439 | eq(cf.options("a"), ["b"]) |
| 440 | eq(cf.get("a", "b"), "value", |
Fred Drake | 3c823aa | 2001-02-26 21:55:34 +0000 | [diff] [blame] | 441 | "could not locate option, expecting case-insensitive option names") |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 442 | with self.assertRaises(configparser.NoSectionError): |
| 443 | # section names are case-sensitive |
| 444 | cf.set("b", "A", "value") |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 445 | self.assertTrue(cf.has_option("a", "b")) |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 446 | self.assertFalse(cf.has_option("b", "b")) |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 447 | cf.set("A", "A-B", "A-B value") |
| 448 | for opt in ("a-b", "A-b", "a-B", "A-B"): |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 449 | self.assertTrue( |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 450 | cf.has_option("A", opt), |
| 451 | "has_option() returned false for option which should exist") |
| 452 | eq(cf.options("A"), ["a-b"]) |
| 453 | eq(cf.options("a"), ["b"]) |
| 454 | cf.remove_option("a", "B") |
| 455 | eq(cf.options("a"), []) |
Fred Drake | 3c823aa | 2001-02-26 21:55:34 +0000 | [diff] [blame] | 456 | |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 457 | # SF bug #432369: |
| 458 | cf = self.fromstring( |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 459 | "[MySection]\nOption{} first line \n\tsecond line \n".format( |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 460 | self.delimiters[0])) |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 461 | eq(cf.options("MySection"), ["option"]) |
| 462 | eq(cf.get("MySection", "Option"), "first line\nsecond line") |
Fred Drake | beb6713 | 2001-07-06 17:22:48 +0000 | [diff] [blame] | 463 | |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 464 | # SF bug #561822: |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 465 | cf = self.fromstring("[section]\n" |
| 466 | "nekey{}nevalue\n".format(self.delimiters[0]), |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 467 | defaults={"key":"value"}) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 468 | self.assertTrue(cf.has_option("section", "Key")) |
Fred Drake | 309db06 | 2002-09-27 15:35:23 +0000 | [diff] [blame] | 469 | |
Fred Drake | 3c823aa | 2001-02-26 21:55:34 +0000 | [diff] [blame] | 470 | |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 471 | def test_case_sensitivity_mapping_access(self): |
| 472 | cf = self.newconfig() |
| 473 | cf["A"] = {} |
| 474 | cf["a"] = {"B": "value"} |
| 475 | cf["B"] = {} |
| 476 | L = [section for section in cf] |
| 477 | L.sort() |
| 478 | eq = self.assertEqual |
Ezio Melotti | 263cbdf | 2010-11-29 02:02:10 +0000 | [diff] [blame] | 479 | elem_eq = self.assertCountEqual |
Łukasz Langa | c264c09 | 2010-11-20 16:15:37 +0000 | [diff] [blame] | 480 | eq(L, sorted(["A", "B", self.default_section, "a"])) |
Łukasz Langa | 26d513c | 2010-11-10 18:57:39 +0000 | [diff] [blame] | 481 | eq(cf["a"].keys(), {"b"}) |
| 482 | eq(cf["a"]["b"], "value", |
| 483 | "could not locate option, expecting case-insensitive option names") |
| 484 | with self.assertRaises(KeyError): |
| 485 | # section names are case-sensitive |
| 486 | cf["b"]["A"] = "value" |
| 487 | self.assertTrue("b" in cf["a"]) |
| 488 | cf["A"]["A-B"] = "A-B value" |
| 489 | for opt in ("a-b", "A-b", "a-B", "A-B"): |
| 490 | self.assertTrue( |
| 491 | opt in cf["A"], |
| 492 | "has_option() returned false for option which should exist") |
| 493 | eq(cf["A"].keys(), {"a-b"}) |
| 494 | eq(cf["a"].keys(), {"b"}) |
| 495 | del cf["a"]["B"] |
| 496 | elem_eq(cf["a"].keys(), {}) |
| 497 | |
| 498 | # SF bug #432369: |
| 499 | cf = self.fromstring( |
| 500 | "[MySection]\nOption{} first line \n\tsecond line \n".format( |
| 501 | self.delimiters[0])) |
| 502 | eq(cf["MySection"].keys(), {"option"}) |
| 503 | eq(cf["MySection"]["Option"], "first line\nsecond line") |
| 504 | |
| 505 | # SF bug #561822: |
| 506 | cf = self.fromstring("[section]\n" |
| 507 | "nekey{}nevalue\n".format(self.delimiters[0]), |
| 508 | defaults={"key":"value"}) |
| 509 | self.assertTrue("Key" in cf["section"]) |
| 510 | |
David Goodger | 68a1abd | 2004-10-03 15:40:25 +0000 | [diff] [blame] | 511 | def test_default_case_sensitivity(self): |
| 512 | cf = self.newconfig({"foo": "Bar"}) |
| 513 | self.assertEqual( |
Łukasz Langa | c264c09 | 2010-11-20 16:15:37 +0000 | [diff] [blame] | 514 | cf.get(self.default_section, "Foo"), "Bar", |
David Goodger | 68a1abd | 2004-10-03 15:40:25 +0000 | [diff] [blame] | 515 | "could not locate option, expecting case-insensitive option names") |
| 516 | cf = self.newconfig({"Foo": "Bar"}) |
| 517 | self.assertEqual( |
Łukasz Langa | c264c09 | 2010-11-20 16:15:37 +0000 | [diff] [blame] | 518 | cf.get(self.default_section, "Foo"), "Bar", |
David Goodger | 68a1abd | 2004-10-03 15:40:25 +0000 | [diff] [blame] | 519 | "could not locate option, expecting case-insensitive defaults") |
| 520 | |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 521 | def test_parse_errors(self): |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 522 | cf = self.newconfig() |
| 523 | self.parse_error(cf, configparser.ParsingError, |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 524 | "[Foo]\n" |
| 525 | "{}val-without-opt-name\n".format(self.delimiters[0])) |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 526 | self.parse_error(cf, configparser.ParsingError, |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 527 | "[Foo]\n" |
| 528 | "{}val-without-opt-name\n".format(self.delimiters[1])) |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 529 | e = self.parse_error(cf, configparser.MissingSectionHeaderError, |
Brian Curtin | 9a27b0c | 2010-07-26 00:27:10 +0000 | [diff] [blame] | 530 | "No Section!\n") |
Michael Foord | bd6c079 | 2010-07-25 23:09:25 +0000 | [diff] [blame] | 531 | self.assertEqual(e.args, ('<???>', 1, "No Section!\n")) |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 532 | if not self.allow_no_value: |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 533 | e = self.parse_error(cf, configparser.ParsingError, |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 534 | "[Foo]\n wrong-indent\n") |
| 535 | self.assertEqual(e.args, ('<???>',)) |
Florent Xicluna | 42d5445 | 2010-09-22 22:35:38 +0000 | [diff] [blame] | 536 | # read_file on a real file |
| 537 | tricky = support.findfile("cfgparser.3") |
| 538 | if self.delimiters[0] == '=': |
| 539 | error = configparser.ParsingError |
| 540 | expected = (tricky,) |
| 541 | else: |
| 542 | error = configparser.MissingSectionHeaderError |
| 543 | expected = (tricky, 1, |
| 544 | ' # INI with as many tricky parts as possible\n') |
Florent Xicluna | d12a420 | 2010-09-23 00:46:13 +0000 | [diff] [blame] | 545 | with open(tricky, encoding='utf-8') as f: |
Florent Xicluna | 42d5445 | 2010-09-22 22:35:38 +0000 | [diff] [blame] | 546 | e = self.parse_error(cf, error, f) |
| 547 | self.assertEqual(e.args, expected) |
Fred Drake | 168bead | 2001-10-08 17:13:12 +0000 | [diff] [blame] | 548 | |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 549 | def parse_error(self, cf, exc, src): |
Florent Xicluna | 42d5445 | 2010-09-22 22:35:38 +0000 | [diff] [blame] | 550 | if hasattr(src, 'readline'): |
| 551 | sio = src |
| 552 | else: |
| 553 | sio = io.StringIO(src) |
Michael Foord | bd6c079 | 2010-07-25 23:09:25 +0000 | [diff] [blame] | 554 | with self.assertRaises(exc) as cm: |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 555 | cf.read_file(sio) |
Michael Foord | bd6c079 | 2010-07-25 23:09:25 +0000 | [diff] [blame] | 556 | return cm.exception |
Fred Drake | 168bead | 2001-10-08 17:13:12 +0000 | [diff] [blame] | 557 | |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 558 | def test_query_errors(self): |
| 559 | cf = self.newconfig() |
| 560 | self.assertEqual(cf.sections(), [], |
| 561 | "new ConfigParser should have no defined sections") |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 562 | self.assertFalse(cf.has_section("Foo"), |
Brian Curtin | 9a27b0c | 2010-07-26 00:27:10 +0000 | [diff] [blame] | 563 | "new ConfigParser should have no acknowledged " |
| 564 | "sections") |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 565 | with self.assertRaises(configparser.NoSectionError): |
Michael Foord | bd6c079 | 2010-07-25 23:09:25 +0000 | [diff] [blame] | 566 | cf.options("Foo") |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 567 | with self.assertRaises(configparser.NoSectionError): |
Michael Foord | bd6c079 | 2010-07-25 23:09:25 +0000 | [diff] [blame] | 568 | cf.set("foo", "bar", "value") |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 569 | e = self.get_error(cf, configparser.NoSectionError, "foo", "bar") |
Michael Foord | bd6c079 | 2010-07-25 23:09:25 +0000 | [diff] [blame] | 570 | self.assertEqual(e.args, ("foo",)) |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 571 | cf.add_section("foo") |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 572 | e = self.get_error(cf, configparser.NoOptionError, "foo", "bar") |
Michael Foord | bd6c079 | 2010-07-25 23:09:25 +0000 | [diff] [blame] | 573 | self.assertEqual(e.args, ("bar", "foo")) |
Fred Drake | 8ef6767 | 2000-09-27 22:45:25 +0000 | [diff] [blame] | 574 | |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 575 | def get_error(self, cf, exc, section, option): |
Fred Drake | 5478219 | 2002-12-31 06:57:25 +0000 | [diff] [blame] | 576 | try: |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 577 | cf.get(section, option) |
Guido van Rossum | b940e11 | 2007-01-10 16:19:56 +0000 | [diff] [blame] | 578 | except exc as e: |
Fred Drake | 5478219 | 2002-12-31 06:57:25 +0000 | [diff] [blame] | 579 | return e |
| 580 | else: |
| 581 | self.fail("expected exception type %s.%s" |
| 582 | % (exc.__module__, exc.__name__)) |
Fred Drake | 3af0eb8 | 2002-10-25 18:09:24 +0000 | [diff] [blame] | 583 | |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 584 | def test_boolean(self): |
| 585 | cf = self.fromstring( |
| 586 | "[BOOLTEST]\n" |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 587 | "T1{equals}1\n" |
| 588 | "T2{equals}TRUE\n" |
| 589 | "T3{equals}True\n" |
| 590 | "T4{equals}oN\n" |
| 591 | "T5{equals}yes\n" |
| 592 | "F1{equals}0\n" |
| 593 | "F2{equals}FALSE\n" |
| 594 | "F3{equals}False\n" |
| 595 | "F4{equals}oFF\n" |
| 596 | "F5{equals}nO\n" |
| 597 | "E1{equals}2\n" |
| 598 | "E2{equals}foo\n" |
| 599 | "E3{equals}-1\n" |
| 600 | "E4{equals}0.1\n" |
| 601 | "E5{equals}FALSE AND MORE".format(equals=self.delimiters[0]) |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 602 | ) |
| 603 | for x in range(1, 5): |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 604 | self.assertTrue(cf.getboolean('BOOLTEST', 't%d' % x)) |
| 605 | self.assertFalse(cf.getboolean('BOOLTEST', 'f%d' % x)) |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 606 | self.assertRaises(ValueError, |
| 607 | cf.getboolean, 'BOOLTEST', 'e%d' % x) |
Fred Drake | 95b96d3 | 2001-02-12 17:23:20 +0000 | [diff] [blame] | 608 | |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 609 | def test_weird_errors(self): |
| 610 | cf = self.newconfig() |
Fred Drake | 8ef6767 | 2000-09-27 22:45:25 +0000 | [diff] [blame] | 611 | cf.add_section("Foo") |
Michael Foord | bd6c079 | 2010-07-25 23:09:25 +0000 | [diff] [blame] | 612 | with self.assertRaises(configparser.DuplicateSectionError) as cm: |
| 613 | cf.add_section("Foo") |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 614 | e = cm.exception |
| 615 | self.assertEqual(str(e), "Section 'Foo' already exists") |
| 616 | self.assertEqual(e.args, ("Foo", None, None)) |
| 617 | |
| 618 | if self.strict: |
| 619 | with self.assertRaises(configparser.DuplicateSectionError) as cm: |
| 620 | cf.read_string(textwrap.dedent("""\ |
| 621 | [Foo] |
| 622 | will this be added{equals}True |
| 623 | [Bar] |
| 624 | what about this{equals}True |
| 625 | [Foo] |
| 626 | oops{equals}this won't |
| 627 | """.format(equals=self.delimiters[0])), source='<foo-bar>') |
| 628 | e = cm.exception |
| 629 | self.assertEqual(str(e), "While reading from <foo-bar> [line 5]: " |
| 630 | "section 'Foo' already exists") |
| 631 | self.assertEqual(e.args, ("Foo", '<foo-bar>', 5)) |
| 632 | |
| 633 | with self.assertRaises(configparser.DuplicateOptionError) as cm: |
| 634 | cf.read_dict({'Bar': {'opt': 'val', 'OPT': 'is really `opt`'}}) |
| 635 | e = cm.exception |
| 636 | self.assertEqual(str(e), "While reading from <dict>: option 'opt' " |
| 637 | "in section 'Bar' already exists") |
| 638 | self.assertEqual(e.args, ("Bar", "opt", "<dict>", None)) |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 639 | |
| 640 | def test_write(self): |
Fred Drake | 03c44a3 | 2010-02-19 06:08:41 +0000 | [diff] [blame] | 641 | config_string = ( |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 642 | "[Long Line]\n" |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 643 | "foo{0[0]} this line is much, much longer than my editor\n" |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 644 | " likes it.\n" |
Łukasz Langa | c264c09 | 2010-11-20 16:15:37 +0000 | [diff] [blame] | 645 | "[{default_section}]\n" |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 646 | "foo{0[1]} another very\n" |
Fred Drake | 03c44a3 | 2010-02-19 06:08:41 +0000 | [diff] [blame] | 647 | " long line\n" |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 648 | "[Long Line - With Comments!]\n" |
| 649 | "test {0[1]} we {comment} can\n" |
| 650 | " also {comment} place\n" |
| 651 | " comments {comment} in\n" |
| 652 | " multiline {comment} values" |
Łukasz Langa | c264c09 | 2010-11-20 16:15:37 +0000 | [diff] [blame] | 653 | "\n".format(self.delimiters, comment=self.comment_prefixes[0], |
| 654 | default_section=self.default_section) |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 655 | ) |
Fred Drake | 03c44a3 | 2010-02-19 06:08:41 +0000 | [diff] [blame] | 656 | if self.allow_no_value: |
| 657 | config_string += ( |
| 658 | "[Valueless]\n" |
| 659 | "option-without-value\n" |
| 660 | ) |
| 661 | |
| 662 | cf = self.fromstring(config_string) |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 663 | for space_around_delimiters in (True, False): |
| 664 | output = io.StringIO() |
| 665 | cf.write(output, space_around_delimiters=space_around_delimiters) |
| 666 | delimiter = self.delimiters[0] |
| 667 | if space_around_delimiters: |
| 668 | delimiter = " {} ".format(delimiter) |
| 669 | expect_string = ( |
| 670 | "[{default_section}]\n" |
| 671 | "foo{equals}another very\n" |
| 672 | "\tlong line\n" |
Fred Drake | 03c44a3 | 2010-02-19 06:08:41 +0000 | [diff] [blame] | 673 | "\n" |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 674 | "[Long Line]\n" |
| 675 | "foo{equals}this line is much, much longer than my editor\n" |
| 676 | "\tlikes it.\n" |
| 677 | "\n" |
| 678 | "[Long Line - With Comments!]\n" |
| 679 | "test{equals}we\n" |
| 680 | "\talso\n" |
| 681 | "\tcomments\n" |
| 682 | "\tmultiline\n" |
| 683 | "\n".format(equals=delimiter, |
| 684 | default_section=self.default_section) |
Fred Drake | 03c44a3 | 2010-02-19 06:08:41 +0000 | [diff] [blame] | 685 | ) |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 686 | if self.allow_no_value: |
| 687 | expect_string += ( |
| 688 | "[Valueless]\n" |
| 689 | "option-without-value\n" |
| 690 | "\n" |
| 691 | ) |
| 692 | self.assertEqual(output.getvalue(), expect_string) |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 693 | |
Fred Drake | abc086f | 2004-05-18 03:29:52 +0000 | [diff] [blame] | 694 | def test_set_string_types(self): |
| 695 | cf = self.fromstring("[sect]\n" |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 696 | "option1{eq}foo\n".format(eq=self.delimiters[0])) |
Fred Drake | abc086f | 2004-05-18 03:29:52 +0000 | [diff] [blame] | 697 | # Check that we don't get an exception when setting values in |
| 698 | # an existing section using strings: |
| 699 | class mystr(str): |
| 700 | pass |
| 701 | cf.set("sect", "option1", "splat") |
| 702 | cf.set("sect", "option1", mystr("splat")) |
| 703 | cf.set("sect", "option2", "splat") |
| 704 | cf.set("sect", "option2", mystr("splat")) |
Walter Dörwald | 5de48bd | 2007-06-11 21:38:39 +0000 | [diff] [blame] | 705 | cf.set("sect", "option1", "splat") |
| 706 | cf.set("sect", "option2", "splat") |
Fred Drake | abc086f | 2004-05-18 03:29:52 +0000 | [diff] [blame] | 707 | |
Fred Drake | 8290314 | 2004-05-18 04:24:02 +0000 | [diff] [blame] | 708 | def test_read_returns_file_list(self): |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 709 | if self.delimiters[0] != '=': |
| 710 | # skip reading the file if we're using an incompatible format |
| 711 | return |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 712 | file1 = support.findfile("cfgparser.1") |
Fred Drake | 8290314 | 2004-05-18 04:24:02 +0000 | [diff] [blame] | 713 | # check when we pass a mix of readable and non-readable files: |
| 714 | cf = self.newconfig() |
Mark Dickinson | 934896d | 2009-02-21 20:59:32 +0000 | [diff] [blame] | 715 | parsed_files = cf.read([file1, "nonexistent-file"]) |
Fred Drake | 8290314 | 2004-05-18 04:24:02 +0000 | [diff] [blame] | 716 | self.assertEqual(parsed_files, [file1]) |
| 717 | self.assertEqual(cf.get("Foo Bar", "foo"), "newbar") |
| 718 | # check when we pass only a filename: |
| 719 | cf = self.newconfig() |
| 720 | parsed_files = cf.read(file1) |
| 721 | self.assertEqual(parsed_files, [file1]) |
| 722 | self.assertEqual(cf.get("Foo Bar", "foo"), "newbar") |
| 723 | # check when we pass only missing files: |
| 724 | cf = self.newconfig() |
Mark Dickinson | 934896d | 2009-02-21 20:59:32 +0000 | [diff] [blame] | 725 | parsed_files = cf.read(["nonexistent-file"]) |
Fred Drake | 8290314 | 2004-05-18 04:24:02 +0000 | [diff] [blame] | 726 | self.assertEqual(parsed_files, []) |
| 727 | # check when we pass no files: |
| 728 | cf = self.newconfig() |
| 729 | parsed_files = cf.read([]) |
| 730 | self.assertEqual(parsed_files, []) |
| 731 | |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 732 | # shared by subclasses |
| 733 | def get_interpolation_config(self): |
| 734 | return self.fromstring( |
| 735 | "[Foo]\n" |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 736 | "bar{equals}something %(with1)s interpolation (1 step)\n" |
| 737 | "bar9{equals}something %(with9)s lots of interpolation (9 steps)\n" |
| 738 | "bar10{equals}something %(with10)s lots of interpolation (10 steps)\n" |
| 739 | "bar11{equals}something %(with11)s lots of interpolation (11 steps)\n" |
| 740 | "with11{equals}%(with10)s\n" |
| 741 | "with10{equals}%(with9)s\n" |
| 742 | "with9{equals}%(with8)s\n" |
| 743 | "with8{equals}%(With7)s\n" |
| 744 | "with7{equals}%(WITH6)s\n" |
| 745 | "with6{equals}%(with5)s\n" |
| 746 | "With5{equals}%(with4)s\n" |
| 747 | "WITH4{equals}%(with3)s\n" |
| 748 | "with3{equals}%(with2)s\n" |
| 749 | "with2{equals}%(with1)s\n" |
| 750 | "with1{equals}with\n" |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 751 | "\n" |
| 752 | "[Mutual Recursion]\n" |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 753 | "foo{equals}%(bar)s\n" |
| 754 | "bar{equals}%(foo)s\n" |
Fred Drake | 5478219 | 2002-12-31 06:57:25 +0000 | [diff] [blame] | 755 | "\n" |
| 756 | "[Interpolation Error]\n" |
Fred Drake | 5478219 | 2002-12-31 06:57:25 +0000 | [diff] [blame] | 757 | # no definition for 'reference' |
Łukasz Langa | 5c86339 | 2010-11-21 13:41:35 +0000 | [diff] [blame] | 758 | "name{equals}%(reference)s\n".format(equals=self.delimiters[0])) |
Fred Drake | 95b96d3 | 2001-02-12 17:23:20 +0000 | [diff] [blame] | 759 | |
Fred Drake | 98e3b29 | 2002-10-25 20:42:44 +0000 | [diff] [blame] | 760 | def check_items_config(self, expected): |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 761 | cf = self.fromstring(""" |
| 762 | [section] |
| 763 | name {0[0]} %(value)s |
| 764 | key{0[1]} |%(name)s| |
| 765 | getdefault{0[1]} |%(default)s| |
| 766 | """.format(self.delimiters), defaults={"default": "<default>"}) |
| 767 | L = list(cf.items("section", vars={'value': 'value'})) |
Fred Drake | 98e3b29 | 2002-10-25 20:42:44 +0000 | [diff] [blame] | 768 | L.sort() |
| 769 | self.assertEqual(L, expected) |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 770 | with self.assertRaises(configparser.NoSectionError): |
| 771 | cf.items("no such section") |
Fred Drake | 98e3b29 | 2002-10-25 20:42:44 +0000 | [diff] [blame] | 772 | |
Fred Drake | 8ef6767 | 2000-09-27 22:45:25 +0000 | [diff] [blame] | 773 | |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 774 | class StrictTestCase(BasicTestCase): |
| 775 | config_class = configparser.RawConfigParser |
| 776 | strict = True |
| 777 | |
| 778 | |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 779 | class ConfigParserTestCase(BasicTestCase): |
Alexandre Vassalotti | 1d1eaa4 | 2008-05-14 22:59:42 +0000 | [diff] [blame] | 780 | config_class = configparser.ConfigParser |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 781 | |
| 782 | def test_interpolation(self): |
| 783 | cf = self.get_interpolation_config() |
| 784 | eq = self.assertEqual |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 785 | eq(cf.get("Foo", "bar"), "something with interpolation (1 step)") |
| 786 | eq(cf.get("Foo", "bar9"), |
| 787 | "something with lots of interpolation (9 steps)") |
| 788 | eq(cf.get("Foo", "bar10"), |
| 789 | "something with lots of interpolation (10 steps)") |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 790 | e = self.get_error(cf, configparser.InterpolationDepthError, "Foo", "bar11") |
Łukasz Langa | 7f64c8a | 2010-12-16 01:16:22 +0000 | [diff] [blame] | 791 | if self.interpolation == configparser._UNSET: |
| 792 | self.assertEqual(e.args, ("bar11", "Foo", "%(with1)s")) |
| 793 | elif isinstance(self.interpolation, configparser.LegacyInterpolation): |
| 794 | self.assertEqual(e.args, ("bar11", "Foo", |
| 795 | "something %(with11)s lots of interpolation (11 steps)")) |
Fred Drake | 95b96d3 | 2001-02-12 17:23:20 +0000 | [diff] [blame] | 796 | |
Fred Drake | 5478219 | 2002-12-31 06:57:25 +0000 | [diff] [blame] | 797 | def test_interpolation_missing_value(self): |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 798 | cf = self.get_interpolation_config() |
| 799 | e = self.get_error(cf, configparser.InterpolationMissingOptionError, |
Fred Drake | 5478219 | 2002-12-31 06:57:25 +0000 | [diff] [blame] | 800 | "Interpolation Error", "name") |
| 801 | self.assertEqual(e.reference, "reference") |
| 802 | self.assertEqual(e.section, "Interpolation Error") |
| 803 | self.assertEqual(e.option, "name") |
Łukasz Langa | 7f64c8a | 2010-12-16 01:16:22 +0000 | [diff] [blame] | 804 | if self.interpolation == configparser._UNSET: |
| 805 | self.assertEqual(e.args, ('name', 'Interpolation Error', |
| 806 | '', 'reference')) |
| 807 | elif isinstance(self.interpolation, configparser.LegacyInterpolation): |
| 808 | self.assertEqual(e.args, ('name', 'Interpolation Error', |
| 809 | '%(reference)s', 'reference')) |
Fred Drake | 5478219 | 2002-12-31 06:57:25 +0000 | [diff] [blame] | 810 | |
Fred Drake | 98e3b29 | 2002-10-25 20:42:44 +0000 | [diff] [blame] | 811 | def test_items(self): |
| 812 | self.check_items_config([('default', '<default>'), |
| 813 | ('getdefault', '|<default>|'), |
Fred Drake | 98e3b29 | 2002-10-25 20:42:44 +0000 | [diff] [blame] | 814 | ('key', '|value|'), |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 815 | ('name', 'value'), |
| 816 | ('value', 'value')]) |
Fred Drake | 98e3b29 | 2002-10-25 20:42:44 +0000 | [diff] [blame] | 817 | |
Łukasz Langa | 7f64c8a | 2010-12-16 01:16:22 +0000 | [diff] [blame] | 818 | def test_safe_interpolation(self): |
| 819 | # See http://www.python.org/sf/511737 |
| 820 | cf = self.fromstring("[section]\n" |
| 821 | "option1{eq}xxx\n" |
| 822 | "option2{eq}%(option1)s/xxx\n" |
| 823 | "ok{eq}%(option1)s/%%s\n" |
| 824 | "not_ok{eq}%(option2)s/%%s".format( |
| 825 | eq=self.delimiters[0])) |
| 826 | self.assertEqual(cf.get("section", "ok"), "xxx/%s") |
| 827 | if self.interpolation == configparser._UNSET: |
| 828 | self.assertEqual(cf.get("section", "not_ok"), "xxx/xxx/%s") |
| 829 | elif isinstance(self.interpolation, configparser.LegacyInterpolation): |
| 830 | with self.assertRaises(TypeError): |
| 831 | cf.get("section", "not_ok") |
| 832 | |
| 833 | def test_set_malformatted_interpolation(self): |
| 834 | cf = self.fromstring("[sect]\n" |
| 835 | "option1{eq}foo\n".format(eq=self.delimiters[0])) |
| 836 | |
| 837 | self.assertEqual(cf.get('sect', "option1"), "foo") |
| 838 | |
| 839 | self.assertRaises(ValueError, cf.set, "sect", "option1", "%foo") |
| 840 | self.assertRaises(ValueError, cf.set, "sect", "option1", "foo%") |
| 841 | self.assertRaises(ValueError, cf.set, "sect", "option1", "f%oo") |
| 842 | |
| 843 | self.assertEqual(cf.get('sect', "option1"), "foo") |
| 844 | |
| 845 | # bug #5741: double percents are *not* malformed |
| 846 | cf.set("sect", "option2", "foo%%bar") |
| 847 | self.assertEqual(cf.get("sect", "option2"), "foo%bar") |
| 848 | |
David Goodger | 1cbf206 | 2004-10-03 15:55:09 +0000 | [diff] [blame] | 849 | def test_set_nonstring_types(self): |
Łukasz Langa | 7f64c8a | 2010-12-16 01:16:22 +0000 | [diff] [blame] | 850 | cf = self.fromstring("[sect]\n" |
| 851 | "option1{eq}foo\n".format(eq=self.delimiters[0])) |
| 852 | # Check that we get a TypeError when setting non-string values |
| 853 | # in an existing section: |
| 854 | self.assertRaises(TypeError, cf.set, "sect", "option1", 1) |
| 855 | self.assertRaises(TypeError, cf.set, "sect", "option1", 1.0) |
| 856 | self.assertRaises(TypeError, cf.set, "sect", "option1", object()) |
| 857 | self.assertRaises(TypeError, cf.set, "sect", "option2", 1) |
| 858 | self.assertRaises(TypeError, cf.set, "sect", "option2", 1.0) |
| 859 | self.assertRaises(TypeError, cf.set, "sect", "option2", object()) |
| 860 | self.assertRaises(TypeError, cf.set, "sect", 123, "invalid opt name!") |
| 861 | self.assertRaises(TypeError, cf.add_section, 123) |
| 862 | |
| 863 | def test_add_section_default(self): |
David Goodger | 1cbf206 | 2004-10-03 15:55:09 +0000 | [diff] [blame] | 864 | cf = self.newconfig() |
Łukasz Langa | 7f64c8a | 2010-12-16 01:16:22 +0000 | [diff] [blame] | 865 | self.assertRaises(ValueError, cf.add_section, self.default_section) |
| 866 | |
Łukasz Langa | 1aa422f | 2011-04-28 17:03:45 +0200 | [diff] [blame^] | 867 | |
| 868 | class ConfigParserTestCaseNoInterpolation(BasicTestCase): |
| 869 | config_class = configparser.ConfigParser |
| 870 | interpolation = None |
| 871 | ini = textwrap.dedent(""" |
| 872 | [numbers] |
| 873 | one = 1 |
| 874 | two = %(one)s * 2 |
| 875 | three = ${common:one} * 3 |
| 876 | |
| 877 | [hexen] |
| 878 | sixteen = ${numbers:two} * 8 |
| 879 | """).strip() |
| 880 | |
| 881 | def assertMatchesIni(self, cf): |
| 882 | self.assertEqual(cf['numbers']['one'], '1') |
| 883 | self.assertEqual(cf['numbers']['two'], '%(one)s * 2') |
| 884 | self.assertEqual(cf['numbers']['three'], '${common:one} * 3') |
| 885 | self.assertEqual(cf['hexen']['sixteen'], '${numbers:two} * 8') |
| 886 | |
| 887 | def test_no_interpolation(self): |
| 888 | cf = self.fromstring(self.ini) |
| 889 | self.assertMatchesIni(cf) |
| 890 | |
| 891 | def test_empty_case(self): |
| 892 | cf = self.newconfig() |
| 893 | self.assertIsNone(cf.read_string("")) |
| 894 | |
| 895 | def test_none_as_default_interpolation(self): |
| 896 | class CustomConfigParser(configparser.ConfigParser): |
| 897 | _DEFAULT_INTERPOLATION = None |
| 898 | |
| 899 | cf = CustomConfigParser() |
| 900 | cf.read_string(self.ini) |
| 901 | self.assertMatchesIni(cf) |
| 902 | |
| 903 | |
Łukasz Langa | 7f64c8a | 2010-12-16 01:16:22 +0000 | [diff] [blame] | 904 | class ConfigParserTestCaseLegacyInterpolation(ConfigParserTestCase): |
| 905 | config_class = configparser.ConfigParser |
| 906 | interpolation = configparser.LegacyInterpolation() |
| 907 | |
| 908 | def test_set_malformatted_interpolation(self): |
| 909 | cf = self.fromstring("[sect]\n" |
| 910 | "option1{eq}foo\n".format(eq=self.delimiters[0])) |
| 911 | |
| 912 | self.assertEqual(cf.get('sect', "option1"), "foo") |
| 913 | |
| 914 | cf.set("sect", "option1", "%foo") |
| 915 | self.assertEqual(cf.get('sect', "option1"), "%foo") |
| 916 | cf.set("sect", "option1", "foo%") |
| 917 | self.assertEqual(cf.get('sect', "option1"), "foo%") |
| 918 | cf.set("sect", "option1", "f%oo") |
| 919 | self.assertEqual(cf.get('sect', "option1"), "f%oo") |
| 920 | |
| 921 | # bug #5741: double percents are *not* malformed |
| 922 | cf.set("sect", "option2", "foo%%bar") |
| 923 | self.assertEqual(cf.get("sect", "option2"), "foo%%bar") |
David Goodger | 1cbf206 | 2004-10-03 15:55:09 +0000 | [diff] [blame] | 924 | |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 925 | class ConfigParserTestCaseNonStandardDelimiters(ConfigParserTestCase): |
| 926 | delimiters = (':=', '$') |
| 927 | comment_prefixes = ('//', '"') |
Łukasz Langa | b25a791 | 2010-12-17 01:32:29 +0000 | [diff] [blame] | 928 | inline_comment_prefixes = ('//', '"') |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 929 | |
Łukasz Langa | c264c09 | 2010-11-20 16:15:37 +0000 | [diff] [blame] | 930 | class ConfigParserTestCaseNonStandardDefaultSection(ConfigParserTestCase): |
| 931 | default_section = 'general' |
| 932 | |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 933 | class MultilineValuesTestCase(BasicTestCase): |
Brian Curtin | 9a27b0c | 2010-07-26 00:27:10 +0000 | [diff] [blame] | 934 | config_class = configparser.ConfigParser |
| 935 | wonderful_spam = ("I'm having spam spam spam spam " |
| 936 | "spam spam spam beaked beans spam " |
| 937 | "spam spam and spam!").replace(' ', '\t\n') |
| 938 | |
| 939 | def setUp(self): |
| 940 | cf = self.newconfig() |
| 941 | for i in range(100): |
| 942 | s = 'section{}'.format(i) |
| 943 | cf.add_section(s) |
| 944 | for j in range(10): |
| 945 | cf.set(s, 'lovely_spam{}'.format(j), self.wonderful_spam) |
| 946 | with open(support.TESTFN, 'w') as f: |
| 947 | cf.write(f) |
| 948 | |
| 949 | def tearDown(self): |
| 950 | os.unlink(support.TESTFN) |
| 951 | |
| 952 | def test_dominating_multiline_values(self): |
| 953 | # We're reading from file because this is where the code changed |
| 954 | # during performance updates in Python 3.2 |
| 955 | cf_from_file = self.newconfig() |
| 956 | with open(support.TESTFN) as f: |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 957 | cf_from_file.read_file(f) |
Brian Curtin | 9a27b0c | 2010-07-26 00:27:10 +0000 | [diff] [blame] | 958 | self.assertEqual(cf_from_file.get('section8', 'lovely_spam4'), |
| 959 | self.wonderful_spam.replace('\t\n', '\n')) |
Fred Drake | 8ef6767 | 2000-09-27 22:45:25 +0000 | [diff] [blame] | 960 | |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 961 | class RawConfigParserTestCase(BasicTestCase): |
Alexandre Vassalotti | 1d1eaa4 | 2008-05-14 22:59:42 +0000 | [diff] [blame] | 962 | config_class = configparser.RawConfigParser |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 963 | |
| 964 | def test_interpolation(self): |
| 965 | cf = self.get_interpolation_config() |
| 966 | eq = self.assertEqual |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 967 | eq(cf.get("Foo", "bar"), |
| 968 | "something %(with1)s interpolation (1 step)") |
| 969 | eq(cf.get("Foo", "bar9"), |
| 970 | "something %(with9)s lots of interpolation (9 steps)") |
| 971 | eq(cf.get("Foo", "bar10"), |
| 972 | "something %(with10)s lots of interpolation (10 steps)") |
| 973 | eq(cf.get("Foo", "bar11"), |
| 974 | "something %(with11)s lots of interpolation (11 steps)") |
Fred Drake | 95b96d3 | 2001-02-12 17:23:20 +0000 | [diff] [blame] | 975 | |
Fred Drake | 98e3b29 | 2002-10-25 20:42:44 +0000 | [diff] [blame] | 976 | def test_items(self): |
| 977 | self.check_items_config([('default', '<default>'), |
| 978 | ('getdefault', '|%(default)s|'), |
Fred Drake | 98e3b29 | 2002-10-25 20:42:44 +0000 | [diff] [blame] | 979 | ('key', '|%(name)s|'), |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 980 | ('name', '%(value)s'), |
| 981 | ('value', 'value')]) |
Fred Drake | 98e3b29 | 2002-10-25 20:42:44 +0000 | [diff] [blame] | 982 | |
David Goodger | 1cbf206 | 2004-10-03 15:55:09 +0000 | [diff] [blame] | 983 | def test_set_nonstring_types(self): |
| 984 | cf = self.newconfig() |
| 985 | cf.add_section('non-string') |
| 986 | cf.set('non-string', 'int', 1) |
| 987 | cf.set('non-string', 'list', [0, 1, 1, 2, 3, 5, 8, 13]) |
| 988 | cf.set('non-string', 'dict', {'pi': 3.14159}) |
| 989 | self.assertEqual(cf.get('non-string', 'int'), 1) |
| 990 | self.assertEqual(cf.get('non-string', 'list'), |
| 991 | [0, 1, 1, 2, 3, 5, 8, 13]) |
| 992 | self.assertEqual(cf.get('non-string', 'dict'), {'pi': 3.14159}) |
Łukasz Langa | 2cf9ddb | 2010-12-04 12:46:01 +0000 | [diff] [blame] | 993 | cf.add_section(123) |
| 994 | cf.set(123, 'this is sick', True) |
| 995 | self.assertEqual(cf.get(123, 'this is sick'), True) |
| 996 | if cf._dict.__class__ is configparser._default_dict: |
| 997 | # would not work for SortedDict; only checking for the most common |
| 998 | # default dictionary (OrderedDict) |
| 999 | cf.optionxform = lambda x: x |
| 1000 | cf.set('non-string', 1, 1) |
| 1001 | self.assertEqual(cf.get('non-string', 1), 1) |
Tim Peters | ab9b32c | 2004-10-03 18:35:19 +0000 | [diff] [blame] | 1002 | |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 1003 | class RawConfigParserTestCaseNonStandardDelimiters(RawConfigParserTestCase): |
| 1004 | delimiters = (':=', '$') |
| 1005 | comment_prefixes = ('//', '"') |
Łukasz Langa | b25a791 | 2010-12-17 01:32:29 +0000 | [diff] [blame] | 1006 | inline_comment_prefixes = ('//', '"') |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 1007 | |
Łukasz Langa | b25a791 | 2010-12-17 01:32:29 +0000 | [diff] [blame] | 1008 | class RawConfigParserTestSambaConf(CfgParserTestCaseClass): |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 1009 | config_class = configparser.RawConfigParser |
Łukasz Langa | b25a791 | 2010-12-17 01:32:29 +0000 | [diff] [blame] | 1010 | comment_prefixes = ('#', ';', '----') |
| 1011 | inline_comment_prefixes = ('//',) |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 1012 | empty_lines_in_values = False |
| 1013 | |
| 1014 | def test_reading(self): |
| 1015 | smbconf = support.findfile("cfgparser.2") |
| 1016 | # check when we pass a mix of readable and non-readable files: |
| 1017 | cf = self.newconfig() |
Georg Brandl | 8dcaa73 | 2010-07-29 12:17:40 +0000 | [diff] [blame] | 1018 | parsed_files = cf.read([smbconf, "nonexistent-file"], encoding='utf-8') |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 1019 | self.assertEqual(parsed_files, [smbconf]) |
| 1020 | sections = ['global', 'homes', 'printers', |
| 1021 | 'print$', 'pdf-generator', 'tmp', 'Agustin'] |
| 1022 | self.assertEqual(cf.sections(), sections) |
| 1023 | self.assertEqual(cf.get("global", "workgroup"), "MDKGROUP") |
| 1024 | self.assertEqual(cf.getint("global", "max log size"), 50) |
| 1025 | self.assertEqual(cf.get("global", "hosts allow"), "127.") |
| 1026 | self.assertEqual(cf.get("tmp", "echo command"), "cat %s; rm %s") |
Fred Drake | 8ef6767 | 2000-09-27 22:45:25 +0000 | [diff] [blame] | 1027 | |
Łukasz Langa | 7f64c8a | 2010-12-16 01:16:22 +0000 | [diff] [blame] | 1028 | class ConfigParserTestCaseExtendedInterpolation(BasicTestCase): |
| 1029 | config_class = configparser.ConfigParser |
Łukasz Langa | b6a6f5f | 2010-12-03 16:28:00 +0000 | [diff] [blame] | 1030 | interpolation = configparser.ExtendedInterpolation() |
| 1031 | default_section = 'common' |
Łukasz Langa | e698cd5 | 2011-04-28 10:58:57 +0200 | [diff] [blame] | 1032 | strict = True |
| 1033 | |
| 1034 | def fromstring(self, string, defaults=None, optionxform=None): |
| 1035 | cf = self.newconfig(defaults) |
| 1036 | if optionxform: |
| 1037 | cf.optionxform = optionxform |
| 1038 | cf.read_string(string) |
| 1039 | return cf |
Łukasz Langa | b6a6f5f | 2010-12-03 16:28:00 +0000 | [diff] [blame] | 1040 | |
| 1041 | def test_extended_interpolation(self): |
| 1042 | cf = self.fromstring(textwrap.dedent(""" |
| 1043 | [common] |
| 1044 | favourite Beatle = Paul |
| 1045 | favourite color = green |
| 1046 | |
| 1047 | [tom] |
| 1048 | favourite band = ${favourite color} day |
| 1049 | favourite pope = John ${favourite Beatle} II |
| 1050 | sequel = ${favourite pope}I |
| 1051 | |
| 1052 | [ambv] |
| 1053 | favourite Beatle = George |
| 1054 | son of Edward VII = ${favourite Beatle} V |
| 1055 | son of George V = ${son of Edward VII}I |
| 1056 | |
| 1057 | [stanley] |
| 1058 | favourite Beatle = ${ambv:favourite Beatle} |
| 1059 | favourite pope = ${tom:favourite pope} |
| 1060 | favourite color = black |
| 1061 | favourite state of mind = paranoid |
| 1062 | favourite movie = soylent ${common:favourite color} |
| 1063 | favourite song = ${favourite color} sabbath - ${favourite state of mind} |
| 1064 | """).strip()) |
| 1065 | |
| 1066 | eq = self.assertEqual |
| 1067 | eq(cf['common']['favourite Beatle'], 'Paul') |
| 1068 | eq(cf['common']['favourite color'], 'green') |
| 1069 | eq(cf['tom']['favourite Beatle'], 'Paul') |
| 1070 | eq(cf['tom']['favourite color'], 'green') |
| 1071 | eq(cf['tom']['favourite band'], 'green day') |
| 1072 | eq(cf['tom']['favourite pope'], 'John Paul II') |
| 1073 | eq(cf['tom']['sequel'], 'John Paul III') |
| 1074 | eq(cf['ambv']['favourite Beatle'], 'George') |
| 1075 | eq(cf['ambv']['favourite color'], 'green') |
| 1076 | eq(cf['ambv']['son of Edward VII'], 'George V') |
| 1077 | eq(cf['ambv']['son of George V'], 'George VI') |
| 1078 | eq(cf['stanley']['favourite Beatle'], 'George') |
| 1079 | eq(cf['stanley']['favourite color'], 'black') |
| 1080 | eq(cf['stanley']['favourite state of mind'], 'paranoid') |
| 1081 | eq(cf['stanley']['favourite movie'], 'soylent green') |
| 1082 | eq(cf['stanley']['favourite pope'], 'John Paul II') |
| 1083 | eq(cf['stanley']['favourite song'], |
| 1084 | 'black sabbath - paranoid') |
| 1085 | |
| 1086 | def test_endless_loop(self): |
| 1087 | cf = self.fromstring(textwrap.dedent(""" |
| 1088 | [one for you] |
| 1089 | ping = ${one for me:pong} |
| 1090 | |
| 1091 | [one for me] |
| 1092 | pong = ${one for you:ping} |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 1093 | |
| 1094 | [selfish] |
| 1095 | me = ${me} |
Łukasz Langa | b6a6f5f | 2010-12-03 16:28:00 +0000 | [diff] [blame] | 1096 | """).strip()) |
| 1097 | |
| 1098 | with self.assertRaises(configparser.InterpolationDepthError): |
| 1099 | cf['one for you']['ping'] |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 1100 | with self.assertRaises(configparser.InterpolationDepthError): |
| 1101 | cf['selfish']['me'] |
Łukasz Langa | b6a6f5f | 2010-12-03 16:28:00 +0000 | [diff] [blame] | 1102 | |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 1103 | def test_strange_options(self): |
| 1104 | cf = self.fromstring(""" |
| 1105 | [dollars] |
| 1106 | $var = $$value |
| 1107 | $var2 = ${$var} |
| 1108 | ${sick} = cannot interpolate me |
| 1109 | |
| 1110 | [interpolated] |
| 1111 | $other = ${dollars:$var} |
| 1112 | $trying = ${dollars:${sick}} |
| 1113 | """) |
| 1114 | |
| 1115 | self.assertEqual(cf['dollars']['$var'], '$value') |
| 1116 | self.assertEqual(cf['interpolated']['$other'], '$value') |
| 1117 | self.assertEqual(cf['dollars']['${sick}'], 'cannot interpolate me') |
| 1118 | exception_class = configparser.InterpolationMissingOptionError |
| 1119 | with self.assertRaises(exception_class) as cm: |
| 1120 | cf['interpolated']['$trying'] |
| 1121 | self.assertEqual(cm.exception.reference, 'dollars:${sick') |
| 1122 | self.assertEqual(cm.exception.args[2], '}') #rawval |
| 1123 | |
Łukasz Langa | e698cd5 | 2011-04-28 10:58:57 +0200 | [diff] [blame] | 1124 | def test_case_sensitivity_basic(self): |
| 1125 | ini = textwrap.dedent(""" |
| 1126 | [common] |
| 1127 | optionlower = value |
| 1128 | OptionUpper = Value |
| 1129 | |
| 1130 | [Common] |
| 1131 | optionlower = a better ${common:optionlower} |
| 1132 | OptionUpper = A Better ${common:OptionUpper} |
| 1133 | |
| 1134 | [random] |
| 1135 | foolower = ${common:optionlower} redefined |
| 1136 | FooUpper = ${Common:OptionUpper} Redefined |
| 1137 | """).strip() |
| 1138 | |
| 1139 | cf = self.fromstring(ini) |
| 1140 | eq = self.assertEqual |
| 1141 | eq(cf['common']['optionlower'], 'value') |
| 1142 | eq(cf['common']['OptionUpper'], 'Value') |
| 1143 | eq(cf['Common']['optionlower'], 'a better value') |
| 1144 | eq(cf['Common']['OptionUpper'], 'A Better Value') |
| 1145 | eq(cf['random']['foolower'], 'value redefined') |
| 1146 | eq(cf['random']['FooUpper'], 'A Better Value Redefined') |
| 1147 | |
| 1148 | def test_case_sensitivity_conflicts(self): |
| 1149 | ini = textwrap.dedent(""" |
| 1150 | [common] |
| 1151 | option = value |
| 1152 | Option = Value |
| 1153 | |
| 1154 | [Common] |
| 1155 | option = a better ${common:option} |
| 1156 | Option = A Better ${common:Option} |
| 1157 | |
| 1158 | [random] |
| 1159 | foo = ${common:option} redefined |
| 1160 | Foo = ${Common:Option} Redefined |
| 1161 | """).strip() |
| 1162 | with self.assertRaises(configparser.DuplicateOptionError): |
| 1163 | cf = self.fromstring(ini) |
| 1164 | |
| 1165 | # raw options |
| 1166 | cf = self.fromstring(ini, optionxform=lambda opt: opt) |
| 1167 | eq = self.assertEqual |
| 1168 | eq(cf['common']['option'], 'value') |
| 1169 | eq(cf['common']['Option'], 'Value') |
| 1170 | eq(cf['Common']['option'], 'a better value') |
| 1171 | eq(cf['Common']['Option'], 'A Better Value') |
| 1172 | eq(cf['random']['foo'], 'value redefined') |
| 1173 | eq(cf['random']['Foo'], 'A Better Value Redefined') |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 1174 | |
| 1175 | def test_other_errors(self): |
| 1176 | cf = self.fromstring(""" |
| 1177 | [interpolation fail] |
| 1178 | case1 = ${where's the brace |
| 1179 | case2 = ${does_not_exist} |
| 1180 | case3 = ${wrong_section:wrong_value} |
| 1181 | case4 = ${i:like:colon:characters} |
| 1182 | case5 = $100 for Fail No 5! |
| 1183 | """) |
| 1184 | |
| 1185 | with self.assertRaises(configparser.InterpolationSyntaxError): |
| 1186 | cf['interpolation fail']['case1'] |
| 1187 | with self.assertRaises(configparser.InterpolationMissingOptionError): |
| 1188 | cf['interpolation fail']['case2'] |
| 1189 | with self.assertRaises(configparser.InterpolationMissingOptionError): |
| 1190 | cf['interpolation fail']['case3'] |
| 1191 | with self.assertRaises(configparser.InterpolationSyntaxError): |
| 1192 | cf['interpolation fail']['case4'] |
| 1193 | with self.assertRaises(configparser.InterpolationSyntaxError): |
| 1194 | cf['interpolation fail']['case5'] |
| 1195 | with self.assertRaises(ValueError): |
| 1196 | cf['interpolation fail']['case6'] = "BLACK $ABBATH" |
Łukasz Langa | b6a6f5f | 2010-12-03 16:28:00 +0000 | [diff] [blame] | 1197 | |
| 1198 | |
Łukasz Langa | 7f64c8a | 2010-12-16 01:16:22 +0000 | [diff] [blame] | 1199 | class ConfigParserTestCaseNoValue(ConfigParserTestCase): |
Fred Drake | 03c44a3 | 2010-02-19 06:08:41 +0000 | [diff] [blame] | 1200 | allow_no_value = True |
| 1201 | |
Łukasz Langa | 7f64c8a | 2010-12-16 01:16:22 +0000 | [diff] [blame] | 1202 | class ConfigParserTestCaseTrickyFile(CfgParserTestCaseClass): |
| 1203 | config_class = configparser.ConfigParser |
Georg Brandl | 8dcaa73 | 2010-07-29 12:17:40 +0000 | [diff] [blame] | 1204 | delimiters = {'='} |
| 1205 | comment_prefixes = {'#'} |
| 1206 | allow_no_value = True |
| 1207 | |
| 1208 | def test_cfgparser_dot_3(self): |
| 1209 | tricky = support.findfile("cfgparser.3") |
| 1210 | cf = self.newconfig() |
| 1211 | self.assertEqual(len(cf.read(tricky, encoding='utf-8')), 1) |
| 1212 | self.assertEqual(cf.sections(), ['strange', |
| 1213 | 'corruption', |
| 1214 | 'yeah, sections can be ' |
| 1215 | 'indented as well', |
| 1216 | 'another one!', |
| 1217 | 'no values here', |
| 1218 | 'tricky interpolation', |
| 1219 | 'more interpolation']) |
Łukasz Langa | c264c09 | 2010-11-20 16:15:37 +0000 | [diff] [blame] | 1220 | self.assertEqual(cf.getint(self.default_section, 'go', |
Fred Drake | cc645b9 | 2010-09-04 04:35:34 +0000 | [diff] [blame] | 1221 | vars={'interpolate': '-1'}), -1) |
| 1222 | with self.assertRaises(ValueError): |
| 1223 | # no interpolation will happen |
Łukasz Langa | c264c09 | 2010-11-20 16:15:37 +0000 | [diff] [blame] | 1224 | cf.getint(self.default_section, 'go', raw=True, |
| 1225 | vars={'interpolate': '-1'}) |
Georg Brandl | 8dcaa73 | 2010-07-29 12:17:40 +0000 | [diff] [blame] | 1226 | self.assertEqual(len(cf.get('strange', 'other').split('\n')), 4) |
| 1227 | self.assertEqual(len(cf.get('corruption', 'value').split('\n')), 10) |
| 1228 | longname = 'yeah, sections can be indented as well' |
| 1229 | self.assertFalse(cf.getboolean(longname, 'are they subsections')) |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 1230 | self.assertEqual(cf.get(longname, 'lets use some Unicode'), '片仮名') |
Georg Brandl | 8dcaa73 | 2010-07-29 12:17:40 +0000 | [diff] [blame] | 1231 | self.assertEqual(len(cf.items('another one!')), 5) # 4 in section and |
| 1232 | # `go` from DEFAULT |
| 1233 | with self.assertRaises(configparser.InterpolationMissingOptionError): |
| 1234 | cf.items('no values here') |
| 1235 | self.assertEqual(cf.get('tricky interpolation', 'lets'), 'do this') |
| 1236 | self.assertEqual(cf.get('tricky interpolation', 'lets'), |
| 1237 | cf.get('tricky interpolation', 'go')) |
| 1238 | self.assertEqual(cf.get('more interpolation', 'lets'), 'go shopping') |
| 1239 | |
| 1240 | def test_unicode_failure(self): |
| 1241 | tricky = support.findfile("cfgparser.3") |
| 1242 | cf = self.newconfig() |
| 1243 | with self.assertRaises(UnicodeDecodeError): |
| 1244 | cf.read(tricky, encoding='ascii') |
Fred Drake | 03c44a3 | 2010-02-19 06:08:41 +0000 | [diff] [blame] | 1245 | |
Fred Drake | 8844441 | 2010-09-03 04:22:36 +0000 | [diff] [blame] | 1246 | |
| 1247 | class Issue7005TestCase(unittest.TestCase): |
| 1248 | """Test output when None is set() as a value and allow_no_value == False. |
| 1249 | |
| 1250 | http://bugs.python.org/issue7005 |
| 1251 | |
| 1252 | """ |
| 1253 | |
| 1254 | expected_output = "[section]\noption = None\n\n" |
| 1255 | |
| 1256 | def prepare(self, config_class): |
| 1257 | # This is the default, but that's the point. |
Łukasz Langa | 7f64c8a | 2010-12-16 01:16:22 +0000 | [diff] [blame] | 1258 | cp = config_class(allow_no_value=False) |
Fred Drake | 8844441 | 2010-09-03 04:22:36 +0000 | [diff] [blame] | 1259 | cp.add_section("section") |
| 1260 | cp.set("section", "option", None) |
| 1261 | sio = io.StringIO() |
| 1262 | cp.write(sio) |
| 1263 | return sio.getvalue() |
| 1264 | |
| 1265 | def test_none_as_value_stringified(self): |
Łukasz Langa | 7f64c8a | 2010-12-16 01:16:22 +0000 | [diff] [blame] | 1266 | cp = configparser.ConfigParser(allow_no_value=False) |
| 1267 | cp.add_section("section") |
| 1268 | with self.assertRaises(TypeError): |
| 1269 | cp.set("section", "option", None) |
Fred Drake | 8844441 | 2010-09-03 04:22:36 +0000 | [diff] [blame] | 1270 | |
| 1271 | def test_none_as_value_stringified_raw(self): |
| 1272 | output = self.prepare(configparser.RawConfigParser) |
| 1273 | self.assertEqual(output, self.expected_output) |
| 1274 | |
| 1275 | |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 1276 | class SortedTestCase(RawConfigParserTestCase): |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 1277 | dict_type = SortedDict |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 1278 | |
| 1279 | def test_sorted(self): |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 1280 | cf = self.fromstring("[b]\n" |
| 1281 | "o4=1\n" |
| 1282 | "o3=2\n" |
| 1283 | "o2=3\n" |
| 1284 | "o1=4\n" |
| 1285 | "[a]\n" |
| 1286 | "k=v\n") |
Guido van Rossum | 34d1928 | 2007-08-09 01:03:29 +0000 | [diff] [blame] | 1287 | output = io.StringIO() |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 1288 | cf.write(output) |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 1289 | self.assertEqual(output.getvalue(), |
| 1290 | "[a]\n" |
| 1291 | "k = v\n\n" |
| 1292 | "[b]\n" |
| 1293 | "o1 = 4\n" |
| 1294 | "o2 = 3\n" |
| 1295 | "o3 = 2\n" |
| 1296 | "o4 = 1\n\n") |
Fred Drake | 0eebd5c | 2002-10-25 21:52:00 +0000 | [diff] [blame] | 1297 | |
Fred Drake | 03c44a3 | 2010-02-19 06:08:41 +0000 | [diff] [blame] | 1298 | |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 1299 | class CompatibleTestCase(CfgParserTestCaseClass): |
| 1300 | config_class = configparser.RawConfigParser |
Łukasz Langa | b25a791 | 2010-12-17 01:32:29 +0000 | [diff] [blame] | 1301 | comment_prefixes = '#;' |
| 1302 | inline_comment_prefixes = ';' |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 1303 | |
| 1304 | def test_comment_handling(self): |
| 1305 | config_string = textwrap.dedent("""\ |
| 1306 | [Commented Bar] |
| 1307 | baz=qwe ; a comment |
| 1308 | foo: bar # not a comment! |
| 1309 | # but this is a comment |
| 1310 | ; another comment |
Georg Brandl | 8dcaa73 | 2010-07-29 12:17:40 +0000 | [diff] [blame] | 1311 | quirk: this;is not a comment |
Georg Brandl | 7b280e9 | 2010-07-31 20:13:44 +0000 | [diff] [blame] | 1312 | ; a space must precede an inline comment |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 1313 | """) |
| 1314 | cf = self.fromstring(config_string) |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 1315 | self.assertEqual(cf.get('Commented Bar', 'foo'), |
| 1316 | 'bar # not a comment!') |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 1317 | self.assertEqual(cf.get('Commented Bar', 'baz'), 'qwe') |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 1318 | self.assertEqual(cf.get('Commented Bar', 'quirk'), |
| 1319 | 'this;is not a comment') |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 1320 | |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 1321 | class CopyTestCase(BasicTestCase): |
| 1322 | config_class = configparser.ConfigParser |
| 1323 | |
| 1324 | def fromstring(self, string, defaults=None): |
| 1325 | cf = self.newconfig(defaults) |
| 1326 | cf.read_string(string) |
| 1327 | cf_copy = self.newconfig() |
| 1328 | cf_copy.read_dict(cf) |
| 1329 | # we have to clean up option duplicates that appeared because of |
| 1330 | # the magic DEFAULTSECT behaviour. |
| 1331 | for section in cf_copy.values(): |
| 1332 | if section.name == self.default_section: |
| 1333 | continue |
| 1334 | for default, value in cf[self.default_section].items(): |
| 1335 | if section[default] == value: |
| 1336 | del section[default] |
| 1337 | return cf_copy |
| 1338 | |
Łukasz Langa | daab1c8 | 2011-04-27 18:10:05 +0200 | [diff] [blame] | 1339 | |
| 1340 | class FakeFile: |
| 1341 | def __init__(self): |
| 1342 | file_path = support.findfile("cfgparser.1") |
| 1343 | with open(file_path) as f: |
| 1344 | self.lines = f.readlines() |
| 1345 | self.lines.reverse() |
| 1346 | |
| 1347 | def readline(self): |
| 1348 | if len(self.lines): |
| 1349 | return self.lines.pop() |
| 1350 | return '' |
| 1351 | |
| 1352 | |
| 1353 | def readline_generator(f): |
| 1354 | """As advised in Doc/library/configparser.rst.""" |
| 1355 | line = f.readline() |
Łukasz Langa | ba702da | 2011-04-28 12:02:05 +0200 | [diff] [blame] | 1356 | while line: |
Łukasz Langa | daab1c8 | 2011-04-27 18:10:05 +0200 | [diff] [blame] | 1357 | yield line |
| 1358 | line = f.readline() |
| 1359 | |
| 1360 | |
| 1361 | class ReadFileTestCase(unittest.TestCase): |
| 1362 | def test_file(self): |
| 1363 | file_path = support.findfile("cfgparser.1") |
| 1364 | parser = configparser.ConfigParser() |
| 1365 | with open(file_path) as f: |
| 1366 | parser.read_file(f) |
Łukasz Langa | ba702da | 2011-04-28 12:02:05 +0200 | [diff] [blame] | 1367 | self.assertIn("Foo Bar", parser) |
| 1368 | self.assertIn("foo", parser["Foo Bar"]) |
Łukasz Langa | daab1c8 | 2011-04-27 18:10:05 +0200 | [diff] [blame] | 1369 | self.assertEqual(parser["Foo Bar"]["foo"], "newbar") |
| 1370 | |
| 1371 | def test_iterable(self): |
| 1372 | lines = textwrap.dedent(""" |
| 1373 | [Foo Bar] |
| 1374 | foo=newbar""").strip().split('\n') |
| 1375 | parser = configparser.ConfigParser() |
| 1376 | parser.read_file(lines) |
Łukasz Langa | ba702da | 2011-04-28 12:02:05 +0200 | [diff] [blame] | 1377 | self.assertIn("Foo Bar", parser) |
| 1378 | self.assertIn("foo", parser["Foo Bar"]) |
Łukasz Langa | daab1c8 | 2011-04-27 18:10:05 +0200 | [diff] [blame] | 1379 | self.assertEqual(parser["Foo Bar"]["foo"], "newbar") |
| 1380 | |
| 1381 | def test_readline_generator(self): |
| 1382 | """Issue #11670.""" |
| 1383 | parser = configparser.ConfigParser() |
| 1384 | with self.assertRaises(TypeError): |
| 1385 | parser.read_file(FakeFile()) |
| 1386 | parser.read_file(readline_generator(FakeFile())) |
Łukasz Langa | ba702da | 2011-04-28 12:02:05 +0200 | [diff] [blame] | 1387 | self.assertIn("Foo Bar", parser) |
| 1388 | self.assertIn("foo", parser["Foo Bar"]) |
Łukasz Langa | daab1c8 | 2011-04-27 18:10:05 +0200 | [diff] [blame] | 1389 | self.assertEqual(parser["Foo Bar"]["foo"], "newbar") |
| 1390 | |
| 1391 | |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 1392 | class CoverageOneHundredTestCase(unittest.TestCase): |
| 1393 | """Covers edge cases in the codebase.""" |
| 1394 | |
| 1395 | def test_duplicate_option_error(self): |
| 1396 | error = configparser.DuplicateOptionError('section', 'option') |
| 1397 | self.assertEqual(error.section, 'section') |
| 1398 | self.assertEqual(error.option, 'option') |
| 1399 | self.assertEqual(error.source, None) |
| 1400 | self.assertEqual(error.lineno, None) |
| 1401 | self.assertEqual(error.args, ('section', 'option', None, None)) |
| 1402 | self.assertEqual(str(error), "Option 'option' in section 'section' " |
| 1403 | "already exists") |
| 1404 | |
| 1405 | def test_interpolation_depth_error(self): |
| 1406 | error = configparser.InterpolationDepthError('option', 'section', |
| 1407 | 'rawval') |
| 1408 | self.assertEqual(error.args, ('option', 'section', 'rawval')) |
| 1409 | self.assertEqual(error.option, 'option') |
| 1410 | self.assertEqual(error.section, 'section') |
| 1411 | |
| 1412 | def test_parsing_error(self): |
| 1413 | with self.assertRaises(ValueError) as cm: |
| 1414 | configparser.ParsingError() |
| 1415 | self.assertEqual(str(cm.exception), "Required argument `source' not " |
| 1416 | "given.") |
| 1417 | with self.assertRaises(ValueError) as cm: |
| 1418 | configparser.ParsingError(source='source', filename='filename') |
| 1419 | self.assertEqual(str(cm.exception), "Cannot specify both `filename' " |
| 1420 | "and `source'. Use `source'.") |
| 1421 | error = configparser.ParsingError(filename='source') |
| 1422 | self.assertEqual(error.source, 'source') |
| 1423 | with warnings.catch_warnings(record=True) as w: |
| 1424 | warnings.simplefilter("always", DeprecationWarning) |
| 1425 | self.assertEqual(error.filename, 'source') |
| 1426 | error.filename = 'filename' |
| 1427 | self.assertEqual(error.source, 'filename') |
| 1428 | for warning in w: |
| 1429 | self.assertTrue(warning.category is DeprecationWarning) |
| 1430 | |
| 1431 | def test_interpolation_validation(self): |
| 1432 | parser = configparser.ConfigParser() |
| 1433 | parser.read_string(""" |
| 1434 | [section] |
| 1435 | invalid_percent = % |
| 1436 | invalid_reference = %(() |
| 1437 | invalid_variable = %(does_not_exist)s |
| 1438 | """) |
| 1439 | with self.assertRaises(configparser.InterpolationSyntaxError) as cm: |
| 1440 | parser['section']['invalid_percent'] |
| 1441 | self.assertEqual(str(cm.exception), "'%' must be followed by '%' or " |
| 1442 | "'(', found: '%'") |
| 1443 | with self.assertRaises(configparser.InterpolationSyntaxError) as cm: |
| 1444 | parser['section']['invalid_reference'] |
| 1445 | self.assertEqual(str(cm.exception), "bad interpolation variable " |
| 1446 | "reference '%(()'") |
| 1447 | |
| 1448 | def test_readfp_deprecation(self): |
| 1449 | sio = io.StringIO(""" |
| 1450 | [section] |
| 1451 | option = value |
| 1452 | """) |
| 1453 | parser = configparser.ConfigParser() |
| 1454 | with warnings.catch_warnings(record=True) as w: |
| 1455 | warnings.simplefilter("always", DeprecationWarning) |
| 1456 | parser.readfp(sio, filename='StringIO') |
| 1457 | for warning in w: |
| 1458 | self.assertTrue(warning.category is DeprecationWarning) |
| 1459 | self.assertEqual(len(parser), 2) |
| 1460 | self.assertEqual(parser['section']['option'], 'value') |
| 1461 | |
| 1462 | def test_safeconfigparser_deprecation(self): |
| 1463 | with warnings.catch_warnings(record=True) as w: |
| 1464 | warnings.simplefilter("always", DeprecationWarning) |
| 1465 | parser = configparser.SafeConfigParser() |
| 1466 | for warning in w: |
| 1467 | self.assertTrue(warning.category is DeprecationWarning) |
| 1468 | |
| 1469 | def test_sectionproxy_repr(self): |
| 1470 | parser = configparser.ConfigParser() |
| 1471 | parser.read_string(""" |
| 1472 | [section] |
| 1473 | key = value |
| 1474 | """) |
| 1475 | self.assertEqual(repr(parser['section']), '<Section: section>') |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 1476 | |
Fred Drake | c6f2891 | 2002-10-25 19:40:49 +0000 | [diff] [blame] | 1477 | def test_main(): |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 1478 | support.run_unittest( |
Walter Dörwald | 21d3a32 | 2003-05-01 17:45:56 +0000 | [diff] [blame] | 1479 | ConfigParserTestCase, |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 1480 | ConfigParserTestCaseNonStandardDelimiters, |
Łukasz Langa | 7f64c8a | 2010-12-16 01:16:22 +0000 | [diff] [blame] | 1481 | ConfigParserTestCaseNoValue, |
| 1482 | ConfigParserTestCaseExtendedInterpolation, |
| 1483 | ConfigParserTestCaseLegacyInterpolation, |
Łukasz Langa | 1aa422f | 2011-04-28 17:03:45 +0200 | [diff] [blame^] | 1484 | ConfigParserTestCaseNoInterpolation, |
Łukasz Langa | 7f64c8a | 2010-12-16 01:16:22 +0000 | [diff] [blame] | 1485 | ConfigParserTestCaseTrickyFile, |
Brian Curtin | 9a27b0c | 2010-07-26 00:27:10 +0000 | [diff] [blame] | 1486 | MultilineValuesTestCase, |
Walter Dörwald | 21d3a32 | 2003-05-01 17:45:56 +0000 | [diff] [blame] | 1487 | RawConfigParserTestCase, |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 1488 | RawConfigParserTestCaseNonStandardDelimiters, |
| 1489 | RawConfigParserTestSambaConf, |
Brian Curtin | 9a27b0c | 2010-07-26 00:27:10 +0000 | [diff] [blame] | 1490 | SortedTestCase, |
Fred Drake | 8844441 | 2010-09-03 04:22:36 +0000 | [diff] [blame] | 1491 | Issue7005TestCase, |
Fred Drake | a492362 | 2010-08-09 12:52:45 +0000 | [diff] [blame] | 1492 | StrictTestCase, |
Georg Brandl | 96a60ae | 2010-07-28 13:13:46 +0000 | [diff] [blame] | 1493 | CompatibleTestCase, |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 1494 | CopyTestCase, |
Łukasz Langa | c264c09 | 2010-11-20 16:15:37 +0000 | [diff] [blame] | 1495 | ConfigParserTestCaseNonStandardDefaultSection, |
Łukasz Langa | daab1c8 | 2011-04-27 18:10:05 +0200 | [diff] [blame] | 1496 | ReadFileTestCase, |
Łukasz Langa | 71b37a5 | 2010-12-17 21:56:32 +0000 | [diff] [blame] | 1497 | CoverageOneHundredTestCase, |
Fred Drake | 03c44a3 | 2010-02-19 06:08:41 +0000 | [diff] [blame] | 1498 | ) |