123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- ;;;; poe.test --- exercise ice-9/poe.scm -*- scheme -*-
- ;;;;
- ;;;; Copyright 2003, 2006 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, write to the Free Software
- ;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- (define-module (test-suite test-ice-9-poe)
- #:use-module (test-suite lib)
- #:use-module (ice-9 poe))
- ;;
- ;; pure-funcq
- ;;
- (with-test-prefix "pure-funcq"
- (with-test-prefix "no args"
- (define obj (vector 123)) ;; not gc'ed
- (define called #f)
- (define (foo)
- (set! called #t)
- obj)
- (let ((func (pure-funcq foo)))
- (pass-if "called first"
- (set! called #f)
- (and (eq? obj (func))
- called))
- (pass-if "not called second"
- (set! called #f)
- (and (eq? obj (func))
- (not called)))))
- (with-test-prefix "1 arg"
- (define obj1 (vector 123)) ;; not gc'ed
- (define obj2 (vector 456)) ;; not gc'ed
- (define called #f)
- (define (foo sym)
- (set! called #t)
- (case sym
- ((x) obj1)
- ((y) obj2)
- (else (error "oops"))))
- (let ((func (pure-funcq foo)))
- (pass-if "called first x"
- (set! called #f)
- (and (eq? obj1 (func 'x))
- called))
- (pass-if "not called second x"
- (set! called #f)
- (and (eq? obj1 (func 'x))
- (not called)))
- (pass-if "called first y"
- (set! called #f)
- (and (eq? obj2 (func 'y))
- called))
- (pass-if "not called second y"
- (set! called #f)
- (and (eq? obj2 (func 'y))
- (not called)))
- (pass-if "not called third x"
- (set! called #f)
- (and (eq? obj1 (func 'x))
- (not called))))))
- ;;
- ;; perfect-funcq
- ;;
- (with-test-prefix "perfect-funcq"
-
- (with-test-prefix "no args"
- (define called #f)
- (define (foo)
- (set! called #t)
- 'foo)
-
- (let ((func (perfect-funcq 31 foo)))
-
- (pass-if "called first"
- (set! called #f)
- (and (eq? 'foo (func))
- called))
-
- (pass-if "not called second"
- (set! called #f)
- (and (eq? 'foo (func))
- (not called)))))
-
- (with-test-prefix "1 arg"
- (define called #f)
- (define (foo str)
- (set! called #t)
- (string->number str))
-
- (let ((func (perfect-funcq 31 foo)))
- (define s1 "123")
- (define s2 "123")
-
- (pass-if "called first s1"
- (set! called #f)
- (and (= 123 (func s1))
- called))
-
- (pass-if "not called second s1"
- (set! called #f)
- (and (= 123 (func s1))
- (not called)))
-
- (pass-if "called first s2"
- (set! called #f)
- (and (= 123 (func s2))
- called))
-
- (pass-if "not called second s2"
- (set! called #f)
- (and (= 123 (func s2))
- (not called))))))
|