records: Insert record type ABI checks in constructors.
[jackhill/guix/guix.git] / tests / records.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2018 Ludovic Courtès <ludo@gnu.org>
3 ;;;
4 ;;; This file is part of GNU Guix.
5 ;;;
6 ;;; GNU Guix is free software; you can redistribute it and/or modify it
7 ;;; under the terms of the GNU General Public License as published by
8 ;;; the Free Software Foundation; either version 3 of the License, or (at
9 ;;; your option) any later version.
10 ;;;
11 ;;; GNU Guix is distributed in the hope that it will be useful, but
12 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 ;;; GNU General Public License for more details.
15 ;;;
16 ;;; You should have received a copy of the GNU General Public License
17 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19 (define-module (test-records)
20 #:use-module (srfi srfi-1)
21 #:use-module (srfi srfi-64)
22 #:use-module (ice-9 match)
23 #:use-module (ice-9 regex)
24 #:use-module (guix records))
25
26 (define (test-module)
27 ;; A module in which to evaluate things that are known to fail.
28 (let ((module (make-fresh-user-module)))
29 (module-use! module (resolve-interface '(guix records)))
30 module))
31
32 \f
33 (test-begin "records")
34
35 (test-assert "define-record-type*"
36 (begin
37 (define-record-type* <foo> foo make-foo
38 foo?
39 (bar foo-bar)
40 (baz foo-baz (default (+ 40 2))))
41 (and (match (foo (bar 1) (baz 2))
42 (($ <foo> 1 2) #t))
43 (match (foo (baz 2) (bar 1))
44 (($ <foo> 1 2) #t))
45 (match (foo (bar 1))
46 (($ <foo> 1 42) #t)))))
47
48 (test-assert "define-record-type* with let* behavior"
49 ;; Make sure field initializers can refer to each other as if they were in
50 ;; a 'let*'.
51 (begin
52 (define-record-type* <bar> bar make-bar
53 foo?
54 (x bar-x)
55 (y bar-y (default (+ 40 2)))
56 (z bar-z))
57 (and (match (bar (x 1) (y (+ x 1)) (z (* y 2)))
58 (($ <bar> 1 2 4) #t))
59 (match (bar (x 7) (z (* x 3)))
60 (($ <bar> 7 42 21) #t))
61 (match (bar (z 21) (x (/ z 3)))
62 (($ <bar> 7 42 21) #t)))))
63
64 (test-assert "define-record-type* & inherit"
65 (begin
66 (define-record-type* <foo> foo make-foo
67 foo?
68 (bar foo-bar)
69 (baz foo-baz (default (+ 40 2))))
70 (let* ((a (foo (bar 1)))
71 (b (foo (inherit a) (baz 2)))
72 (c (foo (inherit b) (bar -2)))
73 (d (foo (inherit c)))
74 (e (foo (inherit (foo (bar 42))) (baz 77))))
75 (and (match a (($ <foo> 1 42) #t))
76 (match b (($ <foo> 1 2) #t))
77 (match c (($ <foo> -2 2) #t))
78 (equal? c d)
79 (match e (($ <foo> 42 77) #t))))))
80
81 (test-assert "define-record-type* & inherit & let* behavior"
82 (begin
83 (define-record-type* <foo> foo make-foo
84 foo?
85 (bar foo-bar)
86 (baz foo-baz (default (+ 40 2))))
87 (let* ((a (foo (bar 77)))
88 (b (foo (inherit a) (bar 1) (baz (+ bar 1))))
89 (c (foo (inherit b) (baz 2) (bar (- baz 1)))))
90 (and (match a (($ <foo> 77 42) #t))
91 (match b (($ <foo> 1 2) #t))
92 (equal? b c)))))
93
94 (test-assert "define-record-type* & inherit & innate"
95 (begin
96 (define-record-type* <foo> foo make-foo
97 foo?
98 (bar foo-bar (innate) (default 42)))
99 (let* ((a (foo (bar 1)))
100 (b (foo (inherit a)))
101 (c (foo (inherit a) (bar 3)))
102 (d (foo)))
103 (and (match a (($ <foo> 1) #t))
104 (match b (($ <foo> 42) #t))
105 (match c (($ <foo> 3) #t))
106 (match d (($ <foo> 42) #t))))))
107
108 (test-assert "define-record-type* & thunked"
109 (begin
110 (define-record-type* <foo> foo make-foo
111 foo?
112 (bar foo-bar)
113 (baz foo-baz (thunked)))
114
115 (let* ((calls 0)
116 (x (foo (bar 2)
117 (baz (begin (set! calls (1+ calls)) 3)))))
118 (and (zero? calls)
119 (equal? (foo-bar x) 2)
120 (equal? (foo-baz x) 3) (= 1 calls)
121 (equal? (foo-baz x) 3) (= 2 calls)))))
122
123 (test-assert "define-record-type* & thunked & default"
124 (begin
125 (define-record-type* <foo> foo make-foo
126 foo?
127 (bar foo-bar)
128 (baz foo-baz (thunked) (default 42)))
129
130 (let ((mark (make-parameter #f)))
131 (let ((x (foo (bar 2) (baz (mark))))
132 (y (foo (bar 2))))
133 (and (equal? (foo-bar x) 2)
134 (parameterize ((mark (cons 'a 'b)))
135 (eq? (foo-baz x) (mark)))
136 (equal? (foo-bar y) 2)
137 (equal? (foo-baz y) 42))))))
138
139 (test-assert "define-record-type* & thunked & inherited"
140 (begin
141 (define-record-type* <foo> foo make-foo
142 foo?
143 (bar foo-bar (thunked))
144 (baz foo-baz (thunked) (default 42)))
145
146 (let ((mark (make-parameter #f)))
147 (let* ((x (foo (bar 2) (baz (mark))))
148 (y (foo (inherit x) (bar (mark)))))
149 (and (equal? (foo-bar x) 2)
150 (parameterize ((mark (cons 'a 'b)))
151 (eq? (foo-baz x) (mark)))
152 (parameterize ((mark (cons 'a 'b)))
153 (eq? (foo-bar y) (mark)))
154 (parameterize ((mark (cons 'a 'b)))
155 (eq? (foo-baz y) (mark))))))))
156
157 (test-assert "define-record-type* & thunked & innate"
158 (let ((mark (make-parameter #f)))
159 (define-record-type* <foo> foo make-foo
160 foo?
161 (bar foo-bar (thunked) (innate) (default (mark)))
162 (baz foo-baz (default #f)))
163
164 (let* ((x (foo (bar 42)))
165 (y (foo (inherit x) (baz 'unused))))
166 (and (procedure? (struct-ref x 0))
167 (equal? (foo-bar x) 42)
168 (parameterize ((mark (cons 'a 'b)))
169 (eq? (foo-bar y) (mark)))
170 (parameterize ((mark (cons 'a 'b)))
171 (eq? (foo-bar y) (mark)))))))
172
173 (test-assert "define-record-type* & delayed"
174 (begin
175 (define-record-type* <foo> foo make-foo
176 foo?
177 (bar foo-bar (delayed)))
178
179 (let* ((calls 0)
180 (x (foo (bar (begin (set! calls (1+ calls)) 3)))))
181 (and (zero? calls)
182 (equal? (foo-bar x) 3) (= 1 calls)
183 (equal? (foo-bar x) 3) (= 1 calls)
184 (equal? (foo-bar x) 3) (= 1 calls)))))
185
186 (test-assert "define-record-type* & delayed & default"
187 (let ((mark #f))
188 (define-record-type* <foo> foo make-foo
189 foo?
190 (bar foo-bar (delayed) (default mark)))
191
192 (let ((x (foo)))
193 (set! mark 42)
194 (and (equal? (foo-bar x) 42)
195 (begin
196 (set! mark 7)
197 (equal? (foo-bar x) 42))))))
198
199 (test-assert "define-record-type* & delayed & inherited"
200 (begin
201 (define-record-type* <foo> foo make-foo
202 foo?
203 (bar foo-bar (delayed))
204 (baz foo-baz (delayed)))
205
206 (let* ((m 1)
207 (n #f)
208 (x (foo (bar m) (baz n)))
209 (y (foo (inherit x) (baz 'b))))
210 (set! n 'a)
211 (and (equal? (foo-bar x) 1)
212 (eq? (foo-baz x) 'a)
213 (begin
214 (set! m 777)
215 (equal? (foo-bar y) 1)) ;promise was already forced
216 (eq? (foo-baz y) 'b)))))
217
218 (test-assert "define-record-type* & wrong field specifier"
219 (let ((exp '(begin
220 (define-record-type* <foo> foo make-foo
221 foo?
222 (bar foo-bar (default 42))
223 (baz foo-baz))
224
225 (foo (baz 1 2 3 4 5)))) ;syntax error
226 (loc (current-source-location))) ;keep this alignment!
227 (catch 'syntax-error
228 (lambda ()
229 (eval exp (test-module))
230 #f)
231 (lambda (key proc message location form . args)
232 (and (eq? proc 'foo)
233 (string-match "invalid field" message)
234 (equal? form '(baz 1 2 3 4 5))
235
236 ;; Make sure the location is that of the field specifier.
237 ;; See <http://bugs.gnu.org/23969>.
238 (lset= equal?
239 (pk 'expected-loc
240 `((line . ,(- (assq-ref loc 'line) 1))
241 ,@(alist-delete 'line loc)))
242 (pk 'actual-loc location)))))))
243
244 (test-assert "define-record-type* & missing initializers"
245 (catch 'syntax-error
246 (lambda ()
247 (eval '(begin
248 (define-record-type* <foo> foo make-foo
249 foo?
250 (bar foo-bar (default 42))
251 (baz foo-baz))
252
253 (foo))
254 (test-module))
255 #f)
256 (lambda (key proc message location form . args)
257 (and (eq? proc 'foo)
258 (string-match "missing .*initialize.*baz" message)
259 (equal? form '(foo))))))
260
261 (test-assert "define-record-type* & extra initializers"
262 (catch 'syntax-error
263 (lambda ()
264 (eval '(begin
265 (define-record-type* <foo> foo make-foo
266 foo?
267 (bar foo-bar (default 42)))
268
269 (foo (baz 'what?)))
270 (test-module))
271 #f)
272 (lambda (key proc message location form . args)
273 (and (string-match "extra.*initializer.*baz" message)
274 (eq? proc 'foo)))))
275
276 (test-assert "define-record-type* & inherit & extra initializers"
277 (catch 'syntax-error
278 (lambda ()
279 (eval '(begin
280 (define-record-type* <foo> foo make-foo
281 foo?
282 (bar foo-bar (default 42)))
283
284 (foo (inherit (foo)) (baz 'what?)))
285 (test-module))
286 #f)
287 (lambda (key proc message location form . args)
288 (and (string-match "extra.*initializer.*baz" message)
289 (eq? proc 'foo)))))
290
291 (test-assert "ABI checks"
292 (let ((module (test-module)))
293 (eval '(begin
294 (define-record-type* <foo> foo make-foo
295 foo?
296 (bar foo-bar (default 42)))
297
298 (define (make-me-a-record) (foo)))
299 module)
300 (unless (eval '(foo? (make-me-a-record)) module)
301 (error "what?" (eval '(make-me-a-record) module)))
302
303 ;; Redefine <foo> with an additional field.
304 (eval '(define-record-type* <foo> foo make-foo
305 foo?
306 (baz foo-baz)
307 (bar foo-bar (default 42)))
308 module)
309
310 ;; Now 'make-me-a-record' is out of sync because it does an
311 ;; 'allocate-struct' that corresponds to the previous definition of <foo>.
312 (catch 'record-abi-mismatch-error
313 (lambda ()
314 (eval '(foo? (make-me-a-record)) module)
315 #f)
316 (lambda (key rtd . _)
317 (eq? rtd (eval '<foo> module))))))
318
319 (test-equal "recutils->alist"
320 '((("Name" . "foo")
321 ("Version" . "0.1")
322 ("Synopsis" . "foo bar")
323 ("Something_else" . "chbouib"))
324 (("Name" . "bar")
325 ("Version" . "1.5")))
326 (let ((p (open-input-string "
327 # Comment following an empty line, and
328 # preceding a couple of empty lines, all of
329 # which should be silently consumed.
330
331
332 Name: foo
333 Version: 0.1
334 # Comment right in the middle,
335 # spanning two lines.
336 Synopsis: foo bar
337 Something_else: chbouib
338
339 # Comment right before.
340 Name: bar
341 Version: 1.5
342 # Comment at the end.")))
343 (list (recutils->alist p)
344 (recutils->alist p))))
345
346 (test-equal "recutils->alist with + lines"
347 '(("Name" . "foo")
348 ("Description" . "1st line,\n2nd line,\n 3rd line with extra space,\n4th line without space."))
349 (recutils->alist (open-input-string "
350 Name: foo
351 Description: 1st line,
352 + 2nd line,
353 + 3rd line with extra space,
354 +4th line without space.")))
355
356 (test-equal "alist->record" '((1 2) b c)
357 (alist->record '(("a" . 1) ("b" . b) ("c" . c) ("a" . 2))
358 list
359 '("a" "b" "c")
360 '("a")))
361
362 (test-end)