blob: 3458c7bdb3fb8707a18b7b74fce3d445128a03f3 (
about) (
plain)
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
71
72
73
74
75
76
77
78
|
(require 'org-fc)
(require 'org-fc-test-helper)
(require 'ert)
(defvar
org-fc-filter-test-ids
'((a-normal . "9c5e1c79-e0a0-4cf9-9ddd-a2556da0d755")
(a-double . "dc8340e2-8725-40b7-8e88-4c7fec938fc0")
(b-normal1 . "b5686029-f41a-4ff8-a8ed-2629d2f47b81")
(b-normal2 . "3abe7213-33fd-4b90-8a8b-e323682e19ee")
(c-double . "d96b7d6a-c719-4696-aafc-da88b23e1dcb")
(c-cloze . "54625832-2d72-46f6-8f26-862eba4e4651")))
(defun org-fc-test-compare-ids (index expected)
(let ((ids1 (mapcar (lambda (card) (plist-get card :id)) index))
(ids2
(mapcar
(lambda (ex) (alist-get ex org-fc-filter-test-ids))
expected)))
(equal (sort ids1 #'string-lessp)
(sort ids2 #'string-lessp))))
(defun org-fc-test-filter-index (index filter)
(cl-remove-if-not
(org-fc--compile-filter filter)
index))
(ert-deftest org-fc-filter-test ()
(let* ((index (org-fc-awk-index-paths (list (org-fc-test-fixture "filter/")))))
;; Index of all cards
(should (org-fc-test-compare-ids
index
'(a-normal a-double b-normal1 b-normal2 c-double c-cloze)))
;; Filter by type
(should
(org-fc-test-compare-ids
(org-fc-test-filter-index index '(type double))
'(a-double c-double)))
;; Filter by type, or
(should
(org-fc-test-compare-ids
(org-fc-test-filter-index index '(or (type cloze) (type double)))
'(a-double c-double c-cloze)))
;; Filter by tag, direct
(should
(org-fc-test-compare-ids
(org-fc-test-filter-index index '(tag "tag1"))
'(a-normal a-double)))
;; Filter by tag, inherited
(should
(org-fc-test-compare-ids
(org-fc-test-filter-index index '(tag "tag2"))
'(a-double b-normal1)))
;; Filter by tag, filetag
(should
(org-fc-test-compare-ids
(org-fc-test-filter-index index '(and (tag "file1")
(tag "file2")
(tag "file3")))
'(c-double c-cloze)))
;; Negation
(should
(org-fc-test-compare-ids
(org-fc-test-filter-index index '(not (type normal)))
'(a-double c-double c-cloze)))
;; Combined
(should
(org-fc-test-compare-ids
(org-fc-test-filter-index index '(and (not (type normal))
(tag "file1")))
'(c-double c-cloze)))))
|