mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Add testcase for #89
This commit is contained in:
parent
a79d1ddb52
commit
c8f97b43ec
1 changed files with 21 additions and 2 deletions
|
|
@ -6,11 +6,10 @@
|
||||||
:copyright: (c) 2014 Markus Unterwaditzer & contributors
|
:copyright: (c) 2014 Markus Unterwaditzer & contributors
|
||||||
:license: MIT, see LICENSE for more details.
|
:license: MIT, see LICENSE for more details.
|
||||||
'''
|
'''
|
||||||
|
import textwrap
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
import textwrap
|
|
||||||
|
|
||||||
import vdirsyncer.utils.vobject as vobject
|
import vdirsyncer.utils.vobject as vobject
|
||||||
|
|
||||||
from .. import BARE_EVENT_TEMPLATE, EVENT_TEMPLATE, VCARD_TEMPLATE, \
|
from .. import BARE_EVENT_TEMPLATE, EVENT_TEMPLATE, VCARD_TEMPLATE, \
|
||||||
|
|
@ -172,3 +171,23 @@ def test_multiline_uid_complex():
|
||||||
assert vobject.Item(a).uid == (u'040000008200E00074C5B7101A82E008000000005'
|
assert vobject.Item(a).uid == (u'040000008200E00074C5B7101A82E008000000005'
|
||||||
u'0AAABEEF50DCF001000000062548482FA830A46B9'
|
u'0AAABEEF50DCF001000000062548482FA830A46B9'
|
||||||
u'EA62114AC9F0EF')
|
u'EA62114AC9F0EF')
|
||||||
|
|
||||||
|
|
||||||
|
def test_vcard_property_groups():
|
||||||
|
vcard = textwrap.dedent(u'''
|
||||||
|
BEGIN:VCARD
|
||||||
|
VERSION:3.0
|
||||||
|
MYLABEL123.ADR:;;This is the Address 08; Some City;;12345;Germany
|
||||||
|
MYLABEL123.X-ABLABEL:
|
||||||
|
FN:Some Name
|
||||||
|
N:Name;Some;;;Nickname
|
||||||
|
UID:67c15e43-34d2-4f55-a6c6-4adb7aa7e3b2
|
||||||
|
END:VCARD
|
||||||
|
''').strip()
|
||||||
|
|
||||||
|
book = u'BEGIN:VADDRESSBOOK\n' + vcard + u'\nEND:VADDRESSBOOK'
|
||||||
|
splitted = list(vobject.split_collection(book))
|
||||||
|
assert len(splitted) == 1
|
||||||
|
|
||||||
|
assert vobject.Item(vcard).hash == vobject.Item(splitted[0]).hash
|
||||||
|
assert 'is the Address' in vobject.Item(vcard).parsed['MYLABEL123.ADR']
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue