AnyEvent-Filesys-Notify
view release on metacpan or search on metacpan
t/35-skip_subdirs.t view on Meta::CPAN
use Test::More tests => 11;
use strict;
use warnings;
use File::Spec;
use lib 't/lib';
$|++;
use TestSupport qw(create_test_files delete_test_files move_test_files
modify_attrs_on_test_files $dir received_events receive_event);
use AnyEvent::Filesys::Notify;
use AnyEvent::Impl::Perl;
create_test_files(qw(one/1 two/1 one/sub/1));
my $n = AnyEvent::Filesys::Notify->new(
dirs => [ map { File::Spec->catfile( $dir, $_ ) } qw(one two) ],
cb => sub { receive_event(@_) },
skip_subdirs => 1,
);
isa_ok( $n, 'AnyEvent::Filesys::Notify' );
SKIP: {
skip "not sure which os we are on", 1
unless $^O =~ /linux|darwin|bsd/;
ok( $n->does('AnyEvent::Filesys::Notify::Role::Inotify2'),
'... with the linux role' )
if $^O eq 'linux';
ok( $n->does('AnyEvent::Filesys::Notify::Role::FSEvents'),
'... with the mac role' )
if $^O eq 'darwin';
ok( $n->does('AnyEvent::Filesys::Notify::Role::KQueue'),
'... with the bsd role' )
if $^O =~ /bsd/;
}
diag "This might take a few seconds to run...";
# ls: one/1 +one/2 one/sub/1 two/1
received_events( sub { create_test_files(qw(one/2)) },
'create a file', qw(created) );
# ls: one/1 ~one/2 one/sub/1 two/1
received_events( sub { create_test_files(qw(one/2)) },
'modify a file', qw(modified) );
# ls: one/1 -one/2 one/sub/1 two/1
received_events( sub { delete_test_files(qw(one/2)) },
'delete a file', qw(deleted) );
# ls: one/1 one/sub/1 +one/sub/2 two/1
received_events( sub { create_test_files(qw(one/sub/2)) },
'create a file in subdir', qw() );
# ls: one/1 one/sub/1 ~one/sub/2 two/1
received_events( sub { create_test_files(qw(one/sub/2)) },
'modify a file in subdir', qw() );
# ls: one/1 one/sub/1 -one/sub/2 two/1
received_events( sub { delete_test_files(qw(one/sub/2)) },
'delete a file in subdir', qw() );
SKIP: {
skip "skip attr mods on Win32", 1 if $^O eq 'MSWin32';
( run in 0.456 second using v1.01-cache-2.11-cpan-cdf2f3d4e48 )