X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=blobdiff_plain;f=t%2Ffake_inotify.t;h=734ddbfb8f48c5ffc1ffaf1991d0b0f4c46ba0b5;hp=11dac117f0d14907eef1a3a21e0ae4a618fafadc;hb=refs%2Fheads%2Fmaster;hpb=1bc3707e3e0983c9aed898980ec8acf6501813f7 diff --git a/t/fake_inotify.t b/t/fake_inotify.t index 11dac117..734ddbfb 100644 --- a/t/fake_inotify.t +++ b/t/fake_inotify.t @@ -1,16 +1,16 @@ #!perl -w -# Copyright (C) 2020 all contributors +# Copyright (C) 2020-2021 all contributors # License: AGPL-3.0+ # # Ensure FakeInotify can pick up rename(2) and link(2) operations # used by Maildir writing tools use strict; -use Test::More; use PublicInbox::TestCommon; use_ok 'PublicInbox::FakeInotify'; my $MIN_FS_TICK = 0.011; # for low-res CONFIG_HZ=100 systems my ($tmpdir, $for_destroy) = tmpdir(); mkdir "$tmpdir/new" or BAIL_OUT "mkdir: $!"; +mkdir "$tmpdir/new/rmd" or BAIL_OUT "mkdir: $!"; open my $fh, '>', "$tmpdir/tst" or BAIL_OUT "open: $!"; close $fh or BAIL_OUT "close: $!"; @@ -18,12 +18,12 @@ my $fi = PublicInbox::FakeInotify->new; my $mask = PublicInbox::FakeInotify::MOVED_TO_OR_CREATE(); my $w = $fi->watch("$tmpdir/new", $mask); -select undef, undef, undef, $MIN_FS_TICK; +tick $MIN_FS_TICK; rename("$tmpdir/tst", "$tmpdir/new/tst") or BAIL_OUT "rename: $!"; my @events = map { $_->fullname } $fi->read; is_deeply(\@events, ["$tmpdir/new/tst"], 'rename(2) detected'); -select undef, undef, undef, $MIN_FS_TICK; +tick $MIN_FS_TICK; open $fh, '>', "$tmpdir/tst" or BAIL_OUT "open: $!"; close $fh or BAIL_OUT "close: $!"; link("$tmpdir/tst", "$tmpdir/new/link") or BAIL_OUT "link: $!"; @@ -31,10 +31,23 @@ link("$tmpdir/tst", "$tmpdir/new/link") or BAIL_OUT "link: $!"; is_deeply(\@events, ["$tmpdir/new/link"], 'link(2) detected'); $w->cancel; -select undef, undef, undef, $MIN_FS_TICK; +tick $MIN_FS_TICK; link("$tmpdir/new/tst", "$tmpdir/new/link2") or BAIL_OUT "link: $!"; @events = map { $_->fullname } $fi->read; is_deeply(\@events, [], 'link(2) not detected after cancel'); +$fi->watch("$tmpdir/new", PublicInbox::FakeInotify::IN_DELETE()); + +tick $MIN_FS_TICK; +rmdir("$tmpdir/new/rmd") or xbail "rmdir: $!"; +@events = $fi->read; +is_deeply([map{ $_->fullname }@events], ["$tmpdir/new/rmd"], 'rmdir detected'); +ok($events[0]->IN_DELETE, 'IN_DELETE set on rmdir'); + +tick $MIN_FS_TICK; +unlink("$tmpdir/new/tst") or xbail "unlink: $!"; +@events = grep { ref =~ /Gone/ } $fi->read; +is_deeply([map{ $_->fullname }@events], ["$tmpdir/new/tst"], 'unlink detected'); +ok($events[0]->IN_DELETE, 'IN_DELETE set on unlink'); PublicInbox::DS->Reset;