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