From 68554920e55e04a22c11fc6ab2780290abba8ed0 Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Sun, 16 Apr 2023 03:34:14 -0500 Subject: [PATCH] Fix bug in parsing TEL content. Rework unit tests. - newVC3_Tel was not assigning the value provided to the constructed object. - Private unit tests were run every time the code was compiled due to how the unittest library works. These now only run as part of the unit tests with `nimble test`. --- src/vcard/private/lexer.nim | 155 +++++++++++++++--------------- src/vcard/vcard3.nim | 181 ++++++++++++++++++------------------ tests/jdb.vcf | 2 +- tests/tlexer.nim | 6 +- tests/tvcard3.nim | 62 +++++++----- vcard.nimble | 2 +- 6 files changed, 212 insertions(+), 196 deletions(-) diff --git a/src/vcard/private/lexer.nim b/src/vcard/private/lexer.nim index e95fdb4..d159b20 100644 --- a/src/vcard/private/lexer.nim +++ b/src/vcard/private/lexer.nim @@ -180,11 +180,6 @@ proc getColNumber*(vcl: VCardLexer, pos: int): int = if vcl.lineStart < pos: return pos - vcl.lineStart else: return (vcl.buffer.len - vcl.lineStart) + pos -## Unit Tests -## ============================================================================ - -import std/unittest - proc dumpLexerState*(l: VCardLexer): string = result = "pos = " & $l.pos & "\p" & @@ -195,7 +190,9 @@ proc dumpLexerState*(l: VCardLexer): string = "bufEnd = " & $l.bufEnd & "\p" & "buffer = " & l.buffer & "\p" -suite "vcard/lexer": +## Unit Tests +## ============================================================================ +proc runVcardLexerPrivateTests*() = const longTestString = "This is my test string. There are many like it but this one is mine." @@ -212,36 +209,34 @@ suite "vcard/lexer": return false return true - #test "fillBuffer doesn't double the buffer needlessly": - # var l: VCardLexer - proc readExpected(vcl: var VCardLexer, s: string): bool = for i in 0.. find(it.emailType.contains("PREF"))).isSome - - test "Jonathan Bernard VCard": - #const jdbVcard = readFile("tests/jdb.vcf") - let jdb = parseVCard3File("tests/jdb.vcf")[0] - check: - jdb.email.len == 7 - jdb.email[0].value == "jonathan@jdbernard.com" - jdb.email[0].emailType.contains("pref") - jdb.fn.value == "Jonathan Bernard" diff --git a/vcard.nimble b/vcard.nimble index ccc997f..22d7412 100644 --- a/vcard.nimble +++ b/vcard.nimble @@ -1,6 +1,6 @@ # Package -version = "0.1.2" +version = "0.1.3" author = "Jonathan Bernard" description = "Nim parser for the vCard format version 3.0 (4.0 planned)." license = "MIT"