X-Git-Url: https://jxself.org/git/?p=8sync.git;a=blobdiff_plain;f=tests%2Ftest-agenda.scm;h=ef2c74f13abe7a6c20392f445fd78b6e97efe9a0;hp=e3e12c59a5491d2f09d4aae67a27fc265f66cd42;hb=2cf0efca6f8abb4938cec1cc4d00bb96dcc4de87;hpb=98edc693d1eb7ebe72c6ce722cf716c670cb21e3 diff --git a/tests/test-agenda.scm b/tests/test-agenda.scm index e3e12c5..ef2c74f 100644 --- a/tests/test-agenda.scm +++ b/tests/test-agenda.scm @@ -19,13 +19,14 @@ -s !# -(define-module (tests test-core) +(define-module (tests test-agenda) #:use-module (srfi srfi-64) #:use-module (ice-9 q) #:use-module (ice-9 receive) - #:use-module (eightsync agenda)) + #:use-module (eightsync agenda) + #:use-module (tests utils)) -(test-begin "tests-agenda") +(test-begin "test-agenda") @@ -39,8 +40,25 @@ messages))) -;; Timer tests -;; =========== +;;; queue helpers +;;; ============= + +(define test-q (list->q '(1 2 3))) +(test-equal (deq! test-q) 1) +(test-equal (deq! test-q) 2) +(test-equal (deq! test-q) 3) +(test-assert (q-empty? test-q)) + +(define test-q (make-q* 'apple 'banana 'carrot)) +(test-equal (deq! test-q) 'apple) +(test-equal (deq! test-q) 'banana) +(test-equal (deq! test-q) 'carrot) +(test-assert (q-empty? test-q)) + + + +;;; Timer tests +;;; =========== (test-assert (time= '(1 . 1) '(1 . 1))) (test-assert (not (time= '(1 . 1) '(1 . 0)))) @@ -206,8 +224,8 @@ ;; ... whew! -;; Run/wrap request stuff -;; ---------------------- +;;; Run/wrap request stuff +;;; ====================== (let ((wrapped (wrap (+ 1 2)))) (test-assert (procedure? wrapped)) @@ -238,8 +256,8 @@ (test-equal (run-request-when run-two-squared) '(88 . 0))) -;;; %run, %sync and friends tests -;;; ----------------------------- +;;; %run, %8sync and friends tests +;;; ============================== (define (test-%run-and-friends async-request expected-when) (let* ((fake-kont (speak-it)) @@ -263,14 +281,14 @@ 8) ;; whoa, I'm surprised equal? can ;; compare records like this - (tdelta 8 0)) + (tdelta 8)) ;; TODO: test %port-request -;; TODO: test %sync and friends! +;; TODO: test %8sync and friends! ;;; Agenda tests -;;; ------------ +;;; ============ ;; helpers @@ -319,7 +337,7 @@ (speaker "Today I went to the zoo and I saw...\n") (speaker (string-concatenate - `("A " ,(symbol->string (%sync (%run (return-monkey)))) "!\n")))) + `("A " ,(symbol->string (%8sync (%run (return-monkey)))) "!\n")))) (let ((q (make-q))) (set! speaker (speak-it)) @@ -332,8 +350,94 @@ "(Hint, it's a monkey...)\n" "A monkey!\n"))) + +;; Error handling tests +;; -------------------- + +(define (remote-func-breaks) + (speaker "Here we go...\n") + (+ 1 2 (/ 1 0)) + (speaker "SHOULD NOT HAPPEN\n")) + +(define (indirection-remote-func-breaks) + (speaker "bebop\n") + (%8sync (%run (remote-func-breaks))) + (speaker "bidop\n")) + +(define* (local-func-gets-break #:key with-indirection) + (speaker "Time for exception fun!\n") + (let ((caught-exception #f)) + (catch-8sync + (%8sync (%run (if with-indirection + (indirection-remote-func-breaks) + (remote-func-breaks)))) + ('numerical-overflow + (lambda (orig-stacks . orig-args) + (set! caught-exception #t) + (speaker "in here now!\n") + (test-equal orig-args '("/" "Numerical overflow" #f #f)) + (test-assert (list? orig-stacks)) + (test-equal (length orig-stacks) + (if with-indirection 2 1)) + (for-each + (lambda (x) + (test-assert (stack? x))) + orig-stacks)))) + (test-assert caught-exception)) + (speaker "Well that was fun :)\n")) + + +(let ((q (make-q))) + (set! speaker (speak-it)) + (enq! q local-func-gets-break) + (start-agenda (make-agenda #:queue q) + #:stop-condition (true-after-n-times 10)) + (test-assert (speaker) + '("Time for exception fun!\n" + "Here we go...\n" + "in here now!\n" + "Well that was fun :)\n"))) + +(let ((q (make-q))) + (set! speaker (speak-it)) + (enq! q (wrap (local-func-gets-break #:with-indirection #t))) + (start-agenda (make-agenda #:queue q) + #:stop-condition (true-after-n-times 10)) + (test-assert (speaker) + '("Time for exception fun!\n" + "bebop\n" + "Here we go...\n" + "in here now!\n" + "Well that was fun :)\n"))) + +;; Make sure catching tools work + +(let ((speaker (speak-it)) + (catch-result #f)) + (catch-8sync + (begin + (speaker "hello") + (throw '8sync-caught-error + 'my-orig-key '(apple orange banana) '(*fake-stack* *fake-stack* *fake-stack*)) + (speaker "no goodbyes")) + ('some-key + (lambda (stacks . rest) + (speaker "should not happen"))) + ('my-orig-key + (lambda (stacks fruit1 fruit2 fruit3) + (set! catch-result + `((fruit1 ,fruit1) + (fruit2 ,fruit2) + (fruit3 ,fruit3)))))) + (test-equal (speaker) '("hello")) + (test-equal catch-result '((fruit1 apple) + (fruit2 orange) + (fruit3 banana)))) + ;; End tests -(test-end "tests-agenda") -;; (test-exit) +(test-end "test-agenda") + +;; @@: A better way to handle this at the repl? +(test-exit)