From c322616747e9b828aab56fdfdec75fc83f54c39e Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Sat, 1 Apr 2023 17:36:01 -0500 Subject: [PATCH] WIP lexer unit tests. --- .gitignore | 1 + src/vcard/private/lexer.nim | 16 +++++++++++++++- tests/test1.nim | 12 ------------ tests/tlexer.nim | 2 ++ 4 files changed, 18 insertions(+), 13 deletions(-) delete mode 100644 tests/test1.nim create mode 100644 tests/tlexer.nim diff --git a/.gitignore b/.gitignore index 45d62d8..bf97536 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ *.sw? +tests/tlexer diff --git a/src/vcard/private/lexer.nim b/src/vcard/private/lexer.nim index f20ca5b..830c293 100644 --- a/src/vcard/private/lexer.nim +++ b/src/vcard/private/lexer.nim @@ -1,4 +1,4 @@ -import std/[streams, unicode] +import std/[streams, unicode, unittest] type VCardLexer* = object of RootObj input: Stream @@ -145,3 +145,17 @@ proc peekRune*(vcl: var VCardLexer): Rune = proc getColNumber*(vcl: VCardLexer, pos: int): int = if vcl.lineStart < pos: return pos - vcl.lineStart else: return (vcl.buffer.len - vcl.lineStart) + pos + + +suite "vcard/lexer": + + func expectBfr(l: VCardLexer, s: string): bool = + for i in 0..