summaryrefslogtreecommitdiff
path: root/test-suite/tests/srfi-38.test
blob: b1096740344d735acc03aaa90e88544f02996def (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
;;; srfi-38.test --- Tests for SRFI 38.      -*- mode: scheme; -*-

;; Copyright (C) 2010 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, see
;; <http://www.gnu.org/licenses/>.

;;; Code:

(define-module (test-srfi-38)
  #:use-module (test-suite lib)
  #:use-module (srfi srfi-38)
  #:use-module (rnrs bytevectors))

(define (shared-structure->string object)
  (call-with-output-string
    (lambda (port)
      (write-with-shared-structure object port))))

(define (roundtrip object)
  (call-with-input-string (shared-structure->string object)
    (lambda (port)
      (read-with-shared-structure port))))

(with-test-prefix "pairs"
  (let ((foo (cons 'value-1 #f)))
    (set-cdr! foo foo)
    (pass-if "writing"
      (string=? "#1=(value-1 . #1#)"
                (shared-structure->string foo)))
    (pass-if "roundtrip"
      (let ((result (roundtrip foo)))
        (and (pair? result)
             (eq? (car result) 'value-1)
             (eq? (cdr result) result))))))

(with-test-prefix "bytevectors"
  (let ((vec (vector 0 1 2 3))
        (bv (u8-list->bytevector '(42 42))))
    (vector-set! vec 0 bv)
    (vector-set! vec 2 bv)
    (pass-if "roundtrip"
      (let ((result (roundtrip vec)))
        (and (equal? '#(#vu8(42 42) 1 #vu8(42 42) 3)
                     result)
             (eq? (vector-ref result 0)
                  (vector-ref result 2)))))))

(with-test-prefix "mixed"
  (let* ((pair (cons 'a 'b))
         (vec (vector 0 pair 2 pair #f)))
    (vector-set! vec 4 vec)
    (pass-if "roundtrip"
      (let ((result (roundtrip vec)))
        (and (eq? (vector-ref result 1)
                  (vector-ref result 3))
             (eq? result (vector-ref result 4)))))))