From dc6e932000730ede3c23a270390db9482953b41a Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Thu, 7 Jul 2022 02:08:59 +0530 Subject: tests: Add tests. * Makefile (GUILE, tests): New variables. (check): Run tests. * tests/issue.scm: New file. --- tests/issue.scm | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 tests/issue.scm (limited to 'tests') diff --git a/tests/issue.scm b/tests/issue.scm new file mode 100644 index 0000000..74fb6c3 --- /dev/null +++ b/tests/issue.scm @@ -0,0 +1,73 @@ +;;; tissue --- Text based issue tracker +;;; Copyright © 2022 Arun Isaac +;;; +;;; This file is part of tissue. +;;; +;;; tissue is free software: you can redistribute it and/or modify it +;;; under the terms of the GNU General Public License as published by +;;; the Free Software Foundation, either version 3 of the License, or +;;; (at your option) any later version. +;;; +;;; tissue is distributed in the hope that it will be useful, but +;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +;;; General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with tissue. If not, see . + +(import (rnrs hashtables) + (srfi srfi-64) + (srfi srfi-71) + (tissue issue)) + +(define hashtable-prepend! + (@@ (tissue issue) hashtable-prepend!)) + +(define list-line->alist + (@@ (tissue issue) list-line->alist)) + +(define file-details + (@@ (tissue issue) file-details)) + +(define (hashtable->alist hashtable) + (let ((keys values (hashtable-entries hashtable))) + (map cons + (vector->list keys) + (vector->list values)))) + +(test-begin "issue") + +(test-equal "Parse list line with multiple key-value pairs" + '((status "unclear") + (keywords "dangerous feature" "ui")) + (list-line->alist "* keywords: ui, dangerous feature, status: unclear")) + +(test-equal "Parse list line with repeated keys" + '((keywords "foo") + (status "unclear") + (keywords "dangerous feature" "ui")) + (list-line->alist "* keywords: ui, dangerous feature, status: unclear, keywords: foo")) + +(test-equal "Parse key-value list lines case insensitively" + '((keywords "dangerous feature" "ui")) + (list-line->alist "* Keywords: ui, dangerous feature")) + +(test-equal "Return keywords in order" + '((keywords "foo" "bar" "fubar")) + (call-with-input-string "* keywords: foo, bar, fubar" + (compose hashtable->alist file-details))) + +(let ((hashtable (make-eq-hashtable))) + (hashtable-set! hashtable 'keywords (list "foo" "bar")) + (hashtable-prepend! hashtable 'keywords (list "foobar" "fubar")) + (test-equal "hashtable-prepend! should prepend, not append" + '((keywords "fubar" "foobar" "foo" "bar")) + (hashtable->alist hashtable))) + +(test-equal "Do not parse definition-like lines as key-value pairs" + '() + (call-with-input-string "* term: This is a definition of term." + (compose hashtable->alist file-details))) + +(test-end "issue") -- cgit v1.2.3