r6rs-lists.test 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. ;;; r6rs-lists.test --- Test suite for R6RS (rnrs lists)
  2. ;; Copyright (C) 2010 Free Software Foundation, Inc.
  3. ;;
  4. ;; This library is free software; you can redistribute it and/or
  5. ;; modify it under the terms of the GNU Lesser General Public
  6. ;; License as published by the Free Software Foundation; either
  7. ;; version 3 of the License, or (at your option) any later version.
  8. ;;
  9. ;; This library is distributed in the hope that it will be useful,
  10. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. ;; Lesser General Public License for more details.
  13. ;;
  14. ;; You should have received a copy of the GNU Lesser General Public
  15. ;; License along with this library; if not, write to the Free Software
  16. ;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. (define-module (test-suite test-r6rs-lists)
  18. :use-module ((rnrs lists) :version (6))
  19. :use-module (test-suite lib))
  20. (with-test-prefix "memp"
  21. (pass-if "memp simple"
  22. (equal? (memp even? '(3 1 4 1 5 9 2 6 5)) '(4 1 5 9 2 6 5))))
  23. (with-test-prefix "assp"
  24. (pass-if "assp simple"
  25. (let ((d '((3 a) (1 b) (4 c))))
  26. (equal? (assp even? d) '(4 c)))))
  27. (with-test-prefix "fold-left"
  28. (pass-if "fold-left sum"
  29. (equal? (fold-left + 0 '(1 2 3 4 5))
  30. 15))
  31. (pass-if "fold-left reverse"
  32. (equal? (fold-left (lambda (a e) (cons e a)) '() '(1 2 3 4 5))
  33. '(5 4 3 2 1)))
  34. (pass-if "fold-left max-length"
  35. (equal? (fold-left (lambda (max-len s)
  36. (max max-len (string-length s)))
  37. 0
  38. '("longest" "long" "longer"))
  39. 7))
  40. (pass-if "fold-left with-cons"
  41. (equal? (fold-left cons '(q) '(a b c))
  42. '((((q) . a) . b) . c)))
  43. (pass-if "fold-left sum-multiple"
  44. (equal? (fold-left + 0 '(1 2 3) '(4 5 6))
  45. 21))
  46. (pass-if "fold-left pairlis"
  47. (equal? (fold-left (lambda (accum e1 e2)
  48. (cons (cons e1 e2) accum))
  49. '((d . 4))
  50. '(a b c)
  51. '(1 2 3))
  52. '((c . 3) (b . 2) (a . 1) (d . 4)))))