X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;ds=sidebyside;f=tests%2Ftest-actors.scm;h=aad93b5a03e23dc9e3ddef7568b0626416042b9f;hb=17830fd9912894b6a30a5c4a4a83722a74c01ccd;hp=73927cd9764e773327b6ab52f3ac0302e0fb29c0;hpb=4deb5433574cfdf8f2b2bf22460c8b74ba426bed;p=8sync.git diff --git a/tests/test-actors.scm b/tests/test-actors.scm index 73927cd..aad93b5 100644 --- a/tests/test-actors.scm +++ b/tests/test-actors.scm @@ -115,7 +115,7 @@ (lazy-rep (hive-create-actor* hive "lazy-rep"))) ;; * Playing a tape of a diligent service rep * (parameterize ((%record-out (open-output-string))) - (let* ((result (ez-run-hive + (let* ((result (run-hive hive (list (bootstrap-message hive customer 'pester-rep #:who-to-call diligent-rep)))) @@ -129,7 +129,7 @@ customer> Well then! Harumph.\n" displayed-text))) ;; * Playing a tape of a lazy service rep * (parameterize ((%record-out (open-output-string))) - (let* ((result (ez-run-hive + (let* ((result (run-hive hive (list (bootstrap-message hive customer 'pester-rep #:who-to-call lazy-rep)))) @@ -139,5 +139,41 @@ lazy-rep> I'm not answering that. customer> Whaaaaat? I can't believe I got voice mail!\n" displayed-text)))) + +;;; Cleanup tests + +(define-simple-actor + (*clean-up* test-call-clean-up)) + +(define (test-call-clean-up actor message) + (speak "Hey, I'm cleanin' up here!\n")) + +(with-fresh-speaker + (let ((hive (make-hive))) + (hive-create-actor hive ) + (run-hive hive '())) + (test-equal '("Hey, I'm cleanin' up here!\n") + (get-spoken))) + +;; won't work if we turn off #:clean-up though + +(with-fresh-speaker + (let ((hive (make-hive))) + (hive-create-actor hive ) + (run-hive hive '() #:clean-up #f)) + (test-equal '("Hey, I'm cleanin' up here!\n") + (get-spoken))) + +;; The exploder self-destructs, even though run-hive has clean-up +;; disabled, because it cleans up on self-destruct. + +(with-fresh-speaker + (let ((hive (make-hive))) + (define exploder (hive-create-actor hive )) + (run-hive hive (list (bootstrap-message hive exploder 'explode)) + #:clean-up #f)) + (get-spoken)) + + (test-end "test-actors") (test-exit)