- Unify the naming pattern of types and enums. Specifically: - use `VC_Param` instead of `VCParam`. The goal here is to make the important information (Param, Source, PropertyName, etc.) easy to see at a glance while preserving a prefix that allows multiple implementation to coexist (VC3_Source vs. VC4_Source) and also be easily distinguishable at a glance. - use `pnName` instead of `cnName`. The VCard standard refers to each line of data as a "content line," so the original name of each was "Content." However, the spec more commonly refers to each piece of data as a "property." There is a 1-to-1 mapping of content lines to property instances, but property is a more accurate name. - Introduce the idea of property cardinality to the VCard3 implementation. The spec does not tightly define property cardinality, but implies it with statements like "if the NAME type is present, then *its* value is *the* displayable, presentation text associated..." (emphasis added). Similar language implies some properties must be present exactly once (FN, N, VERSION) or at most once (NAME, PROFILE, SOURCE, BDAY, CATEGORIES, PRODID, REV, SORT-STRING, UID). Any other properties are assumed to be allowed any number of times (including 0). In the case of a VCard that contains multiple instances of properties expected to be singular, the parser will still parse and store these properties. They can be accessed via the `vcard#allPropsOfType` function. For example: # vc3 is a VCard3 allPropsOfType[VC3_N](vc3) If we see over the course of time that other implementations regularly use multiple instances of properties we have expected to be singular, we are open to changing the contract to treat them so (though this may be a breaking change). - Refactor the VCard3 implementation to use generated property accessors, following a similar pattern to the new VCard4 implementation. - Remove the accessor definitions that allow access via the content seq directly (`vc3.content.name` for example). There really isn't a reason for this use-case and the library is simpler without exposing this.
74 lines
2.3 KiB
Nim
74 lines
2.3 KiB
Nim
import options, unittest, zero_functional
|
|
|
|
import ./vcard
|
|
import ./vcard/vcard3
|
|
|
|
suite "vcard/vcard3":
|
|
|
|
test "vcard3/private tests":
|
|
runVcard3PrivateTests()
|
|
|
|
let jdbVCard = readFile("tests/jdb.vcf")
|
|
|
|
test "parseVCard3":
|
|
check parseVCards(jdbVCard).len == 1
|
|
|
|
test "parseVCard3File":
|
|
check parseVCardsFromFile("tests/jdb.vcf").len == 1
|
|
|
|
# TODO: remove cast after finishing VCard4 implementation
|
|
let jdb = cast[VCard3](parseVCards(jdbVCard)[0])
|
|
|
|
test "email is parsed correctly":
|
|
check:
|
|
jdb.email.len == 7
|
|
jdb.email[0].value == "jonathan@jdbernard.com"
|
|
jdb.email[0].emailType.contains("pref")
|
|
jdb.email[0].emailType.contains("home")
|
|
jdb.email[1].value == "jdb@jdb-software.com"
|
|
jdb.email[1].emailType.contains("work")
|
|
jdb.email[2].group.isSome
|
|
jdb.email[2].group.get == "email2"
|
|
jdb.email[6].value == "jbernard@vectra.ai"
|
|
jdb.email[6].emailType.contains("work")
|
|
|
|
test "tel is parsed correctly":
|
|
check:
|
|
jdb.tel.len == 2
|
|
jdb.tel[0].value == "(512) 777-1602"
|
|
jdb.tel[0].telType.contains("CELL")
|
|
|
|
test "RFC2426 Author's VCards":
|
|
let vcardsStr =
|
|
"BEGIN:vCard\r\n" &
|
|
"VERSION:3.0\r\n" &
|
|
"FN:Frank Dawson\r\n" &
|
|
"ORG:Lotus Development Corporation\r\n" &
|
|
"ADR;TYPE=WORK,POSTAL,PARCEL:;;6544 Battleford Drive\r\n" &
|
|
" ;Raleigh;NC;27613-3502;U.S.A.\r\n" &
|
|
"TEL;TYPE=VOICE,MSG,WORK:+1-919-676-9515\r\n" &
|
|
"TEL;TYPE=FAX,WORK:+1-919-676-9564\r\n" &
|
|
"EMAIL;TYPE=INTERNET,PREF:Frank_Dawson@Lotus.com\r\n" &
|
|
"EMAIL;TYPE=INTERNET:fdawson@earthlink.net\r\n" &
|
|
"URL:http://home.earthlink.net/~fdawson\r\n" &
|
|
"END:vCard\r\n" &
|
|
"\r\n" &
|
|
"\r\n" &
|
|
"BEGIN:vCard\r\n" &
|
|
"VERSION:3.0\r\n" &
|
|
"FN:Tim Howes\r\n" &
|
|
"ORG:Netscape Communications Corp.\r\n" &
|
|
"ADR;TYPE=WORK:;;501 E. Middlefield Rd.;Mountain View;\r\n" &
|
|
" CA; 94043;U.S.A.\r\n" &
|
|
"TEL;TYPE=VOICE,MSG,WORK:+1-415-937-3419\r\n" &
|
|
"TEL;TYPE=FAX,WORK:+1-415-528-4164\r\n" &
|
|
"EMAIL;TYPE=INTERNET:howes@netscape.com\r\n" &
|
|
"END:vCard\r\n"
|
|
|
|
let vcards = parseVCards(vcardsStr)
|
|
check:
|
|
vcards.len == 2
|
|
cast[VCard3](vcards[0]).fn.value == "Frank Dawson"
|
|
cast[VCard3](vcards[0]).email.len == 2
|
|
(cast[VCard3](vcards[0]).email --> find(it.emailType.contains("PREF"))).isSome
|