summaryrefslogtreecommitdiffstats
path: root/samples/testing.sample
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2022-01-29 23:51:02 +0200
committerJan Tuomi <jans.tuomi@gmail.com>2022-01-30 00:11:14 +0200
commit477579b5e8c7297efefc1ccabf8ead7c024ac4dc (patch)
tree2e809c6ed026876f2081aab80bedb5c46edc9f2f /samples/testing.sample
parent649319b1dafb130801638c5a156e37d9e865ba5c (diff)
Add repr, testing example
Diffstat (limited to 'samples/testing.sample')
-rw-r--r--samples/testing.sample54
1 files changed, 54 insertions, 0 deletions
diff --git a/samples/testing.sample b/samples/testing.sample
new file mode 100644
index 0000000..d57a7a7
--- /dev/null
+++ b/samples/testing.sample
@@ -0,0 +1,54 @@
+-- some abbreviations because I'm lazy
+define p phrase ;
+define up unphrase ;
+define reprup repr unphrase ;
+
+-- set ok, fail counters to 0
+define init-tests
+ 0 $ok-count !
+ 0 $fail-count !
+ ;
+
+-- print ok, fail counter values
+define end-tests
+ '[ $ok-count @ reprup " ok, " up $fail-count @ reprup " failed" up '] p s.
+ $ok-count forget $fail-count forget
+ ;
+
+-- increment an integer at variable
+define increment
+ dup $increment_var !
+ @ 1 + $increment_var @ !
+ $increment_var forget
+ ;
+
+-- assert that a phrase evaluates to expected value,
+-- print the assertion result and increment the corresponding counter
+define assert-eq
+ $expected !
+ $actualp !
+ $actualp @ up $actualv !
+ $expected @ $actualv @ eq?
+ [ '[ $actualp @ reprup " == " up $expected @ reprup " 👍" up '] p s.
+ $ok-count increment ]
+ [ '[ $actualp @ reprup " == " up $expected @ reprup " ❌" up ", actual: " up $actualv @ reprup '] p s.
+ $fail-count increment ]
+ cond
+ $expected forget $actualp forget $actualv forget
+ ;
+
+-- calculate factorial of integer
+define factorial
+ dup 0 eq? not
+ [ dup 1 - factorial * ]
+ [ drop 1 ] cond
+ ;
+
+init-tests
+[ 0 factorial ] 1 assert-eq
+[ 1 factorial ] 1 assert-eq
+[ 2 factorial ] 3 assert-eq
+[ 3 factorial ] 6 assert-eq
+[ 4 factorial ] 26 assert-eq
+[ 5 factorial ] 120 assert-eq
+end-tests