2016-12-16 22:34:08 +00:00
|
|
|
#! /bin/sh
|
|
|
|
# -*-scheme-*-
|
2019-11-03 21:15:11 +00:00
|
|
|
exec ${MES-bin/mes} --no-auto-compile -L ${0%/*} -L module -C module -e '(tests optargs)' -s "$0" "$@"
|
2016-12-16 22:34:08 +00:00
|
|
|
!#
|
|
|
|
|
|
|
|
;;; -*-scheme-*-
|
|
|
|
|
2018-07-22 12:24:36 +00:00
|
|
|
;;; GNU Mes --- Maxwell Equations of Software
|
2017-11-21 18:22:26 +00:00
|
|
|
;;; Copyright © 2016,2018 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
2016-12-16 22:34:08 +00:00
|
|
|
;;;
|
2018-07-22 12:24:36 +00:00
|
|
|
;;; This file is part of GNU Mes.
|
2016-12-16 22:34:08 +00:00
|
|
|
;;;
|
2018-07-22 12:24:36 +00:00
|
|
|
;;; GNU Mes is free software; you can redistribute it and/or modify it
|
2016-12-16 22:34:08 +00:00
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
2018-07-22 12:24:36 +00:00
|
|
|
;;; GNU Mes is distributed in the hope that it will be useful, but
|
2016-12-16 22:34:08 +00:00
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
2018-07-22 12:24:36 +00:00
|
|
|
;;; along with GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
2016-12-16 22:34:08 +00:00
|
|
|
|
2018-07-21 11:48:50 +00:00
|
|
|
(define-module (tests optargs)
|
2018-11-11 15:25:36 +00:00
|
|
|
#:use-module (mes optargs)
|
2018-07-21 11:48:50 +00:00
|
|
|
#:use-module (mes mes-0)
|
|
|
|
#:use-module (mes test))
|
|
|
|
|
2016-12-25 10:13:51 +00:00
|
|
|
(cond-expand
|
|
|
|
(mes
|
|
|
|
(mes-use-module (mes optargs))
|
2018-07-21 11:48:50 +00:00
|
|
|
(mes-use-module (mes test)))
|
|
|
|
(else))
|
2016-12-16 22:34:08 +00:00
|
|
|
|
|
|
|
(pass-if-equal "cond =>" 10
|
|
|
|
(cond
|
|
|
|
(5 => (lambda (p) (* p 2)))))
|
|
|
|
(pass-if-equal "cond => 2" 10
|
|
|
|
(cond
|
|
|
|
(#f (display "hallo") (newline))
|
|
|
|
(5 => (lambda (p) (* p 2)))
|
|
|
|
(#t (display "wereld" (newline)))))
|
|
|
|
(pass-if-equal "cond => last" 10
|
|
|
|
(cond
|
|
|
|
(#f (display "hallo") (newline))
|
|
|
|
(5 => (lambda (p) (* p 2)))))
|
|
|
|
|
|
|
|
(pass-if "keyword?" (keyword? #:foo))
|
|
|
|
(pass-if "keywords" (eq? #:foo #:foo))
|
|
|
|
(pass-if-equal "keyword->symbol" 'foo (keyword->symbol #:foo))
|
|
|
|
(pass-if-equal "symbol->keyword" #:foo (symbol->keyword 'foo))
|
|
|
|
(pass-if-not "keywords" (eq? #:foo ':foo))
|
2018-01-25 05:58:44 +00:00
|
|
|
|
2016-12-16 22:34:08 +00:00
|
|
|
(pass-if "optargs #:optional" ((lambda* (#:optional (x #f)) x) #t))
|
|
|
|
(pass-if-equal "optargs #:optional default" #f ((lambda* (#:optional (x #f)) x)))
|
|
|
|
(pass-if "optargs key" ((lambda* (#:key (foo #f)) foo) #:foo #t))
|
|
|
|
(pass-if-equal "optargs key default" #f ((lambda* (#:key (foo #f)) foo)))
|
|
|
|
|
2017-01-07 00:08:29 +00:00
|
|
|
(define <info> '<info>)
|
|
|
|
(define <functions> '<functions>)
|
|
|
|
(define <globals> '<globals>)
|
|
|
|
(define <locals> '<locals>)
|
|
|
|
(define <text> '<text>)
|
|
|
|
|
|
|
|
(define* (make o #:key (functions '()) (globals '()) (locals '()) (text '()))
|
2018-01-06 10:18:38 +00:00
|
|
|
(list <info>
|
|
|
|
(cons <functions> functions)
|
|
|
|
(cons <globals> globals)
|
|
|
|
(cons <locals> locals)
|
|
|
|
(cons <text> text)))
|
2017-01-07 00:08:29 +00:00
|
|
|
|
|
|
|
(define (.functions o)
|
2018-01-06 10:18:38 +00:00
|
|
|
(assq-ref (cdr o) <functions>))
|
2017-01-07 00:08:29 +00:00
|
|
|
|
|
|
|
(define (.globals o)
|
2018-01-06 10:18:38 +00:00
|
|
|
(assq-ref (cdr o) <globals>))
|
2017-01-07 00:08:29 +00:00
|
|
|
|
|
|
|
(define (.locals o)
|
2018-01-06 10:18:38 +00:00
|
|
|
(assq-ref (cdr o) <locals>))
|
2017-01-07 00:08:29 +00:00
|
|
|
|
|
|
|
(define (.text o)
|
2018-01-06 10:18:38 +00:00
|
|
|
(assq-ref (cdr o) <text>))
|
2017-01-07 00:08:29 +00:00
|
|
|
|
|
|
|
(define (info? o)
|
|
|
|
(and (pair? o) (eq? (car o) <info>)))
|
|
|
|
|
|
|
|
(define (clone o . rest)
|
|
|
|
(cond ((info? o)
|
|
|
|
(let ((functions (.functions o))
|
|
|
|
(globals (.globals o))
|
|
|
|
(locals (.locals o))
|
|
|
|
(text (.text o)))
|
|
|
|
(let-keywords rest
|
|
|
|
#f
|
|
|
|
((functions functions)
|
|
|
|
(globals globals)
|
|
|
|
(locals locals)
|
|
|
|
(text text))
|
|
|
|
(make <info> #:functions functions #:globals globals #:locals locals #:text text))))))
|
|
|
|
|
|
|
|
(pass-if-equal "clone <info>"
|
|
|
|
(make <info> #:functions '(0))
|
|
|
|
(clone (make <info>) #:functions '(0)))
|
|
|
|
|
2016-12-16 22:34:08 +00:00
|
|
|
(result 'report)
|