r6rs-records-procedural.test 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. ;;; r6rs-records-procedural.test --- Test suite for R6RS
  2. ;;; (rnrs records procedural)
  3. ;; Copyright (C) 2010 Free Software Foundation, Inc.
  4. ;;
  5. ;; This library is free software; you can redistribute it and/or
  6. ;; modify it under the terms of the GNU Lesser General Public
  7. ;; License as published by the Free Software Foundation; either
  8. ;; version 3 of the License, or (at your option) any later version.
  9. ;;
  10. ;; This library is distributed in the hope that it will be useful,
  11. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. ;; Lesser General Public License for more details.
  14. ;;
  15. ;; You should have received a copy of the GNU Lesser General Public
  16. ;; License along with this library; if not, write to the Free Software
  17. ;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  18. (define-module (test-suite test-rnrs-records-procedural)
  19. :use-module ((rnrs conditions) :version (6))
  20. :use-module ((rnrs exceptions) :version (6))
  21. :use-module ((rnrs records procedural) :version (6))
  22. :use-module (test-suite lib))
  23. (define :point (make-record-type-descriptor
  24. 'point #f #f #f #f '#((mutable x) (mutable y))))
  25. (define :point-cd (make-record-constructor-descriptor :point #f #f))
  26. (define :voxel (make-record-type-descriptor
  27. 'voxel :point #f #f #f '#((mutable z))))
  28. (define :voxel-cd (make-record-constructor-descriptor :voxel :point-cd #f))
  29. (with-test-prefix "make-record-type-descriptor"
  30. (pass-if "simple"
  31. (let* ((:point-cd (make-record-constructor-descriptor :point #f #f))
  32. (make-point (record-constructor :point-cd))
  33. (point? (record-predicate :point))
  34. (point-x (record-accessor :point 0))
  35. (point-y (record-accessor :point 1))
  36. (point-x-set! (record-mutator :point 0))
  37. (point-y-set! (record-mutator :point 1))
  38. (p1 (make-point 1 2)))
  39. (point? p1)
  40. (eqv? (point-x p1) 1)
  41. (eqv? (point-y p1) 2)
  42. (unspecified? (point-x-set! p1 5))
  43. (eqv? (point-x p1) 5)))
  44. (pass-if "sealed records cannot be subtyped"
  45. (let* ((:sealed-point (make-record-type-descriptor
  46. 'sealed-point #f #f #t #f '#((mutable x)
  47. (mutable y))))
  48. (success #f))
  49. (call/cc
  50. (lambda (continuation)
  51. (with-exception-handler
  52. (lambda (condition)
  53. (set! success (assertion-violation? condition))
  54. (continuation))
  55. (lambda () (make-record-type-descriptor
  56. 'sealed-point-subtype :sealed-point #f #f #f
  57. '#((mutable z)))))))
  58. success))
  59. (pass-if "non-generative records with same uid are eq"
  60. (let* ((:rtd-1 (make-record-type-descriptor
  61. 'rtd1 #f 'my-uid #f #f '#((mutable foo) (immutable bar))))
  62. (:rtd-2 (make-record-type-descriptor
  63. 'rtd1 #f 'my-uid #f #f '#((mutable foo) (immutable bar)))))
  64. (eq? :rtd-1 :rtd-2)))
  65. (pass-if "&assertion raised on conflicting non-generative types"
  66. (let* ((:rtd-1 (make-record-type-descriptor
  67. 'rtd1 #f 'my-uid-2 #f #f '#((mutable foo) (immutable bar))))
  68. (success 0)
  69. (check-definition
  70. (lambda (thunk)
  71. (call/cc
  72. (lambda (continuation)
  73. (with-exception-handler
  74. (lambda (condition)
  75. (if (assertion-violation? condition)
  76. (set! success (+ success 1)))
  77. (continuation))
  78. thunk))))))
  79. (check-definition
  80. (lambda ()
  81. (make-record-type-descriptor
  82. 'rtd1a #f 'my-uid-2 #f #f '#((mutable foo) (immutable bar)))))
  83. (check-definition
  84. (lambda ()
  85. (make-record-type-descriptor
  86. 'rtd1 :point 'my-uid-2 #f #f '#((mutable foo) (immutable bar)))))
  87. (check-definition
  88. (lambda ()
  89. (make-record-type-descriptor
  90. 'rtd1 #f 'my-uid-2 #t #f '#((mutable foo) (immutable bar)))))
  91. (check-definition
  92. (lambda ()
  93. (make-record-type-descriptor
  94. 'rtd1 #f 'my-uid-2 #f #t '#((mutable foo) (immutable bar)))))
  95. (check-definition
  96. (lambda () (make-record-type-descriptor 'rtd1 #f 'my-uid-2 #f #f '#())))
  97. (check-definition
  98. (lambda ()
  99. (make-record-type-descriptor
  100. 'rtd1 #f 'my-uid-2 #f #f '#((mutable foo) (immutable baz)))))
  101. (check-definition
  102. (lambda ()
  103. (make-record-type-descriptor
  104. 'rtd1 #f 'my-uid-2 #f #f '#((immutable foo) (immutable bar)))))
  105. (eqv? success 7))))
  106. (with-test-prefix "make-record-constructor-descriptor"
  107. (pass-if "simple protocol"
  108. (let* ((:point-protocol (lambda (p) (lambda (x y) (p (+ x 1) (+ y 1)))))
  109. (:point-protocol-cd (make-record-constructor-descriptor
  110. :point #f :point-protocol))
  111. (make-point (record-constructor :point-protocol-cd))
  112. (point-x (record-accessor :point 0))
  113. (point-y (record-accessor :point 1))
  114. (point (make-point 1 2)))
  115. (and (eqv? (point-x point) 2)
  116. (eqv? (point-y point) 3))))
  117. (pass-if "protocol delegates to parent with protocol"
  118. (let* ((:point-protocol (lambda (p) (lambda (x y) (p (+ x 1) (+ y 1)))))
  119. (:point-protocol-cd (make-record-constructor-descriptor
  120. :point #f :point-protocol))
  121. (:voxel-protocol (lambda (n)
  122. (lambda (x y z)
  123. (let ((p (n x y))) (p (+ z 100))))))
  124. (:voxel-protocol-cd (make-record-constructor-descriptor
  125. :voxel :point-protocol-cd :voxel-protocol))
  126. (make-voxel (record-constructor :voxel-protocol-cd))
  127. (point-x (record-accessor :point 0))
  128. (point-y (record-accessor :point 1))
  129. (voxel-z (record-accessor :voxel 0))
  130. (voxel (make-voxel 1 2 3)))
  131. (and (eqv? (point-x voxel) 2)
  132. (eqv? (point-y voxel) 3)
  133. (eqv? (voxel-z voxel) 103)))))
  134. (with-test-prefix "record-type-descriptor?"
  135. (pass-if "simple"
  136. (record-type-descriptor?
  137. (make-record-type-descriptor 'test #f #f #f #f '#()))))
  138. (with-test-prefix "record-constructor"
  139. (pass-if "simple"
  140. (let* ((make-point (record-constructor :point-cd))
  141. (point? (record-predicate :point))
  142. (point-x (record-accessor :point 0))
  143. (point-y (record-accessor :point 1))
  144. (point (make-point 1 2)))
  145. (and (point? point)
  146. (eqv? (point-x point) 1)
  147. (eqv? (point-y point) 2))))
  148. (pass-if "construct record subtype"
  149. (let* ((make-voxel (record-constructor :voxel-cd))
  150. (voxel? (record-predicate :voxel))
  151. (voxel-z (record-accessor :voxel 0))
  152. (voxel (make-voxel 1 2 3)))
  153. (and (voxel? voxel)
  154. (eqv? (voxel-z voxel) 3)))))
  155. (with-test-prefix "record-predicate"
  156. (pass-if "simple"
  157. (let* ((make-point (record-constructor :point-cd))
  158. (point (make-point 1 2))
  159. (point? (record-predicate :point)))
  160. (point? point)))
  161. (pass-if "predicate returns true on subtype"
  162. (let* ((make-voxel (record-constructor :voxel-cd))
  163. (voxel (make-voxel 1 2 3))
  164. (point? (record-predicate :point)))
  165. (point? voxel)))
  166. (pass-if "predicate returns false on supertype"
  167. (let* ((make-point (record-constructor :point-cd))
  168. (point (make-point 1 2))
  169. (voxel? (record-predicate :voxel)))
  170. (not (voxel? point)))))
  171. (with-test-prefix "record-accessor"
  172. (pass-if "simple"
  173. (let* ((make-point (record-constructor :point-cd))
  174. (point (make-point 1 2))
  175. (point-x (record-accessor :point 0))
  176. (point-y (record-accessor :point 1)))
  177. (and (eqv? (point-x point) 1)
  178. (eqv? (point-y point) 2))))
  179. (pass-if "accessor for supertype applied to subtype"
  180. (let* ((make-voxel (record-constructor :voxel-cd))
  181. (voxel (make-voxel 1 2 3))
  182. (point-x (record-accessor :point 0))
  183. (point-y (record-accessor :point 1)))
  184. (and (eqv? (point-x voxel) 1)
  185. (eqv? (point-y voxel) 2)))))
  186. (with-test-prefix "record-mutator"
  187. (pass-if "simple"
  188. (let* ((make-point (record-constructor :point-cd))
  189. (point (make-point 1 2))
  190. (point-set-x! (record-mutator :point 0))
  191. (point-set-y! (record-mutator :point 1))
  192. (point-x (record-accessor :point 0))
  193. (point-y (record-accessor :point 1)))
  194. (point-set-x! point 3)
  195. (point-set-y! point 4)
  196. (and (eqv? (point-x point) 3)
  197. (eqv? (point-y point) 4))))
  198. (pass-if "&assertion raised on request for immutable field"
  199. (let* ((:immutable-point (make-record-type-descriptor
  200. 'point #f #f #f #f '#((immutable x)
  201. (immutable y))))
  202. (success #f))
  203. (call/cc
  204. (lambda (continuation)
  205. (with-exception-handler
  206. (lambda (condition)
  207. (set! success (assertion-violation? condition))
  208. (continuation))
  209. (lambda () (record-mutator :immutable-point 0)))))
  210. success))
  211. (pass-if "mutator for supertype applied to subtype"
  212. (let* ((make-voxel (record-constructor :voxel-cd))
  213. (voxel (make-voxel 1 2 3))
  214. (point-set-x! (record-mutator :point 0))
  215. (point-set-y! (record-mutator :point 1))
  216. (point-x (record-accessor :point 0))
  217. (point-y (record-accessor :point 1)))
  218. (point-set-x! voxel 3)
  219. (point-set-y! voxel 4)
  220. (and (eqv? (point-x voxel) 3)
  221. (eqv? (point-y voxel) 4)))))