File: test-values.scm

package info (click to toggle)
sigscheme 0.8.5-4.1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 11,752 kB
  • ctags: 7,396
  • sloc: lisp: 37,498; ansic: 30,976; sh: 10,329; makefile: 746; asm: 333; ruby: 288
file content (262 lines) | stat: -rw-r--r-- 9,176 bytes parent folder | download | duplicates (17)
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
;;  Filename : test-values.scm
;;  About    : unit tests for multiple values
;;
;;  Copyright (C) 2006 YAMAMOTO Kengo <yamaken AT bp.iij4u.or.jp>
;;  Copyright (c) 2007-2008 SigScheme Project <uim-en AT googlegroups.com>
;;
;;  All rights reserved.
;;
;;  Redistribution and use in source and binary forms, with or without
;;  modification, are permitted provided that the following conditions
;;  are met:
;;
;;  1. Redistributions of source code must retain the above copyright
;;     notice, this list of conditions and the following disclaimer.
;;  2. Redistributions in binary form must reproduce the above copyright
;;     notice, this list of conditions and the following disclaimer in the
;;     documentation and/or other materials provided with the distribution.
;;  3. Neither the name of authors nor the names of its contributors
;;     may be used to endorse or promote products derived from this software
;;     without specific prior written permission.
;;
;;  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS
;;  IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
;;  THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
;;  PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
;;  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
;;  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
;;  PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
;;  PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
;;  LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
;;  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
;;  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

(require-extension (unittest))

(define tn test-name)


;;
;; values
;;

;; These tests use explicit equivalence predicates instead of assert-equal?, to
;; avoid being affected by multiple-values -specific behavior.

