summaryrefslogtreecommitdiff
path: root/test-suite/tests/suspendable-ports.test
blob: 28557d5f518c4aed55c4a71e0fac22d5d9078b09 (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
;;;; Scheme implementation of Guile ports -*- scheme -*-
;;;;
;;;; Copyright (C) 2016 Free Software Foundation, Inc.
;;;; 
;;;; This library is free software: you can redistribute it and/or modify
;;;; it under the terms of the GNU Lesser General Public License as
;;;; published by the Free Software Foundation, either version 3 of the
;;;; License, or (at your option) any later version.
;;;;
;;;; This library 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 Lesser General Public License for more details.
;;;;
;;;; You should have received a copy of the GNU Lesser General Public
;;;; License along with this library.  If not, see
;;;; <http://www.gnu.org/licenses/>.

(define-module (test-suite test-ports)
  #:use-module (ice-9 suspendable-ports))

;; Include tests from ports.test.

(define-syntax import-uses
  (syntax-rules ()
    ((_) #t)
    ((_ #:use-module mod . uses)
     (begin (use-modules mod) (import-uses . uses)))))

(define-syntax include-one
  (syntax-rules (define-module)
    ((_ (define-module mod . uses))
     (import-uses . uses))
    ((_ exp) exp)))

(define-syntax include-tests
  (lambda (x)
    (syntax-case x ()
      ((include-tests file)
       (call-with-input-file (in-vicinity (getenv "TEST_SUITE_DIR")
                                          (syntax->datum #'file))
         (lambda (port)
           #`(begin
               . #,(let lp ()
                     (let ((exp (read port)))
                       (if (eof-object? exp)
                           #'()
                           (let ((exp (datum->syntax #'include-tests exp)))
                             #`((include-one #,exp) . #,(lp))))))))
         #:guess-encoding #t)))))

(install-suspendable-ports!)

(include-tests "tests/ports.test")
(include-tests "tests/rdelim.test")
(include-tests "tests/r6rs-ports.test")

(uninstall-suspendable-ports!)