mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-28 09:25:50 +00:00
* Remove invalid ascii chars from xml, fix #626 * Add changelog * Remove unused imports * Fix errors on older Python versions * Fix tests
40 lines
1.3 KiB
Python
40 lines
1.3 KiB
Python
import pytest
|
|
|
|
from vdirsyncer.storage.dav import _BAD_XML_CHARS, _merge_xml, _parse_xml
|
|
|
|
|
|
def test_xml_utilities():
|
|
x = _parse_xml(b'''<?xml version="1.0" encoding="UTF-8" ?>
|
|
<D:multistatus xmlns:D="DAV:">
|
|
<D:response>
|
|
<D:propstat>
|
|
<D:status>HTTP/1.1 404 Not Found</D:status>
|
|
<D:prop>
|
|
<D:getcontenttype/>
|
|
</D:prop>
|
|
</D:propstat>
|
|
<D:propstat>
|
|
<D:prop>
|
|
<D:resourcetype>
|
|
<D:collection/>
|
|
</D:resourcetype>
|
|
</D:prop>
|
|
</D:propstat>
|
|
</D:response>
|
|
</D:multistatus>
|
|
''')
|
|
|
|
response = x.find('{DAV:}response')
|
|
props = _merge_xml(response.findall('{DAV:}propstat/{DAV:}prop'))
|
|
assert props.find('{DAV:}resourcetype/{DAV:}collection') is not None
|
|
assert props.find('{DAV:}getcontenttype') is not None
|
|
|
|
|
|
@pytest.mark.parametrize('char', range(32))
|
|
def test_xml_specialchars(char):
|
|
x = _parse_xml('<?xml version="1.0" encoding="UTF-8" ?>'
|
|
'<foo>ye{}s\r\n'
|
|
'hello</foo>'.format(chr(char)).encode('ascii'))
|
|
|
|
if char in _BAD_XML_CHARS:
|
|
assert x.text == 'yes\nhello'
|