-
Notifications
You must be signed in to change notification settings - Fork 2
/
helm-migemo-test.el
144 lines (142 loc) · 7.16 KB
/
helm-migemo-test.el
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
;;;; unit test
;; (install-elisp "http://www.emacswiki.org/cgi-bin/wiki/download/el-expectations.el")
;; (install-elisp "http://www.emacswiki.org/cgi-bin/wiki/download/el-mock.el")
(dont-compile
(when (fboundp 'expectations)
(expectations
(desc "match")
(expect '(("TEST" ("日本語")))
(let ((helm-use-migemo t))
(helm-test-candidates
'(((name . "TEST")
(candidates "日本語")))
"nihongo"
'(helm-compile-source--migemo))))
(desc "candidates buffer")
(expect '(("TEST" ("日本語")))
(let ((helm-use-migemo t))
(helm-test-candidates
'(((name . "TEST")
(init
. (lambda () (with-current-buffer (helm-candidate-buffer 'global)
(insert "日本語\n"))))
(candidates-in-buffer)))
"nihongo"
'(helm-compile-source--candidates-in-buffer
helm-compile-source--migemo))))
(desc "migemo attribute")
(expect '(("TEST" ("日本語")))
(let ((helm-use-migemo nil))
(helm-test-candidates
'(((name . "TEST")
(candidates "日本語")
(migemo)))
"nihongo"
'(helm-compile-source--migemo))))
(expect '(("TEST" ("日本語")))
(let ((helm-use-migemo nil))
(helm-test-candidates
'(((name . "TEST")
(init
. (lambda () (with-current-buffer (helm-candidate-buffer 'global)
(insert "日本語\n"))))
(candidates-in-buffer)
(migemo)))
"nihongo"
'(helm-compile-source--candidates-in-buffer
helm-compile-source--migemo))))
(desc "search-from-end attribute")
(expect '(("FOO" ("日本語入力" "日本語会話")))
(let ((helm-use-migemo nil))
(helm-test-candidates '(((name . "FOO")
(init
. (lambda ()
(with-current-buffer (helm-candidate-buffer 'global)
(insert "日本語会話\n日本語入力\n"))))
(candidates-in-buffer)
(migemo)
(search-from-end)))
"nihongo"
'(helm-compile-source--candidates-in-buffer
helm-compile-source--migemo))))
(expect '(("FOO" ("日本語入力" "日本語会話")))
(let ((helm-use-migemo t))
(helm-test-candidates '(((name . "FOO")
(init
. (lambda ()
(with-current-buffer (helm-candidate-buffer 'global)
(insert "日本語会話\n日本語入力\n"))))
(candidates-in-buffer)
(search-from-end)))
"nihongo"
'(helm-compile-source--candidates-in-buffer
helm-compile-source--migemo))))
(desc "with helm-match-plugin")
(expect '(("FOO" ("日本語入力")))
(let ((helm-use-migemo nil))
(helm-test-candidates '(((name . "FOO")
(init
. (lambda ()
(with-current-buffer (helm-candidate-buffer 'global)
(insert "日本語会話\n日本語入力\n"))))
(candidates-in-buffer)
(migemo)))
"nihongo nyuuryoku"
'(helm-compile-source--candidates-in-buffer
helm-compile-source--match-plugin
helm-compile-source--migemo))))
(expect '(("FOO" ("日本語入力")))
(let ((helm-use-migemo t))
(helm-test-candidates '(((name . "FOO")
(init
. (lambda ()
(with-current-buffer (helm-candidate-buffer 'global)
(insert "日本語会話\n日本語入力\n"))))
(candidates-in-buffer)))
"nihongo nyuuryoku"
'(helm-compile-source--candidates-in-buffer
helm-compile-source--match-plugin
helm-compile-source--migemo))))
(expect '(("FOO" ("日本語入力")))
(let ((helm-use-migemo nil))
(helm-test-candidates '(((name . "FOO")
(init
. (lambda ()
(with-current-buffer (helm-candidate-buffer 'global)
(insert "日本語会話\n日本語入力\n"))))
(candidates-in-buffer)
(search-from-end)
(migemo)))
"nihongo nyuuryoku"
'(helm-compile-source--candidates-in-buffer
helm-compile-source--match-plugin
helm-compile-source--migemo))))
(expect '(("FOO" ("日本語入力")))
(let ((helm-use-migemo t))
(helm-test-candidates '(((name . "FOO")
(init
. (lambda ()
(with-current-buffer (helm-candidate-buffer 'global)
(insert "日本語会話\n日本語入力\n"))))
(candidates-in-buffer)
(search-from-end)))
"nihongo nyuuryoku"
'(helm-compile-source--candidates-in-buffer
helm-compile-source--match-plugin
helm-compile-source--migemo))))
(expect '(("TEST" ("日本語入力")))
(let ((helm-use-migemo nil))
(helm-test-candidates
'(((name . "TEST")
(migemo)
(candidates "日本語入力")))
"nihongo nyuuryoku"
'(helm-compile-source--match-plugin helm-compile-source--migemo))))
(expect '(("TEST" ("日本語入力")))
(let ((helm-use-migemo t))
(helm-test-candidates
'(((name . "TEST")
(candidates "日本語入力")))
"nihongo nyuuryoku"
'(helm-compile-source--match-plugin helm-compile-source--migemo))))
)))