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 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
|
;;;; module-tests.scm
(import (chicken eval) (chicken load))
(cond-expand
(compiling
(include "test.scm") )
(else
(load-relative "test.scm")))
(test-begin "modules")
(test-assert
"r4rs"
(module test-r4rs ()
(import r4rs)
(equal? 1 1)))
(test-assert
"r4rs-null"
(module test-r4rs-null ()
(import r4rs-null)
(begin #t)))
(test-equal "internal/variable"
(module foo (abc def)
(import scheme)
(define (abc x) (+ x 33))
(define-syntax def
(syntax-rules ()
((_ x) (+ 99 (abc x)))))
(abc 1))
34)
(test-error "external/unimported variable (fail)" (abc 2))
(test-error "external/unimported syntax (fail)" (def 3))
(import foo)
(test-equal "external/imported variable" (abc 4) 37)
(test-equal "external/imported syntax" (def 5) 137)
(module bar (x y)
(import (prefix scheme s:))
(s:define (x y) (s:* y 2))
(s:define y 1))
(import (prefix (only (except (rename bar (x z)) y) z) "bar-"))
(test-equal "modified import" (bar-z 10) 20)
(test-error "hidden import" y)
(module baz ((x s:list))
(import (prefix scheme s:))
(s:define-syntax x
(syntax-rules ()
((_ x) (s:list x)))))
(import baz)
(test-equal "prefixed import and reexport" (x 1) '(1))
(module m1 ((bar gna))
(import scheme)
(define (gna x) (list 'gna x))
(define-syntax bar
(syntax-rules ()
((_ x) (baz x))))
(define-syntax baz
(syntax-rules ()
((_ x) (gna 'x)))))
(module m2 (run)
(import scheme (chicken base) m1)
(define-syntax baz
(syntax-rules ()
((_ x) (list 'goo 'x))))
(define (gna x) (print "ok."))
(define (run) (gna 9) (bar 99)))
(import (only m2 run))
(test-equal "indirect imports" (run) '(gna 99))
(module m1 ((s1 f1))
(import scheme (chicken base))
(define (f1) (print "f1") 'f1)
(define-syntax s1
(syntax-rules ()
((_) (f1)))))
(module m2 (s2)
(import scheme m1)
(define-syntax s2
(syntax-rules ()
((_) (s1)))))
(module m3 (s3)
(import scheme m2)
(define-syntax s3
(syntax-rules ()
((_) (s2)))))
(import m3)
(test-equal "chained indirect imports" (s3) 'f1)
(module literal-compare-test (s1)
(import scheme)
(define-syntax s1
(syntax-rules (and)
((_ (and x)) (list x))))
)
(import literal-compare-test)
(test-equal "literal compare and export" (s1 (and 100)) '(100))
(module y (y1)
(import scheme)
(define y1 10))
(module x (magnitude)
(import (except scheme magnitude) y)
(define magnitude y1))
(test-equal "redefinition of indirect import" (procedure? magnitude) #t)
(import x)
(test-equal "redefinition of indirect import (II)" magnitude 10)
(module m10 (m10x m10y)
(import scheme)
(define m10x 99)
(define-syntax m10y
(syntax-rules ()
((_ x) (list 'x)))))
(module m11 (m10x m10y)
(import m10))
(import m11)
(test-equal "value reexport" m10x 99)
(test-equal "syntax reexport" (m10y 3) '(3))
;; found by Jim Ursetto;
(module m12 (begin0)
(import scheme)
(define-syntax begin0
(syntax-rules ()
((_ e0 e1 ...)
(##sys#call-with-values
(lambda () e0)
(lambda var
(begin
e1 ...
(apply ##sys#values var))))))))
(test-equal "primitive indirect value-binding reexport"
(module m13 ()
(import m12) ; note absence of "scheme"
(begin0 1 2 3))
1)
(module m14 (test-extlambda)
(import scheme)
(define (test-extlambda string #!optional whatever)
string))
(import m14)
(test-equal "extended lambda list uses expansion environment"
"some text"
(test-extlambda "some text"))
;;; import-forms in `require-extension':
(module m15 ()
(import scheme (chicken base))
(import (prefix (rename srfi-4 (u8vector u)) 99:))
(print 99:u))
;;; expansion of macros into modules:
(module m16 (foo-module)
(import scheme)
(define-syntax foo-module
(syntax-rules ()
((_ name)
(module name (maker definer)
(import scheme)
(define (maker) 'name)
(define-syntax definer
(syntax-rules ()
((_) (define (name) 'name))))))))
)
(import m16)
(foo-module abc)
(import abc)
(test-equal
"function defined in module that is the result of an expansion"
'abc (maker))
(definer)
(test-equal
"syntax defined in module that is the result of an expansion"
'abc (abc))
(module m17 (a) (import scheme) (define a 1))
(begin-for-syntax ; XXX workaround for missing module alias functionality
(##sys#register-module-alias 'm18 'm17))
(module m19 (a) (import scheme) (define a 2))
(test-equal
"global module alias scope (1)"
(module m20 ()
(import scheme)
(import m18)
a)
1)
(test-equal
"local module alias scope"
(module m21 ()
(import scheme (chicken syntax))
(begin-for-syntax ; XXX s.a.
(##sys#register-module-alias 'm18 'm19))
(import m18)
a)
2)
(test-equal
"global module alias scope (2)"
(module m20 ()
(import scheme)
(import m18)
a)
1)
;; #865 - "*" export list needs special treatment when using "export"
;; (fix contributed by "megane")
(module
m22
*
(import scheme)
(define b 2))
(module
m23
*
(import (chicken module))
(import m22)
(export b) )
(test-equal
"`*' export-list + explicit export"
(module m24 ()
(import m23)
b)
2)
;; (contributed by "megane")
(module m25 *
(import scheme)
(define foo 1))
(module m26 (bar)
(import (chicken module) scheme)
(reexport m25)
(define bar 2))
(module m27 *
(import (chicken module) scheme)
(reexport m25) ;; <- oops, bar not exported anymore
(define bar 2))
(test-equal
"handle star-exporting module with reexport"
(module m28 ()
(import scheme (chicken base))
(import (prefix m26 b/))
(import (prefix m27 c/))
(print b/foo)
(print c/foo)
(print b/bar)
c/bar) ;; <- Error: unbound variable: c/bar
2)
;; somewhat related, but with syntax (#882, found by megane):
(module m29 *
(import (chicken syntax) scheme)
(define-syntax m29-baz
(er-macro-transformer
(lambda _
''foo))))
(module m30 *
(import (chicken module))
(import m29)
(export m29-baz))
(test-equal
"star-export with explicit re-export of syntax"
(module m31 ()
(import scheme)
(import m30)
(m29-baz))
'foo)
;; list-style library names
(test-assert
(module (m33 a) *
(import (scheme))
(define (foo) 'ok)))
(test-assert
(module (m33 b) ()
(import (scheme) (m33 a))
(eq? (foo) 'ok)))
(test-assert (import (prefix (m33 a) m33/a/)))
(test-assert (eq? (m33/a/foo) 'ok))
(test-assert (module-environment '(m33 a)))
;; Ensure that the modules system is simply an aliasing mechanism:
;; Module instantion does not create multiple variable copies.
(module m31 *
(import (chicken base) scheme)
(define mutation-count 0)
(define (internally-mutate!)
(set! mutation-count (add1 mutation-count)))
(define (get-count)
mutation-count))
(module m32 *
(import (chicken base) scheme m31)
(define (externally-mutate!)
(set! mutation-count (add1 mutation-count))))
(import m31 m32)
(test-equal
"initial state"
0 mutation-count)
(internally-mutate!)
(test-equal
"After mutating inside defining module"
1 mutation-count)
(set! mutation-count 2)
(test-equal
"After mutating outside module"
2 mutation-count)
(externally-mutate!)
(test-equal
"After mutation by another module"
3 mutation-count)
(test-equal
"Internal getter returns same thing"
3 (get-count))
(test-assert
(not (current-module)))
(test-assert
(module m33 ()
(import (scheme) (chicken module))
(eq? (current-module) 'm33)))
(test-end "modules")
(test-exit)
|