summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2015-10-15 22:37:40 -0400
committerDavid Thompson <dthompson2@worcester.edu>2015-10-15 22:45:10 -0400
commite505a66a1b22132fd429c7699b7b632143d6653c (patch)
tree573d83dee941a9900b566c99d589e240046beda0 /tests
parent1ca65755dfe193618191042f48a751f24597d047 (diff)
tests: Add post tests.
* tests/post.scm: New file. * Makefile.am (TESTS): Add it.
Diffstat (limited to 'tests')
-rw-r--r--tests/post.scm71
1 files changed, 71 insertions, 0 deletions
diff --git a/tests/post.scm b/tests/post.scm
new file mode 100644
index 0000000..bfc0d0e
--- /dev/null
+++ b/tests/post.scm
@@ -0,0 +1,71 @@
+;;; Haunt --- Static site generator for GNU Guile
+;;; Copyright © 2015 David Thompson <davet@gnu.org>
+;;;
+;;; This file is part of Haunt.
+;;;
+;;; Haunt 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.
+;;;
+;;; Haunt 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 Haunt. If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (test-post)
+ #:use-module (srfi srfi-19)
+ #:use-module (srfi srfi-64)
+ #:use-module (haunt post))
+
+(test-begin "post")
+
+(define (make-date* year month day)
+ (make-date 0 0 0 0 day month year 0))
+
+(test-equal "post-ref"
+ '(hello test)
+ (post-ref (make-post "foo.skr" '((tags hello test)) '()) 'tags))
+
+(test-equal "post-slug"
+ "hello-world"
+ (post-slug (make-post "foo.skr" '((title . "Hello, world!")) '())))
+
+(test-equal "post-date, no date metadata"
+ %default-date
+ (post-date (make-post "foo.skr" '() '())))
+
+(let ((date (make-date* 2015 10 15)))
+ (test-equal "post-date, date metadata"
+ date
+ (post-date (make-post "foo.skr" `((date . ,date)) '()))))
+
+(let ((oldest (make-post "foo.skr" `((date . ,(make-date* 2015 10 13))) '()))
+ (newest (make-post "bar.skr" `((date . ,(make-date* 2015 10 15))) '()))
+ (middle (make-post "baz.skr" `((date . ,(make-date* 2015 10 14))) '())))
+ (test-equal "posts/reverse-chronological"
+ (list newest middle oldest)
+ (posts/reverse-chronological (list oldest newest middle))))
+
+(let ((foo-post (make-post "foo.skr" '((tags "foo")) '()))
+ (another-foo-post (make-post "another-foo.skr" '((tags "foo")) '()))
+ (bar-post (make-post "bar.skr" '((tags "bar")) '())))
+ (test-equal "posts/group-by-tag"
+ `(("foo" ,foo-post ,another-foo-post) ("bar" ,bar-post))
+ (posts/group-by-tag (list another-foo-post foo-post bar-post))))
+
+(test-equal "parse-metadata, tags"
+ '("foo" "bar" "baz")
+ (parse-metadata 'tags "foo, bar, baz"))
+
+(test-equal "parse-metadata, date"
+ (make-date 0 0 30 22 15 10 2015 (date-zone-offset (current-date)))
+ (parse-metadata 'date "2015-10-15 22:30"))
+
+(test-end)
+
+
+(exit (zero? (test-runner-fail-count (test-runner-current))))