1
0
Fork 0
liminix/pkgs/devout/test.fnl

103 lines
2.9 KiB
Plaintext
Raw Normal View History

(local { : database } (require :devout))
2024-04-20 17:24:10 +00:00
(local { : view } (require :fennel))
2024-04-20 16:45:40 +00:00
(import-macros { : expect= } :anoia.assert)
2024-04-20 20:46:37 +00:00
(var failed false)
(fn fail [d msg] (set failed true) (print :FAIL d (.. "\n" msg)))
2024-04-20 16:45:40 +00:00
(macro example [description & body]
2024-04-20 20:46:37 +00:00
`(let [(ok?# err#) (xpcall (fn [] ,body) debug.traceback)]
(if ok?#
(print :PASS ,description)
(fail ,description err#))))
2024-04-20 16:45:40 +00:00
(example
2024-04-20 17:42:42 +00:00
"given an empty database, searching it finds no entries"
2024-04-20 16:45:40 +00:00
(let [db (database)]
(expect= (db:find {:partname "boot"}) [])))
2024-04-20 17:42:42 +00:00
(local sda-uevent
"add@/devices/pci0000:00/0000:00:13.0/usb1/1-1/1-1:1.0/host0/target0:0:0/0:0:0:0/block/sda\0ACTION=add
2024-04-20 17:24:10 +00:00
DEVPATH=/devices/pci0000:00/0000:00:13.0/usb1/1-1/1-1:1.0/host0/target0:0:0/0:0:0:0/block/sda
SUBSYSTEM=block
MAJOR=8
MINOR=0
DEVNAME=sda
DEVTYPE=disk
DISKSEQ=2
SEQNUM=1527")
2024-04-20 17:42:42 +00:00
2024-04-21 10:19:06 +00:00
(local sdb1-insert
"add@/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/host1/target1:0:0/1:0:0:0/block/sdb/sdb1\0ACTION=add
DEVPATH=/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/host1/target1:0:0/1:0:0:0/block/sdb/sdb1
SUBSYSTEM=block
DEVNAME=/dev/sdb1
DEVTYPE=partition
DISKSEQ=33
PARTN=1
SEQNUM=82381
MAJOR=8
MINOR=17")
(local sdb1-remove
"remove@/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/host1/target1:0:0/1:0:0:0/block/sdb/sdb1\0ACTION=remove
DEVPATH=/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/host1/target1:0:0/1:0:0:0/block/sdb/sdb1
SUBSYSTEM=block
DEVNAME=/dev/sdb1
DEVTYPE=partition
DISKSEQ=33
PARTN=1
SEQNUM=82386
MAJOR=8
MINOR=17")
2024-04-20 17:42:42 +00:00
(example
"when I add a device, I can find it"
(let [db (database)]
(db:add sda-uevent)
(let [[m & more] (db:find {:devname "sda"})]
2024-04-20 17:24:10 +00:00
(expect= m.devname "sda")
(expect= m.major "8")
(expect= more []))))
2024-04-20 17:42:42 +00:00
(example
"when I add a device, I cannot find it with wrong terms"
(let [db (database)]
(db:add sda-uevent)
(expect= (db:find {:devname "sdb"}) [])))
2024-04-20 21:20:43 +00:00
(example
"when I add a device, I can retrieve it by path"
(let [db (database)]
(db:add sda-uevent)
(let [m (db:at-path "/devices/pci0000:00/0000:00:13.0/usb1/1-1/1-1:1.0/host0/target0:0:0/0:0:0:0/block/sda")]
(expect= m.devname "sda")
(expect= m.major "8"))))
2024-04-21 10:19:06 +00:00
(example
"when I add and then remove a device, I cannot retrieve it by path"
(let [db (database)]
(db:add sdb1-insert)
(db:add sdb1-remove)
(expect= (db:at-path "/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/host1/target1:0:0/1:0:0:0/block/sdb/sdb1") nil)))
(example
"when I add and then remove a device, I cannot find it"
(let [db (database)]
(db:add sdb1-insert)
(db:add sda-uevent)
(db:add sdb1-remove)
(expect= (db:find {:devname "/dev/sdb1"}) [])))
2024-04-20 17:42:42 +00:00
(example
"when I search on multiple terms it uses all of them"
(let [db (database)]
(db:add sda-uevent)
(expect= (# (db:find {:devname "sda" :devtype "disk"})) 1)
(expect= (# (db:find {:devname "sda" :devtype "dosk"})) 0)))
2024-04-20 16:45:40 +00:00
2024-04-20 20:46:37 +00:00
(if failed (os.exit 1) (print "OK"))