2020-03-01 20:25:01 +01:00
|
|
|
#lang racket
|
2020-03-01 19:05:28 +01:00
|
|
|
|
|
|
|
;;; Tests for dds/rs.
|
|
|
|
|
2020-03-01 20:25:01 +01:00
|
|
|
(require rackunit "rs.rkt")
|
2020-03-01 19:05:28 +01:00
|
|
|
|
|
|
|
(test-case "Basic definitions"
|
2020-03-01 19:20:24 +01:00
|
|
|
(let* ([r1 (reaction (set 'x) (set 'y) (set 'z))]
|
|
|
|
[r2 (reaction (set 'x) (set) (set 'y))]
|
|
|
|
[rs (make-immutable-hash (list (cons 'a r1) (cons 'b r2)))]
|
|
|
|
[s1 (set 'x 'z)]
|
|
|
|
[s2 (set 'x 'y)])
|
|
|
|
(check-true (enabled? r1 s1))
|
|
|
|
(check-false (enabled? r1 s2))
|
|
|
|
(check-equal? (list-enabled rs s1) '(a b))
|
2020-03-01 19:47:38 +01:00
|
|
|
(check-equal? (list-enabled rs s2) '(b))
|
2020-03-01 19:51:53 +01:00
|
|
|
(check-equal? (union-products rs '(a b)) (set 'y 'z))
|
|
|
|
(check-equal? (apply-rs rs s1) (set 'y 'z))
|
|
|
|
(check-equal? (apply-rs rs s2) (set 'y))))
|
2020-03-01 20:46:06 +01:00
|
|
|
|
|
|
|
(test-case "Org-mode interaction"
|
|
|
|
(check-equal? (ht-str-triples->rs #hash((a . ("x t" "y" "z"))))
|
2020-03-01 21:10:01 +01:00
|
|
|
(make-immutable-hash (list (cons 'a (reaction (set 'x 't) (set 'y) (set 'z))))))
|
|
|
|
(check-equal? (rs->ht-str-triples (make-immutable-hash (list (cons 'a (reaction (set 'x 't) (set 'y) (set 'z))))))
|
|
|
|
#hash((a . ("t x" "y" "z")))))
|