test-pairs.scm 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. ;;; Copyright (C) 2023 Igalia, S.L.
  2. ;;;
  3. ;;; Licensed under the Apache License, Version 2.0 (the "License");
  4. ;;; you may not use this file except in compliance with the License.
  5. ;;; You may obtain a copy of the License at
  6. ;;;
  7. ;;; http://www.apache.org/licenses/LICENSE-2.0
  8. ;;;
  9. ;;; Unless required by applicable law or agreed to in writing, software
  10. ;;; distributed under the License is distributed on an "AS IS" BASIS,
  11. ;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. ;;; See the License for the specific language governing permissions and
  13. ;;; limitations under the License.
  14. ;;; Commentary:
  15. ;;;
  16. ;;; Pair tests.
  17. ;;;
  18. ;;; Code:
  19. (use-modules (srfi srfi-64)
  20. (test utils))
  21. (test-begin "test-pairs")
  22. (test-call "(1 . 2)" (lambda (a b) (cons a b)) 1 2)
  23. (test-call "1" (lambda (a) (car a)) '(1 . 2))
  24. (test-call "2" (lambda (a) (cdr a)) '(1 . 2))
  25. (test-call "#t" (lambda (a b) (equal? a b)) '() '())
  26. (test-call "#t" (lambda (a b) (equal? a b)) '(1 . 2) '(1 . 2))
  27. (test-call "#t" (lambda (a b) (equal? a b)) '(1 2) '(1 2))
  28. (test-call "#f" (lambda (a b) (equal? a b)) '() '(1))
  29. (test-call "#f" (lambda (a b) (equal? a b)) '(1 2) '(2 1))
  30. ;; Circular lists
  31. (test-call "#t" (lambda ()
  32. (let ((x (list 'a 'b 'c))
  33. (y (list 'a 'b 'c)))
  34. (set-cdr! (cdr (cdr x)) x)
  35. (set-cdr! (cdr (cdr y)) y)
  36. (equal? x y))))
  37. (test-call "#f" (lambda ()
  38. (let ((x (list 'a 'b 'c))
  39. (y (list 'a 'b)))
  40. (set-cdr! (cdr (cdr x)) x)
  41. (set-cdr! (cdr y) y)
  42. (equal? x y))))
  43. (test-call "(2 3)" (lambda (k l) (memv k l)) 2 '(1 2 3))
  44. (test-end* "test-pairs")