1 | #!/usr/bin/env perl |
---|
2 | use strict; |
---|
3 | use warnings; |
---|
4 | |
---|
5 | use Test::More qw(no_plan); |
---|
6 | |
---|
7 | use File::Basename; |
---|
8 | BEGIN {require (dirname($0) . "/mock.pl");}; |
---|
9 | |
---|
10 | use BarnOwl::Complete::Filter qw(complete_filter_expr); |
---|
11 | |
---|
12 | =head1 DESCRIPTION |
---|
13 | |
---|
14 | Basic tests for tab-completion functionality. |
---|
15 | |
---|
16 | =cut |
---|
17 | |
---|
18 | sub test_tokenize { |
---|
19 | local $Test::Builder::Level = $Test::Builder::Level + 1; |
---|
20 | |
---|
21 | my $before_point = shift; |
---|
22 | my $after_point = shift; |
---|
23 | |
---|
24 | my $ctx = BarnOwl::Completion::Context->new($before_point, |
---|
25 | $after_point); |
---|
26 | is($ctx->line, $before_point . $after_point); |
---|
27 | is($ctx->point, length $before_point); |
---|
28 | |
---|
29 | test_ctx($ctx, @_); |
---|
30 | } |
---|
31 | |
---|
32 | sub test_ctx { |
---|
33 | local $Test::Builder::Level = $Test::Builder::Level + 1; |
---|
34 | |
---|
35 | my $ctx = shift; |
---|
36 | |
---|
37 | my $words = shift; |
---|
38 | my $word = shift; |
---|
39 | my $word_point = shift; |
---|
40 | |
---|
41 | my $word_start = shift; |
---|
42 | my $word_end = shift; |
---|
43 | |
---|
44 | is_deeply($ctx->words, $words); |
---|
45 | if (defined($word)) { |
---|
46 | is($ctx->word, $word, "Correct current word."); |
---|
47 | is($ctx->word_point, $word_point, "Correct point within word."); |
---|
48 | is($ctx->word_start, $word_start, "Correct start of word"); |
---|
49 | is($ctx->word_end, $word_end, "Correct end of word"); |
---|
50 | } |
---|
51 | } |
---|
52 | |
---|
53 | sub test_shift { |
---|
54 | local $Test::Builder::Level = $Test::Builder::Level + 1; |
---|
55 | |
---|
56 | my $before_point = shift; |
---|
57 | my $after_point = shift; |
---|
58 | my $shift = shift; |
---|
59 | |
---|
60 | my $ctx = BarnOwl::Completion::Context->new($before_point, |
---|
61 | $after_point); |
---|
62 | $ctx = $ctx->shift_words($shift); |
---|
63 | |
---|
64 | test_ctx($ctx, @_); |
---|
65 | } |
---|
66 | |
---|
67 | |
---|
68 | isa_ok(BarnOwl::Completion::Context->new('Hello, W', 'orld'), 'BarnOwl::Completion::Context'); |
---|
69 | |
---|
70 | no warnings 'qw'; |
---|
71 | test_tokenize('Hello, W', 'orld', |
---|
72 | [qw(Hello, World)], 1, 1, 7, 12); |
---|
73 | |
---|
74 | test_tokenize('Hello, World', '', |
---|
75 | [qw(Hello, World)], 1, 5, 7, 12); |
---|
76 | |
---|
77 | test_tokenize(" \t Hello, World", '', |
---|
78 | [qw(Hello, World)], 1, 5, 10, 15); |
---|
79 | |
---|
80 | test_tokenize('', '', |
---|
81 | [''], 0, 0, 0, 0); |
---|
82 | |
---|
83 | test_tokenize(' ', '', |
---|
84 | [''], 0, 0, 3, 3); |
---|
85 | |
---|
86 | test_tokenize('Hello', 'World', |
---|
87 | [qw(HelloWorld)], 0, 5, 0, 10); |
---|
88 | |
---|
89 | test_tokenize(' Hello', 'World', |
---|
90 | [qw(HelloWorld)], 0, 5, 1, 11); |
---|
91 | |
---|
92 | test_tokenize('lorem ipsum dolor ', 'sit amet', |
---|
93 | [qw(lorem ipsum dolor sit amet)], |
---|
94 | 3, 0, 18, 21); |
---|
95 | |
---|
96 | test_tokenize(q{error "ls -l failed"}, q{}, |
---|
97 | ['error', 'ls -l failed'], |
---|
98 | 1, 12, 6, 20); |
---|
99 | |
---|
100 | test_tokenize(q{"a long"' word'}, q{}, |
---|
101 | ['a long word']); |
---|
102 | |
---|
103 | test_tokenize(q{"'"}, q{}, [q{'}], 0, 1, 0, 3); |
---|
104 | |
---|
105 | test_tokenize(q{"Hello, }, q{World"}, |
---|
106 | [q{Hello, World}], |
---|
107 | 0, 7, 0, 14); |
---|
108 | |
---|
109 | test_tokenize(q{But 'Hello, }, q{World'}, |
---|
110 | ['But', q{Hello, World}], |
---|
111 | 1, 7, 4, 18); |
---|
112 | |
---|
113 | test_tokenize(q{But "Hello, }, q{World"''''''""}, |
---|
114 | ['But', q{Hello, World}], |
---|
115 | 1, 7, 4, 26); |
---|
116 | |
---|
117 | test_tokenize(q{}, q{''Hello}, |
---|
118 | ['Hello'], |
---|
119 | 0, 0, 0, 7); |
---|
120 | |
---|
121 | test_tokenize(q{"Hello, }, q{World}, |
---|
122 | [q{Hello, World}], |
---|
123 | 0, 7, 0, 13); |
---|
124 | |
---|
125 | test_tokenize(q{Hello }, q{World}, |
---|
126 | [qw{Hello World}], |
---|
127 | 1, 0, 9, 14); |
---|
128 | |
---|
129 | test_tokenize(q{Hello '' ""}, q{ World}, |
---|
130 | ["Hello", '', '', 'World'], |
---|
131 | 2, 0, 9, 11); |
---|
132 | |
---|
133 | test_tokenize(q{zwrite -c }, q{}, |
---|
134 | [qw(zwrite -c), ''], |
---|
135 | 2, 0, 10, 10); |
---|
136 | |
---|
137 | # It's not entirely clear what we should do here. Make a test for the |
---|
138 | # current behavior, so we'll notice if it changes. |
---|
139 | test_tokenize(q{Hello }, q{ World}, |
---|
140 | [qw(Hello World)], |
---|
141 | 1, -1, 7, 12); |
---|
142 | |
---|
143 | ## Test Context::shift |
---|
144 | test_shift('lorem ipsum dolor ', 'sit amet', 0, |
---|
145 | [qw(lorem ipsum dolor sit amet)], |
---|
146 | 3, 0, 18, 21); |
---|
147 | |
---|
148 | test_shift('lorem ipsum dolor ', 'sit amet', 1, |
---|
149 | [qw(ipsum dolor sit amet)], |
---|
150 | 2, 0, 12, 15); |
---|
151 | |
---|
152 | test_shift('lorem ipsum dolor ', 'sit amet', 2, |
---|
153 | [qw(dolor sit amet)], |
---|
154 | 1, 0, 6, 9); |
---|
155 | |
---|
156 | test_shift('lorem ipsum dolor ', 'sit amet', 3, |
---|
157 | [qw(sit amet)], |
---|
158 | 0, 0, 0, 3); |
---|
159 | |
---|
160 | eval { |
---|
161 | my $before_point = 'lorem ipsum dolor'; |
---|
162 | my $after_point = 'sit amet'; |
---|
163 | my $shift = 4; |
---|
164 | |
---|
165 | my $ctx = BarnOwl::Completion::Context->new($before_point, |
---|
166 | $after_point); |
---|
167 | $ctx = $ctx->shift_words($shift); |
---|
168 | }; |
---|
169 | like($@, qr/^Context::shift: Unable to shift /, "Correctly die when shifting away the point"); |
---|
170 | |
---|
171 | ## Test common_prefix |
---|
172 | |
---|
173 | is(BarnOwl::Completion::common_prefix(qw(a b)), ''); |
---|
174 | is(BarnOwl::Completion::common_prefix(qw(a aa)), 'a'); |
---|
175 | |
---|
176 | is(BarnOwl::Completion::common_prefix(qw(aa)), 'aa'); |
---|
177 | |
---|
178 | is(BarnOwl::Completion::common_prefix(qw(a ab abc)), 'a'); |
---|
179 | |
---|
180 | is(BarnOwl::Completion::common_prefix(qw(abc abcd)), 'abc'); |
---|
181 | |
---|
182 | is(BarnOwl::Completion::common_prefix(qw(abc abc)), 'abc'); |
---|
183 | |
---|
184 | is(BarnOwl::Completion::common_prefix('a', ''), ''); |
---|
185 | |
---|
186 | ## Test complete_flags |
---|
187 | |
---|
188 | use BarnOwl::Completion::Util qw(complete_flags); |
---|
189 | |
---|
190 | # dummy complete_zwrite |
---|
191 | sub complete_zwrite { |
---|
192 | my $ctx = shift; |
---|
193 | return complete_flags($ctx, |
---|
194 | [qw(-n -C -m)], |
---|
195 | { |
---|
196 | "-c" => sub {qw(nelhage nethack sipb help)}, |
---|
197 | "-i" => sub {qw()}, |
---|
198 | "-r" => sub {qw(ATHENA.MIT.EDU ZONE.MIT.EDU ANDREW.CMU.EDU)}, |
---|
199 | "-O" => sub {qw()}, |
---|
200 | }, |
---|
201 | sub {qw(nelhage asedeno geofft)}); |
---|
202 | } |
---|
203 | |
---|
204 | sub test_complete { |
---|
205 | my $before = shift; |
---|
206 | my $after = shift; |
---|
207 | my $words = shift; |
---|
208 | my $complete = shift || \&complete_zwrite; |
---|
209 | |
---|
210 | my $ctx = BarnOwl::Completion::Context->new($before, $after); |
---|
211 | |
---|
212 | local $Test::Builder::Level = $Test::Builder::Level + 1; |
---|
213 | |
---|
214 | my @got = $complete->($ctx); |
---|
215 | is_deeply([sort @got], [sort @$words]); |
---|
216 | } |
---|
217 | |
---|
218 | test_complete('zwrite -c ', '', [qw(nelhage nethack sipb help)]); |
---|
219 | |
---|
220 | test_complete('zwrite -c nelhage', '', [qw(nelhage nethack sipb help)]); |
---|
221 | |
---|
222 | test_complete('zwrite -c nelhage -i ', '', [qw()]); |
---|
223 | |
---|
224 | test_complete('zwrite -c nelhage ', '', |
---|
225 | [qw(-n -C -m -i -r -O nelhage asedeno geofft)]); |
---|
226 | |
---|
227 | test_complete('zwrite -c nelhage ', '-', |
---|
228 | [qw(-n -C -m -i -r -O nelhage asedeno geofft)]); |
---|
229 | |
---|
230 | test_complete('zwrite -c nelhage -- ', '', |
---|
231 | [qw(nelhage asedeno geofft)]); |
---|
232 | |
---|
233 | sub complete_word { |
---|
234 | my $ctx = shift; |
---|
235 | return complete_flags($ctx, |
---|
236 | [qw(-a -b -c)], |
---|
237 | { |
---|
238 | "-d" => sub {qw(some words for completing)}, |
---|
239 | }, |
---|
240 | sub {$_[1]}, |
---|
241 | repeat_flags => 1); |
---|
242 | } |
---|
243 | |
---|
244 | test_complete('cmd -a -d foo -c hello ','', |
---|
245 | [qw(-a -b -c -d 1)], \&complete_word); |
---|
246 | |
---|
247 | test_complete('cmd -a -d foo -c ','', |
---|
248 | [qw(-a -b -c -d 0)], \&complete_word); |
---|
249 | |
---|
250 | # Test that words after -- are counted properly. |
---|
251 | test_complete('cmd -- hi there ','', |
---|
252 | [qw(2)], \&complete_word); |
---|
253 | |
---|
254 | test_complete('cmd --','', |
---|
255 | [qw(-a -b -c -d 0)], \&complete_word); |
---|
256 | |
---|
257 | test_complete('cmd -- ','', |
---|
258 | [qw(0)], \&complete_word); |
---|
259 | |
---|
260 | test_complete('cmd foo -- ','', |
---|
261 | [qw(1)], \&complete_word); |
---|
262 | |
---|
263 | test_complete('cmd foo -- bar ','', |
---|
264 | [qw(2)], \&complete_word); |
---|
265 | |
---|
266 | |
---|
267 | # Test the filter expression completer |
---|
268 | |
---|
269 | sub toplevel_filter_expect { |
---|
270 | return [sort(keys %BarnOwl::Complete::Filter::filter_cmds, qw[( not true false])]; |
---|
271 | } |
---|
272 | |
---|
273 | test_complete('', '', |
---|
274 | toplevel_filter_expect(), |
---|
275 | \&complete_filter_expr); |
---|
276 | |
---|
277 | test_complete('not ', '', |
---|
278 | toplevel_filter_expect(), |
---|
279 | \&complete_filter_expr); |
---|
280 | |
---|
281 | test_complete('true ', '', |
---|
282 | [qw[and or]], |
---|
283 | \&complete_filter_expr); |
---|
284 | |
---|
285 | test_complete('( true ', '', |
---|
286 | [qw[and or )]], |
---|
287 | \&complete_filter_expr); |
---|
288 | |
---|
289 | test_complete('( body static and body analysis and not false and class davidben and ( instance python or instance hotd ', '', |
---|
290 | [qw[and or )]], |
---|
291 | \&complete_filter_expr); |
---|
292 | |
---|
293 | test_complete('type ', '', |
---|
294 | [qw[admin aim zephyr]], |
---|
295 | \&complete_filter_expr); |
---|
296 | |
---|
297 | test_complete('direction ', '', |
---|
298 | [qw[in out none]], |
---|
299 | \&complete_filter_expr); |
---|
300 | |
---|
301 | test_complete('login ', '', |
---|
302 | [qw[login logout none]], |
---|
303 | \&complete_filter_expr); |
---|
304 | |
---|
305 | test_complete('deleted ', '', |
---|
306 | [qw[true false]], |
---|
307 | \&complete_filter_expr); |
---|
308 | |
---|
309 | # Test complete_files |
---|
310 | use BarnOwl::Completion::Util qw(complete_file); |
---|
311 | use File::Temp; |
---|
312 | use File::Path qw(mkpath); |
---|
313 | |
---|
314 | my $tmpdir = File::Temp::tempdir(CLEANUP => 1); |
---|
315 | |
---|
316 | # Make sure $tmpdir does not have a trailing / |
---|
317 | $tmpdir =~ s{/$}{}; |
---|
318 | $ENV{HOME} = $tmpdir; |
---|
319 | |
---|
320 | sub touch { |
---|
321 | my $path = shift; |
---|
322 | system("touch", "$path"); |
---|
323 | } |
---|
324 | |
---|
325 | mkpath("$tmpdir/.owl/", |
---|
326 | "$tmpdir/.owl/modules/", |
---|
327 | "$tmpdir/Public/", |
---|
328 | "$tmpdir/Private/", |
---|
329 | "$tmpdir/.ours", |
---|
330 | "$tmpdir/www", |
---|
331 | {mode => 0700}); |
---|
332 | touch("$tmpdir/.zephyr.subs"); |
---|
333 | touch("$tmpdir/wheee"); |
---|
334 | touch("$tmpdir/.owl/startup"); |
---|
335 | |
---|
336 | sub completion_value { |
---|
337 | my $c = shift; |
---|
338 | return $c unless ref($c) eq 'ARRAY'; |
---|
339 | return $c->[1]; |
---|
340 | } |
---|
341 | |
---|
342 | sub test_file { |
---|
343 | my $spec = shift; |
---|
344 | my $pfx = shift; |
---|
345 | my $dirs = shift; |
---|
346 | my $files = shift; |
---|
347 | |
---|
348 | my $expect = [ sort {$a->[1] cmp $b->[1]} |
---|
349 | ((map {["$_/", defined($pfx)?"$pfx/$_/":"$_/", 0]} @$dirs), |
---|
350 | (map {["$_", defined($pfx)?"$pfx/$_" :$_ , 1]} @$files)) |
---|
351 | ]; |
---|
352 | |
---|
353 | local $Test::Builder::Level = $Test::Builder::Level + 1; |
---|
354 | |
---|
355 | my @got = complete_file($spec); |
---|
356 | |
---|
357 | @got = grep {completion_value($_) =~ m{^\Q$spec\E}} @got; |
---|
358 | @got = sort {completion_value($a) cmp completion_value($b)} @got; |
---|
359 | |
---|
360 | use Data::Dumper; |
---|
361 | is_deeply(\@got, $expect); |
---|
362 | } |
---|
363 | |
---|
364 | is_deeply([complete_file("~")], [["~/", "~/", 0]]); |
---|
365 | |
---|
366 | END { chdir("/"); } |
---|
367 | chdir($tmpdir); |
---|
368 | test_file("$tmpdir/", $tmpdir, |
---|
369 | [qw(Public Private www)], |
---|
370 | [qw(wheee)]); |
---|
371 | |
---|
372 | test_file("./", ".", |
---|
373 | [qw(Public Private www)], |
---|
374 | [qw(wheee)]); |
---|
375 | |
---|
376 | test_file("", undef, [qw(Public Private www)], [qw(wheee)]); |
---|
377 | |
---|
378 | test_file("./.owl/", "./.owl", |
---|
379 | [qw(modules)], |
---|
380 | [qw(startup)]); |
---|
381 | |
---|
382 | test_file("~/", "~", |
---|
383 | [qw(Public Private www)], |
---|
384 | [qw(wheee)]); |
---|
385 | |
---|
386 | test_file("P", undef, [qw(Public Private)], []); |
---|
387 | |
---|
388 | test_file("$tmpdir/.", $tmpdir, |
---|
389 | [qw(. .. .owl .ours)], |
---|
390 | [qw(.zephyr.subs)]); |
---|
391 | 1; |
---|
392 | |
---|