blob: fff1606b092b9c53b4957988766f35f08303868c (
about) (
plain)
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
|
;;; SPDX-License-Identifier: CC0-1.0
;;;
;;; Copyright (C) 2023 Wojtek Kosior <koszko@koszko.org>
(use-modules ((srfi srfi-35) #:select (extract-condition condition-ref))
((ice-9 safe-r5rs) #:select (null-environment))
((srfi srfi-64) #:select (test-group))
((myra-test-utils) #:prefix tu:))
(define (make-env)
(let ((env (null-environment 5)))
(module-use! env (resolve-interface '(guile)))
env))
(define (test-env name)
(resolve-module `(de-paul-records-test ,name)))
(test-group "exported record <lisp>"
(tu:test-assert
(or (eval '(begin
(define-module (de-paul-records-test lisp)
#:use-module ((de-paul-records)))
(define-immutable-record-type* lisp
(name)
is-scheme?
#:export? yes,ofcourse
(is-syntactically-scoped? #:default #f)
(authors #:default '())
#:finalize (lambda (the-lisp)
(set-field the-lisp
(lisp-is-syntactically-scoped?)
(or (lisp-is-syntactically-scoped?
the-lisp)
(lisp-is-scheme? the-lisp))))))
(make-env))
#t))
(tu:test-assert (macro? (module-ref (resolve-interface
'(de-paul-records-test lisp))
'lisp)))
(tu:test-error (lambda (condition)
(let ((subcond (extract-condition
condition
&exception-with-kind-and-args)))
(eq? 'misc-error (condition-ref subcond 'kind))))
(module-ref (resolve-interface
'(de-paul-records-test lisp))
'*lisp))
(test-group "lisp paren-3001"
(tu:test-equal '(#f () "paren-3001" #f)
(eval '(begin
(define %paren-3001
(lisp (is-scheme? #f)
(name "paren-3001")))
(match %paren-3001
(($* lisp
authors
is-syntactically-scoped?
name
is-scheme?)
(list is-syntactically-scoped?
authors
name
is-scheme?))))
(test-env 'lisp)))
(tu:test-equal '(iss? #f is? #f)
(eval '(match %paren-3001
(($* lisp
(is-syntactically-scoped? iss?)
(name "paren-3001")
(is-scheme? is? $f))
(list 'iss? iss? 'is? is?)))
(test-env 'lisp))))
(test-group "lisp paren-3001.1"
(tu:test-equal '#t
(eval
'(begin
(define %paren-3001.1
(lisp #:<- %paren-3001
(name #:->
((const 'test-noop))
(string-append name ".1"))
(authors #:list "Jane Doe")
(is-syntactically-scoped? #t)))
(match `(a . ,%paren-3001.1)
(`(a . ,($* lisp is-syntactically-scoped?))
is-syntactically-scoped?)))
(test-env 'lisp)))
(tu:test-equal '(#f "paren-3001.1")
(eval
'(match (vector %paren-3001.1)
(#(($* lisp is-scheme? name))
(list is-scheme? name)))
(test-env 'lisp)))
(tu:test-equal '("Jane Doe")
(eval '(lisp-authors %paren-3001.1)
(test-env 'lisp))))
(test-group "lisp paren-3003"
(tu:test-equal '(#t #t)
(eval
'(begin
(define %paren-3003
(let ((name "paren-3003"))
(lisp #:<- (lisp)
name
(authors #:list "Jane Doe" "John Smith")
(is-scheme? (string-suffix? "-3003" name)))))
(match %paren-3003
(($* lisp is-scheme? is-syntactically-scoped?)
(list is-scheme? is-syntactically-scoped?))))
(test-env 'lisp)))
(tu:test-equal "paren-3003"
(eval '(lisp-name %paren-3003)
(test-env 'lisp)))
(tu:test-equal '("Jane Doe" "John Smith")
(eval '(lisp-authors %paren-3003)
(test-env 'lisp))))
(test-group "lisp paren-3004"
(tu:test-equal '(#t #f)
(eval
'(begin
(define %paren-3004
;; (*lisp ...) form is a "primitive" variant of the
;; (lisp ...) form — it shall not call the finalizer.
(*lisp #:<- (lisp)
(name #:=> (const "paren-3004"))
(is-scheme? #t)))
(match %paren-3004
(($* lisp is-scheme? is-syntactically-scoped?)
(list is-scheme? is-syntactically-scoped?))))
(test-env 'lisp)))))
(test-group "match behavior"
(tu:test-assert
(or (eval '(begin
(define-module (de-paul-records-test match)
#:use-module ((de-paul-records)))
(define (some-record? _)
#f))
(make-env))
#t))
(tu:test-error (lambda (condition)
(let ((subcond (extract-condition
condition
&exception-with-kind-and-args)))
(eq? 'match-error (condition-ref subcond 'kind))))
(eval '(match (list 'a 'b)
(($* some-record)
"should not match"))
(test-env 'match)))
(tu:test-error (lambda (condition)
(let ((subcond (extract-condition
condition
&exception-with-kind-and-args)))
(eq? 'unbound-variable (condition-ref subcond 'kind))))
(eval '(match (list 'a 'b)
(($* nonexistent-record)
"should error out"))
(test-env 'match)))
(tu:test-equal 'sth2
(eval '(match `(($* sth1 sth2) . b)
(`(($* sth1 ,second-sth) . b)
second-sth))
(test-env 'match)))
(tu:test-equal "matched with predicate"
(eval '(match "matched with predicate"
((? (lambda (_)
;; $* form shall not get altered by match
;; because it's inside a predicate form of
;; (? pred pat ooo)
(define ($* a b)
b)
($* 'dummy #t))
matched-value)
matched-value))
(test-env 'match)))
(tu:test-equal "matched with 'getter'"
(eval '(match "'getter'"
((= (lambda (string)
;; $* form shall not get altered by match
;; because it's inside a field form of
;; (= field pat)
(define ($* a b)
b)
($* 'dummy (string-append "matched with "
string)))
produced-value)
produced-value))
(test-env 'match))))
(test-group "non-exported record <rsa-secret-key>"
(tu:test-assert
(or (eval '(begin
(define-module (de-paul-records-test rsa-secret-key-1)
#:use-module ((de-paul-records)))
(define-immutable-record-type* rsa-secret-key
(bytes)
#:export? #f))
(make-env))
#t))
(tu:test-eq 'absent (module-ref (resolve-interface
'(de-paul-records-test rsa-secret-key-1))
'rsa-secret-key
'absent))
(tu:test-assert
(or (eval '(begin
(define-module (de-paul-records-test rsa-secret-key-2)
#:use-module ((de-paul-records)))
(define-immutable-record-type* rsa-secret-key
(bytes)))
(make-env))
#t))
(tu:test-eq 'absent (module-ref (resolve-interface
'(de-paul-records-test rsa-secret-key-2))
'rsa-secret-key-bytes
'absent)))
|