(tn "values invalid forms")
;; Normal continuations accept exactly one value only.
(assert-error  (tn) (lambda () (eq? '() (values))))
(assert-error  (tn) (lambda () (eq? '() (apply values '()))))
(assert-error  (tn) (lambda () (eq? '() (values . 1))))
(assert-error  (tn) (lambda () (eq? '() (values 1 2))))
(assert-error  (tn) (lambda () (eq? '() (apply values '(1 2)))))
(assert-error  (tn) (lambda () (eq? '() (values 1 . 2))))

(tn "values disallowed places")
;; top-level variable
(assert-error  (tn) (lambda () (eval '(define foo (values 1 2 3))
                                     (interaction-environment))))
(define foo 1)
(assert-error  (tn) (lambda () (eval '(set! foo (values 1 2 3))
                                     (interaction-environment))))
;; internal variable
(assert-error  (tn) (lambda () (define bar (values 1 2 3))))
;; others
(assert-error  (tn) (lambda () (let ((bar (values 1 2 3))) #t)))
(assert-error  (tn) (lambda () (let* ((bar (values 1 2 3))) #t)))
(assert-error  (tn) (lambda () (letrec ((bar (values 1 2 3))) #t)))
(assert-error  (tn) (lambda () (if (values 1 2 3) #t)))
(assert-error  (tn) (lambda () (and (values 1 2 3) #t)))
(assert-error  (tn) (lambda () (or (values 1 2 3) #t)))
(assert-error  (tn) (lambda () (cond ((values 1 2 3) #t) (else #t))))
(assert-error  (tn) (lambda () (case (values 1 2 3) (else #t))))
(assert-error  (tn) (lambda () (begin (values 1 2 3) #t)))
(assert-error  (tn) (lambda () ((lambda () (values 1 2 3) #t))))

(tn "values")
;; Exactly one value.
(assert-true   (tn) (eqv? 1 (values 1)))
(assert-true   (tn) (eqv? 1 (apply values '(1))))
(assert-true   (tn) (eq? '() (values '())))
(assert-true   (tn) (eq? '() (apply values '(()))))
(assert-true   (tn) (eq? #f (values #f)))
(assert-true   (tn) (eq? #f (apply values '(#f))))

;; Returning multiple values in top-level is allowed (SigScheme-specific).
;; These forms test whether evaluations are passed without blowing up.
(values)
(values 1 2 3)
(apply values '())
(apply values '(1 2 3))
(begin
  (values))
(begin
  (values 1 2 3))
(begin
  (apply values '()))
(begin
  (apply values '(1 2 3)))

;;
;; call-with-values
;;

(tn "call-with-values invalid forms")
(assert-error  (tn) (lambda ()
                      (call-with-values)))
(assert-error  (tn) (lambda ()
                      (call-with-values even?)))
(assert-error  (tn) (lambda ()
                      (call-with-values even? #t)))
(assert-error  (tn) (lambda ()
                      (call-with-values #t even?)))

(tn "call-with-values")
(assert-equal? (tn)
               -1
               (call-with-values * -))

(assert-equal? (tn)
               'ok
               (call-with-values
                   (lambda () (values))
                 (lambda () 'ok)))
(assert-equal? (tn)
               '()
               (call-with-values
                   (lambda () (values))
                 (lambda args args)))
(assert-equal? (tn)
               'ok
               (call-with-values
                   (lambda () (apply values '()))
                 (lambda () 'ok)))
(assert-equal? (tn)
               '()
               (call-with-values
                   (lambda () (apply values '()))
                 (lambda args args)))

(assert-equal? (tn)
               1
               (call-with-values
                   (lambda () (values 1))
                 (lambda (x) x)))
(assert-equal? (tn)
               '(1)
               (call-with-values
                   (lambda () (values 1))
                 (lambda args args)))
(assert-equal? (tn)
               1
               (call-with-values
                   (lambda () (apply values '(1)))
                 (lambda (x) x)))
(assert-equal? (tn)
               '(1)
               (call-with-values
                   (lambda () (apply values '(1)))
                 (lambda args args)))

(assert-equal? (tn)
               '(1 2)
               (call-with-values
                   (lambda () (values 1 2))
                 (lambda (x y) (list x y))))
(assert-equal? (tn)
               '(1 2)
               (call-with-values
                   (lambda () (values 1 2))
                 (lambda args args)))
(assert-equal? (tn)
               '(1 2)
               (call-with-values
                   (lambda () (apply values '(1 2)))
                 (lambda (x y) (list x y))))
(assert-equal? (tn)
               '(1 2)
               (call-with-values
                   (lambda () (apply values '(1 2)))
                 (lambda args args)))

(tn "call-with-values by apply")
(assert-equal? (tn)
               -1
               (apply call-with-values (list * -)))

(assert-equal? (tn)
               'ok
               (apply call-with-values
                      (list (lambda () (values))
                            (lambda () 'ok))))
(assert-equal? (tn)
               '()
               (apply call-with-values
                      (list (lambda () (values))
                            (lambda args args))))
(assert-equal? (tn)
               'ok
               (apply call-with-values
                      (list (lambda () (apply values '()))
                            (lambda () 'ok))))
(assert-equal? (tn)
               '()
               (apply call-with-values
                      (list (lambda () (apply values '()))
                            (lambda args args))))

(assert-equal? (tn)
               1
               (apply call-with-values
                      (list (lambda () (values 1))
                            (lambda (x) x))))
(assert-equal? (tn)
               '(1)
               (apply call-with-values
                      (list (lambda () (values 1))
                            (lambda args args))))
(assert-equal? (tn)
               1
               (apply call-with-values
                      (list (lambda () (apply values '(1)))
                            (lambda (x) x))))
(assert-equal? (tn)
               '(1)
               (apply call-with-values
                      (list (lambda () (apply values '(1)))
                            (lambda args args))))

(assert-equal? (tn)
               '(1 2)
               (apply call-with-values
                      (list (lambda () (values 1 2))
                            (lambda (x y) (list x y)))))
(assert-equal? (tn)
               '(1 2)
               (apply call-with-values
                      (list (lambda () (values 1 2))
                            (lambda args args))))
(assert-equal? (tn)
               '(1 2)
               (apply call-with-values
                      (list (lambda () (apply values '(1 2)))
                            (lambda (x y) (list x y)))))
(assert-equal? (tn)
               '(1 2)
               (apply call-with-values
                      (list (lambda () (apply values '(1 2)))
                            (lambda args args))))

(tn "call-with-values misc")
;; test whether the variable is properly bound
(assert-equal? (tn)
               1
               ((lambda (n)
                  (call-with-values
                      (lambda () (values 2 3 n))
                    (lambda (dummy1 dummy2 n2)
                      n2)))
                1))


(total-report)