2015-09-06 23:33:56 +01:00
|
|
|
import string
|
2019-05-13 22:39:10 +01:00
|
|
|
from collections import OrderedDict
|
|
|
|
from io import StringIO
|
2015-09-06 23:33:56 +01:00
|
|
|
|
2017-07-05 00:52:24 +01:00
|
|
|
from borgmatic.config import legacy as module
|
2015-09-06 23:33:56 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_parse_section_options_with_punctuation_should_return_section_options():
|
|
|
|
parser = module.RawConfigParser()
|
2018-09-29 23:06:57 +01:00
|
|
|
parser.read_file(StringIO('[section]\nfoo: {}\n'.format(string.punctuation)))
|
2015-09-06 23:33:56 +01:00
|
|
|
|
|
|
|
section_format = module.Section_format(
|
2018-09-30 06:45:00 +01:00
|
|
|
'section', (module.Config_option('foo', str, required=True),)
|
2015-09-06 23:33:56 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
config = module.parse_section_options(parser, section_format)
|
|
|
|
|
2018-09-30 06:45:00 +01:00
|
|
|
assert config == OrderedDict((('foo', string.punctuation),))
|