-
Notifications
You must be signed in to change notification settings - Fork 4
/
check-type.lsp
83 lines (71 loc) · 2.33 KB
/
check-type.lsp
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
;-*- Mode: Lisp -*-
;;;; Author: Paul Dietz
;;;; Created: Sat Feb 15 20:12:04 2003
;;;; Contains: Tests of CHECK-TYPE
(in-package :cl-test)
(deftest check-type.1
(let ((x 'a))
(values (check-type x symbol) x))
nil a)
(deftest check-type.2
(signals-type-error x 'a (check-type x integer))
t)
(deftest check-type.3
(let ((x 'a))
(handler-bind
((type-error #'(lambda (c)
(assert (eql (type-error-datum c) x))
(assert (not (typep x (type-error-expected-type c))))
;; Can we assume the expected-type is NUMBER?
(store-value 15 c))))
(values (check-type x number) x)))
nil 15)
(deftest check-type.4
(let ((x 'a))
(values (check-type x symbol "a symbol") x))
nil a)
(deftest check-type.5
(let ((x 'a))
(handler-bind
((type-error #'(lambda (c)
(assert (eql (type-error-datum c) x))
(assert (not (typep x (type-error-expected-type c))))
;; Can we assume the expected-type is STRING?
(store-value "abc" c))))
(values (check-type x string "a string") x)))
nil "abc")
(deftest check-type.6
(let ((x 'a))
(handler-bind
((type-error #'(lambda (c)
(assert (eql (type-error-datum c) x))
(assert (not (typep x (type-error-expected-type c))))
;; Can we assume the expected-type is NUMBER?
(store-value 15 nil))))
(values (check-type x number) x)))
nil 15)
(deftest check-type.7
(let ((x 'a))
(handler-bind
((type-error #'(lambda (c)
(assert (eql (type-error-datum c) x))
(assert (not (typep x (type-error-expected-type c))))
;; Can we assume the expected-type is NUMBER?
(store-value 15))))
(values (check-type x number) x)))
nil 15)
;;; Test that explicit calls to macroexpand in subforms
;;; are done in the correct environment
(deftest check-type.8
(let ((x 10))
(macrolet
((%m (z) z))
(check-type (expand-in-current-env (%m x))
(integer 8 13))))
nil)
(deftest check-type.9
(let ((x 10))
(macrolet
((%m (z) z))
(check-type x (integer 9 12) (expand-in-current-env (%m "Foo!")))))
nil)