X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Flei.t;h=a46e46f24363f641591d81c5ffb4e3ae8e6adaea;hb=7349713101700e488231ad9ffece8ee42de0928c;hp=f826a96676a256b4832d80bdd0701bdcd54f6257;hpb=29b172ed031f6c48b0cb6219845d8d737ee4b3ae;p=public-inbox.git diff --git a/t/lei.t b/t/lei.t index f826a966..a46e46f2 100644 --- a/t/lei.t +++ b/t/lei.t @@ -174,12 +174,12 @@ SKIP: { } $lei->('add-external', $url); my $mid = '20140421094015.GA8962@dcvr.yhbt.net'; - ok($lei->('q', "m:$mid"), "query $url"); + ok($lei->('q', '-q', "m:$mid"), "query $url"); is($err, '', "no errors on $url"); my $res = $json->decode($out); is($res->[0]->{'m'}, "<$mid>", "got expected mid from $url"); - ok($lei->('q', "m:$mid", 'd:..20101002'), 'no results, no error'); - like($err, qr/404/, 'noted 404'); + ok($lei->('q', '-q', "m:$mid", 'd:..20101002'), 'no results, no error'); + is($err, '', 'no output on 404, matching local FS behavior'); is($out, "[null]\n", 'got null results'); $lei->('forget-external', $url); } # /SKIP @@ -216,6 +216,24 @@ my $test_external = sub { like($out, qr/boost=0\n/s, 'ls-external has output'); ok($lei->(qw(add-external -q https://EXAMPLE.com/ibx)), 'add remote'); is($err, '', 'no warnings after add-external'); + + ok($lei->(qw(_complete lei forget-external)), 'complete for externals'); + my %comp = map { $_ => 1 } split(/\s+/, $out); + ok($comp{'https://example.com/ibx/'}, 'forget external completion'); + $cfg->each_inbox(sub { + my ($ibx) = @_; + ok($comp{$ibx->{inboxdir}}, "local $ibx->{name} completion"); + }); + for my $u (qw(h http https https: https:/ https:// https://e + https://example https://example. https://example.co + https://example.com https://example.com/ + https://example.com/i https://example.com/ibx)) { + ok($lei->(qw(_complete lei forget-external), $u), + "partial completion for URL $u"); + is($out, "https://example.com/ibx/\n", + "completed partial URL $u"); + } + $lei->('ls-external'); like($out, qr!https://example\.com/ibx/!s, 'added canonical URL'); is($err, '', 'no warnings on ls-external'); @@ -273,12 +291,12 @@ my $test_external = sub { my @s = grep(/^Subject:/, $cat->()); is(scalar(@s), 1, "1 result in mbox$sfx"); $lei->('q', '-a', '-o', "mboxcl2:$f", 's:see attachment'); - is($err, '', 'no errors from augment'); + is(grep(!/^#/, $err), 0, 'no errors from augment'); @s = grep(/^Subject:/, my @wtf = $cat->()); is(scalar(@s), 2, "2 results in mbox$sfx"); $lei->('q', '-a', '-o', "mboxcl2:$f", 's:nonexistent'); - is($err, '', "no errors on no results ($sfx)"); + is(grep(!/^#/, $err), 0, "no errors on no results ($sfx)"); my @s2 = grep(/^Subject:/, $cat->()); is_deeply(\@s2, \@s, @@ -304,11 +322,39 @@ my $test_external = sub { } }; +my $test_completion = sub { + ok($lei->(qw(_complete lei)), 'no errors on complete'); + my %out = map { $_ => 1 } split(/\s+/s, $out); + ok($out{'q'}, "`lei q' offered as completion"); + ok($out{'add-external'}, "`lei add-external' offered as completion"); + + ok($lei->(qw(_complete lei q)), 'complete q (no args)'); + %out = map { $_ => 1 } split(/\s+/s, $out); + for my $sw (qw(-f --format -o --output --mfolder --augment -a + --mua --mua-cmd --no-local --local --verbose -v + --save-as --no-remote --remote --torsocks + --reverse -r )) { + ok($out{$sw}, "$sw offered as completion"); + } + + ok($lei->(qw(_complete lei q --form)), 'complete q --format'); + is($out, "--format\n", 'complete lei q --format'); + for my $sw (qw(-f --format)) { + ok($lei->(qw(_complete lei q), $sw), "complete q $sw ARG"); + %out = map { $_ => 1 } split(/\s+/s, $out); + for my $f (qw(mboxrd mboxcl2 mboxcl mboxo json jsonl + concatjson maildir)) { + ok($out{$f}, "got $sw $f as output format"); + } + } +}; + my $test_lei_common = sub { $test_help->(); $test_config->(); $test_init->(); $test_external->(); + $test_completion->(); }; if ($ENV{TEST_LEI_ONESHOT}) {