forked from DGNum/liminix
450d3820b2
requires less cavorting with globals and stuff
42 lines
1.3 KiB
Fennel
42 lines
1.3 KiB
Fennel
(local { : view} (require :fennel))
|
|
(import-macros { : expect= } :anoia.assert)
|
|
|
|
(local subject (require :watch))
|
|
|
|
(let [params
|
|
{:matches {:devname "foo" :partname "my-usbstick"}}]
|
|
(expect= (subject.event-matches? params {}) false)
|
|
(expect= (subject.event-matches? params {:devname "bill"}) false)
|
|
(expect= (subject.event-matches? params {:devname "foo" :partname "my-usbstick"}) true)
|
|
(expect= (subject.event-matches? params {:devname "foo" :otherthing "bar" :partname "my-usbstick"}) true)
|
|
)
|
|
|
|
|
|
;; Events come from the netlink socket as an initial summary line
|
|
;; followed by a NUL character followed by newline-separated key=value
|
|
;; pairs. For ease of editing we don't have NULs in events.txt,
|
|
;; so we need to massage it into shape here
|
|
|
|
(local events
|
|
(with-open [f (io.open "./events.txt" :r)]
|
|
(let [text (string.gsub (f:read "*a") "\n\n" "\0") ]
|
|
(icollect [n (string.gmatch text "([^\0]+)")]
|
|
(string.gsub n "\n" "\0" 1)))))
|
|
|
|
|
|
(fn next-event []
|
|
(var i 0)
|
|
(fn []
|
|
(let [i_ (+ 1 i)
|
|
e (. events i_)]
|
|
(set i i_)
|
|
e)))
|
|
|
|
;; this tests event parsing but not whether anything
|
|
;; happens as a result of processing them
|
|
(subject.run-with-fh
|
|
{ :read (next-event) }
|
|
["-s" "foo" "-n" (os.getenv "TMPDIR") "partname=backup-disk" ]
|
|
)
|
|
|
|
(print "OK")
|