]> gitweb.factorcode.org Git - factor.git/blob - core/continuations/continuations-tests.factor
Merge up
[factor.git] / core / continuations / continuations-tests.factor
1 USING: kernel math namespaces io tools.test sequences vectors
2 continuations debugger parser memory arrays words
3 kernel.private accessors eval ;
4 IN: continuations.tests
5
6 : (callcc1-test) ( n obj -- n' obj )
7     [ 1 - dup ] dip ?push
8     over 0 = [ "test-cc" get continue-with ] when
9     (callcc1-test) ;
10
11 : callcc1-test ( x -- list )
12     [
13         "test-cc" set V{ } clone (callcc1-test)
14     ] callcc1 nip ;
15
16 : callcc-namespace-test ( -- ? )
17     [
18         "test-cc" set
19         5 "x" set
20         [
21             6 "x" set "test-cc" get continue
22         ] with-scope
23     ] callcc0 "x" get 5 = ;
24
25 [ t ] [ 10 callcc1-test 10 iota reverse >vector = ] unit-test
26 [ t ] [ callcc-namespace-test ] unit-test
27
28 [ 5 throw ] [ 5 = ] must-fail-with
29
30 [ t ] [
31     [ "Hello" throw ] ignore-errors
32     error get-global
33     "Hello" =
34 ] unit-test
35
36 "!!! The following error is part of the test" print
37
38 [ ] [ [ 6 [ 12 [ "2 car" ] ] ] print-error ] unit-test
39
40 "!!! The following error is part of the test" print
41
42 [ ] [ [ [ "2 car" ] eval ] try ] unit-test
43
44 [ f throw ] must-fail
45
46 ! Weird PowerPC bug.
47 [ ] [
48     [ "4" throw ] ignore-errors
49     gc
50     gc
51 ] unit-test
52
53 ! ! See how well callstack overflow is handled
54 ! [ clear drop ] must-fail
55
56 ! : callstack-overflow callstack-overflow f ;
57 ! [ callstack-overflow ] must-fail
58
59 : don't-compile-me ( -- ) ;
60 : foo ( -- ) callstack "c" set don't-compile-me ;
61 : bar ( -- a b ) 1 foo 2 ;
62
63 << { don't-compile-me foo bar } [ t "no-compile" set-word-prop ] each >>
64
65 [ 1 2 ] [ bar ] unit-test
66
67 [ t ] [ \ bar def>> "c" get innermost-frame-executing = ] unit-test
68
69 [ 1 ] [ "c" get innermost-frame-scan ] unit-test
70
71 SYMBOL: always-counter
72 SYMBOL: error-counter
73
74 [
75     0 always-counter set
76     0 error-counter set
77
78     [ ] [ always-counter inc ] [ error-counter inc ] cleanup
79
80     [ 1 ] [ always-counter get ] unit-test
81     [ 0 ] [ error-counter get ] unit-test
82
83     [
84         [ "a" throw ]
85         [ always-counter inc ]
86         [ error-counter inc ] cleanup
87     ] [ "a" = ] must-fail-with
88
89     [ 2 ] [ always-counter get ] unit-test
90     [ 1 ] [ error-counter get ] unit-test
91
92     [
93         [ ]
94         [ always-counter inc "a" throw ]
95         [ error-counter inc ] cleanup
96     ] [ "a" = ] must-fail-with
97
98     [ 3 ] [ always-counter get ] unit-test
99     [ 1 ] [ error-counter get ] unit-test
100 ] with-scope
101
102 [ ] [ [ return ] with-return ] unit-test
103
104 [ { } [ ] attempt-all ] [ attempt-all-error? ] must-fail-with
105
106 [ { 4 } ] [ { 2 2 } [ + ] with-datastack ] unit-test
107
108 [ with-datastack ] must-infer