-
Notifications
You must be signed in to change notification settings - Fork 0
/
chipi.asd
70 lines (66 loc) · 2.2 KB
/
chipi.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
(defsystem "chipi"
:version "0.4.0"
:author "Manfred Bergmann"
:license "Apache-2"
:depends-on ("alexandria"
(:version "sento" "3.3.0")
"timer-wheel"
"cl-cron"
"yason"
"drakma"
"local-time"
"binding-arrows"
"parse-float")
:components ((:module "src"
:serial t
:components
((:file "cron")
(:file "cl-cron-overrides")
(:file "timer")
(:file "isys")
(:file "env")
(:file "binding-api")
(:file "persistence-api")
(:file "item")
(:file "itemgroup")
(:file "persistence-simple")
(:file "persistence-influx")
(:file "rule")
(:file "persistence")
(:module "bindings"
:components
((:file "base-binding")))
(:file "hab")
)))
:in-order-to ((test-op (test-op "chipi/tests"))))
(defsystem "chipi/tests"
:author "Manfred Bergmann"
:depends-on ("chipi"
"fiveam"
"cl-mock"
)
:components ((:module "test"
:components
((:file "all-tests")
(:file "binding-test")
(:file "item-test")
(:file "itemgroup-test")
(:file "rule-test")
(:file "persistence-test")
(:file "persistence-influx-test")
(:file "env-test")
(:file "hab-test")
)))
:description "Test system for chipi"
:perform (test-op (op c) (symbol-call :fiveam :run!
(uiop:find-symbol* '#:test-suite
'#:chipi.tests))))
#|
hab:
OK - test for shutdown-hook
OK - allow `pull-fun` to decide on calling push via returning (values val '(:pull))
OK - allow `pull-fun` to return future which is then just `fcompleted`.
OK - implement itemgroups
- itemgroups: allow group in group
- replace yason code with jzon
|#