]> gitweb.factorcode.org Git - factor.git/blob - core/kernel/kernel-tests.factor
kernel: don't test callstack overflow on OpenBSD or Windows
[factor.git] / core / kernel / kernel-tests.factor
1 USING: arrays byte-arrays kernel kernel.private math memory
2 namespaces sequences tools.test math.private quotations
3 continuations prettyprint io.streams.string debugger assocs
4 sequences.private accessors locals.backend grouping words
5 system ;
6 IN: kernel.tests
7
8 [ 0 ] [ f size ] unit-test
9 [ t ] [ [ \ = \ = ] all-equal? ] unit-test
10
11 ! Don't leak extra roots if error is thrown
12 [ ] [ 10000 [ [ 3 throw ] ignore-errors ] times ] unit-test
13
14 [ ] [ 10000 [ [ -1 f <array> ] ignore-errors ] times ] unit-test
15
16 ! Make sure we report the correct error on stack underflow
17 [ clear drop ] [ { "kernel-error" 10 f f } = ] must-fail-with
18
19 [ ] [ :c ] unit-test
20
21 [ 3 [ { } set-retainstack ] dip ] [ { "kernel-error" 12 f f } = ] must-fail-with
22
23 [ ] [ :c ] unit-test
24
25 : overflow-d ( -- ) 3 overflow-d ;
26
27 : (overflow-d-alt) ( -- n ) 3 ;
28
29 : overflow-d-alt ( -- ) (overflow-d-alt) overflow-d-alt ;
30
31 : overflow-r ( -- ) 3 load-local overflow-r ;
32
33 <<
34 { overflow-d (overflow-d-alt) overflow-d-alt overflow-r }
35 [ t "no-compile" set-word-prop ] each
36 >>
37
38 [ overflow-d ] [ { "kernel-error" 11 f f } = ] must-fail-with
39
40 [ ] [ :c ] unit-test
41
42 [ overflow-d-alt ] [ { "kernel-error" 11 f f } = ] must-fail-with
43
44 [ ] [ [ :c ] with-string-writer drop ] unit-test
45
46 [ overflow-r ] [ { "kernel-error" 13 f f } = ] must-fail-with
47
48 [ ] [ :c ] unit-test
49
50 : overflow-c ( -- ) overflow-c overflow-c ;
51
52 os [ windows? ] [ openbsd? ] bi or [
53     [ overflow-c ] [ { "kernel-error" 14 f f } = ] must-fail-with
54 ] unless
55
56 [ -7 <byte-array> ] must-fail
57
58 [ 3 ] [ t 3 and ] unit-test
59 [ f ] [ f 3 and ] unit-test
60 [ f ] [ 3 f and ] unit-test
61 [ 4 ] [ 4 6 or ] unit-test
62 [ 6 ] [ f 6 or ] unit-test
63 [ f ] [ 1 2 xor ] unit-test
64 [ 1 ] [ 1 f xor ] unit-test
65 [ 2 ] [ f 2 xor ] unit-test
66 [ f ] [ f f xor ] unit-test
67
68 [ dip ] must-fail
69 [ ] [ :c ] unit-test
70
71 [ 1 [ call ] dip ] must-fail
72 [ ] [ :c ] unit-test
73
74 [ 1 2 [ call ] dip ] must-fail
75 [ ] [ :c ] unit-test
76
77 [ 5 ] [ 1 [ 2 2 + ] dip + ] unit-test
78
79 [ [ ] keep ] must-fail
80
81 [ 6 ] [ 2 [ sq ] keep + ] unit-test
82
83 [ [ ] 2keep ] must-fail
84 [ 1 [ ] 2keep ] must-fail
85 [ 3 1 2 ] [ 1 2 [ 2drop 3 ] 2keep ] unit-test
86
87 [ 0 ] [ f [ sq ] [ 0 ] if* ] unit-test
88 [ 4 ] [ 2 [ sq ] [ 0 ] if* ] unit-test
89
90 [ 0 ] [ f [ 0 ] unless* ] unit-test
91 [ t ] [ t [ "Hello" ] unless* ] unit-test
92
93 [ "2\n" ] [ [ 1 2 [ . ] [ sq . ] ?if ] with-string-writer ] unit-test
94 [ "9\n" ] [ [ 3 f [ . ] [ sq . ] ?if ] with-string-writer ] unit-test
95
96 [ f ] [ f (clone) ] unit-test
97 [ -123 ] [ -123 (clone) ] unit-test
98
99 [ 6 2 ] [ 1 2 [ 5 + ] dip ] unit-test
100
101 [ ] [ callstack set-callstack ] unit-test
102
103 [ 3drop datastack ] must-fail
104 [ ] [ :c ] unit-test
105
106 ! Doesn't compile; important
107 : foo ( a -- b ) ;
108
109 << \ foo t "no-compile" set-word-prop >>
110
111 [ drop foo ] must-fail
112 [ ] [ :c ] unit-test
113
114 ! Regression
115 : (loop) ( a b c d -- )
116     [ pick ] dip swap [ pick ] dip swap
117     < [ [ 1 + ] 3dip (loop) ] [ 2drop 2drop ] if ; inline recursive
118
119 : loop ( obj -- )
120     H{ } values swap [ dup length swap ] dip [ 0 ] 3dip (loop) ;
121
122 [ loop ] must-fail
123
124 ! Discovered on Windows
125 : total-failure-1 ( -- a ) "" [ ] map unimplemented ;
126
127 [ total-failure-1 ] must-fail
128
129 [ 1 1 2 2 3 3 ] [ 1 2 3 [ dup ] tri@ ] unit-test
130 [ 1 4 9 ] [ 1 2 3 [ sq ] tri@ ] unit-test
131 [ [ sq ] tri@ ] must-infer
132
133 [ 4 ] [ 1 { [ 1 ] [ 2 ] } dispatch sq ] unit-test
134
135 ! Test traceback accuracy
136 : last-frame ( -- pair )
137     error-continuation get call>> callstack>array 6 head* 3 tail* ;
138
139 [
140     { [ 1 2 [ 3 throw ] call 4 ] [ 1 2 [ 3 throw ] call 4 ] 3 }
141 ] [
142     [ [ 1 2 [ 3 throw ] call 4 ] call ] ignore-errors
143     last-frame
144 ] unit-test
145
146 [
147     { [ 1 2 [ 3 throw ] dip 4 ] [ 1 2 [ 3 throw ] dip 4 ] 3 }
148 ] [
149     [ [ 1 2 [ 3 throw ] dip 4 ] call ] ignore-errors
150     last-frame
151 ] unit-test
152
153 [
154     { [ 1 2 3 throw [ ] call 4 ] [ 1 2 3 throw [ ] call 4 ] 3 }
155 ] [
156     [ [ 1 2 3 throw [ ] call 4 ] call ] ignore-errors
157     last-frame
158 ] unit-test
159
160 [
161     { [ 1 2 3 throw [ ] dip 4 ] [ 1 2 3 throw [ ] dip 4 ] 3 }
162 ] [
163     [ [ 1 2 3 throw [ ] dip 4 ] call ] ignore-errors
164     last-frame
165 ] unit-test
166
167 [
168     { [ 1 2 3 throw [ ] [ ] if 4 ] [ 1 2 3 throw [ ] [ ] if 4 ] 3 }
169 ] [
170     [ [ 1 2 3 throw [ ] [ ] if 4 ] call ] ignore-errors
171     last-frame
172 ] unit-test
173
174 [ 10 2 3 4 5 ] [ 1 2 3 4 5 [ 10 * ] 4dip ] unit-test
175
176 [ 3 -1 5/6 ] [ 1 2 3 4 5 6 [ + ] [ - ] [ / ] 2tri* ] unit-test
177
178 [ { 1 2 } { 3 4 } { 5 6 } ] [ 1 2 3 4 5 6 [ 2array ] 2tri@ ] unit-test
179
180 [ t ] [ { } identity-hashcode fixnum? ] unit-test
181 [ 123 ] [ 123 identity-hashcode ] unit-test
182 [ t ] [ f identity-hashcode fixnum? ] unit-test