1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
;;; 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-utils)
#:use-module (srfi srfi-19)
#:use-module (srfi srfi-64)
#:use-module (haunt utils))
(test-begin "utils")
(test-equal "flatten, all"
'(1 2 3 4 5 6)
(flatten '(1 (2 3 (4) (5 (6))))))
(test-equal "flatten, limited depth"
'(1 2 3 4 5 (6))
(flatten '(1 (2 3 (4) (5 (6)))) 2))
(test-equal "flat-map"
'(5 7 9)
(flat-map (compose list +) '(1 2 3) '(4 5 6)))
(test-equal "string-split-at, no match"
'("foo")
(string-split-at "foo" #\z))
(test-equal "string-split-at, match"
'("foo" "bar")
(string-split-at "foo/bar" #\/))
(test-equal "file-name-components, empty string"
'()
(file-name-components ""))
(test-equal "file-name-components, root directory"
'("")
(file-name-components "/"))
(test-equal "file-name-components, full file name"
'("share" "haunt")
(file-name-components "/share/haunt"))
(test-equal "join-file-name-components"
"/share/haunt/info/haunt.info"
(join-file-name-components '("share" "haunt" "info" "haunt.info")))
(test-equal "absolute-file-name, already absolute"
"/share/haunt"
(absolute-file-name "/share/haunt"))
(test-equal "absolute-file-name, relative file name"
(string-append (getcwd) "/share/haunt")
(absolute-file-name "share/haunt"))
(test-equal "take-up-to, less than n elements"
'(1 2 3)
(take-up-to 4 '(1 2 3)))
(test-equal "take-up-to, more than n elements"
'(1 2)
(take-up-to 2 '(1 2 3)))
(test-equal "string->date*"
(make-date 0 0 15 06 05 09 2015
(date-zone-offset (string->date "2015-09-05" "~Y~m~d")))
(string->date* "2015-09-05 06:15"))
(test-end)
(exit (zero? (test-runner-fail-count (test-runner-current))))
|