#!./perl
BEGIN {
chdir
't'
if
-d
't'
;
@INC
=
'../lib'
;
}
my
$hint_bits
= 0x00400000;
my
$error
=
"filetest: the only implemented subpragma is 'access'.\n"
;
ok(
require
filetest,
'required pragma successfully'
);
eval
{ filetest->
import
(
'bad subpragma'
) };
is( $@,
$error
,
'filetest dies with bad subpragma on import'
);
is( $^H &
$hint_bits
, 0,
'hint bits not set without pragma in place'
);
use_ok(
'filetest'
,
'access'
);
filetest->
import
(
'access'
);
ok( $^H &
$hint_bits
,
'hint bits set with pragma loaded'
);
filetest->unimport(
'access'
);
is( $^H &
$hint_bits
, 0,
'hint bits not set with pragma unimported'
);
eval
{ filetest->unimport() };
is( $@,
$error
,
'filetest dies without subpragma on unimport'
);
eval
"no filetest 'fake pragma'"
;
like( $@,
qr/^$error/
,
'filetest dies with bad subpragma on unuse'
);
eval
"use filetest 'bad subpragma'"
;
like( $@,
qr/^$error/
,
'filetest dies with bad subpragma on use'
);
eval
"use filetest"
;
like( $@,
qr/^$error/
,
'filetest dies with missing subpragma on use'
);
eval
"no filetest"
;
like( $@,
qr/^$error/
,
'filetest dies with missing subpragma on unuse'
);
SKIP: {
my
$chflags
=
"/usr/bin/chflags"
;
my
$tstfile
=
"filetest.tst"
;
skip(
"No $chflags available"
, 4)
if
!-x
$chflags
;
skip(
"Dragonfly filetests seem non-chflags aware"
, 4)
if
$^O eq
'dragonfly'
;
my
$skip_eff_user_tests
= (!
$Config
{d_setreuid} && !
$Config
{d_setresuid})
||
(!
$Config
{d_setregid} && !
$Config
{d_setresgid});
eval
{
if
(!-e
$tstfile
) {
open
(T,
">$tstfile"
) or
die
"Can't create $tstfile: $!"
;
close
T;
}
system
(
$chflags
,
"uchg"
,
$tstfile
);
die
"Can't exec $chflags uchg"
if
$? != 0;
};
skip(
"Errors in test using chflags: $@"
, 4)
if
$@;
{
SKIP: {
skip(
"No tests on effective user id"
, 1)
if
$skip_eff_user_tests
;
is(-w
$tstfile
,
undef
,
"$tstfile should not be recognized as writable"
);
}
is(-W
$tstfile
,
undef
,
"$tstfile should not be recognized as writable"
);
}
{
no
filetest
'access'
;
SKIP: {
skip(
"No tests on effective user id"
, 1)
if
$skip_eff_user_tests
;
is(-w
$tstfile
, 1,
"$tstfile should be recognized as writable"
);
}
is(-W
$tstfile
, 1,
"$tstfile should be recognized as writable"
);
}
system
(
$chflags
,
"nouchg"
,
$tstfile
);
unlink
$tstfile
;
warn
"Can't remove $tstfile: $!"
if
-e
$tstfile
;
}
done_testing();