test-vectors.scm 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. ;;; Vector tests.
  17. ;;;
  18. ;;; Code:
  19. (use-modules (srfi srfi-64)
  20. (test utils))
  21. (test-begin "test-vectors")
  22. (test-call "#(1 2 3)" (lambda (a b c) (vector a b c)) 1 2 3)
  23. (test-call "3" (lambda (v) (vector-ref v 2)) #(1 2 3))
  24. (test-call "2" (lambda (v idx) (vector-ref v idx)) #(1 2 3) 1)
  25. (test-call "#(42 42 42)" (lambda (n) (make-vector n 42)) 3)
  26. (test-call "#t" (lambda (a b) (equal? a b)) #() #())
  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. ;; Vectors with cycles
  31. (test-call "#t" (lambda ()
  32. (let ((x (vector 'a 'b 'c #f))
  33. (y (vector 'a 'b 'c #f)))
  34. (vector-set! x 3 x)
  35. (vector-set! y 3 y)
  36. (equal? x y))))
  37. (test-call "#f" (lambda ()
  38. (let ((x (vector 'a 'b 'c #f))
  39. (y (vector 'a 'b #f)))
  40. (vector-set! x 3 x)
  41. (vector-set! y 2 y)
  42. (equal? x y))))
  43. (test-end* "test-vectors")