Add queue helpers, with tests
authorChristopher Allan Webber <cwebber@dustycloud.org>
Sat, 28 Nov 2015 15:17:58 +0000 (09:17 -0600)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Sat, 28 Nov 2015 15:17:58 +0000 (09:17 -0600)
eightsync/agenda.scm
tests/test-agenda.scm

index a2463a2a8a892aef7e4dc325558355030227737c..ede753fee409eb4a3f88b6728876fc77b079e74d 100644 (file)
@@ -30,6 +30,8 @@
             
             make-async-prompt-tag
 
+            list->q make-q*
+
             <time-segment>
             make-time-segment time-segment?
             time-segment-time time-segment-queue
@@ -146,6 +148,19 @@ Generally done automatically for the user through (make-agenda)."
          "Can't get current agenda prompt if there's no current agenda!")
         (agenda-prompt-tag current-agenda))))
 
+;; helper for making queues for an agenda
+(define (list->q lst)
+  "Makes a queue composed of LST items"
+  (let ((q (make-q)))
+    (for-each
+     (lambda (x)
+       (enq! q x))
+     lst)
+    q))
+
+(define (make-q* . args)
+  "Makes a queue and populates it with this invocation's ARGS"
+  (list->q args))
 
 \f
 ;;; Schedule
index 9ab65f1cdf57f3ef488ded5d0f33a006f382c4b5..ef2c74f13abe7a6c20392f445fd78b6e97efe9a0 100644 (file)
       messages)))
 
 \f
-;; 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))
+
+
+\f
+;;; Timer tests
+;;; ===========
 
 (test-assert (time= '(1 . 1) '(1 . 1)))
 (test-assert (not (time= '(1 . 1) '(1 . 0))))