mirror of
https://github.com/vgough/encfs.git
synced 2024-11-21 15:33:16 +01:00
Merge pull request #393 from benrubson/sudo
Run "sudo" tests also if user is root
This commit is contained in:
commit
cc140546a1
@ -28,7 +28,8 @@ tests will run almost instantly:
|
||||
make test
|
||||
|
||||
Integration tests will take ~20 seconds to run and will mount an
|
||||
encrypted filesystem and run tests on it:
|
||||
encrypted filesystem and run tests on it:
|
||||
*running integration tests from root (or with sudo) will run additional ones*
|
||||
|
||||
make integration
|
||||
|
||||
|
@ -34,6 +34,7 @@ if(system("which lsextattr > /dev/null 2>&1") == 0)
|
||||
$setattr = "setextattr -h user encfs hello";
|
||||
$getattr = "getextattr -h user encfs";
|
||||
}
|
||||
|
||||
# Do we support xattr ?
|
||||
my $have_xattr = 1;
|
||||
if(system("./build/encfs --verbose --version 2>&1 | grep -q HAVE_XATTR") != 0)
|
||||
@ -41,6 +42,17 @@ if(system("./build/encfs --verbose --version 2>&1 | grep -q HAVE_XATTR") != 0)
|
||||
$have_xattr = 0;
|
||||
}
|
||||
|
||||
# Did we ask, or are we simply able to run "sudo" tests ?
|
||||
my $sudo_cmd;
|
||||
if ($> == 0)
|
||||
{
|
||||
$sudo_cmd="";
|
||||
}
|
||||
elsif (defined($ENV{'SUDO_TESTS'}))
|
||||
{
|
||||
$sudo_cmd="sudo";
|
||||
}
|
||||
|
||||
# test filesystem in standard config mode
|
||||
&runTests('standard');
|
||||
|
||||
@ -443,8 +455,8 @@ sub checkReadError
|
||||
# Test that write errors are correctly thrown up to us
|
||||
sub checkWriteError
|
||||
{
|
||||
# No OSX impl, and requires sudo which is inconvenient outside of CI.
|
||||
if($^O eq "darwin" || !defined($ENV{'SUDO_TESTS'})) {
|
||||
# No OSX impl (for now, feel free to find how to), and requires "sudo".
|
||||
if($^O eq "darwin" || !defined($sudo_cmd)) {
|
||||
ok(1, "write error");
|
||||
ok(1, "write error");
|
||||
ok(1, "write error");
|
||||
@ -455,7 +467,7 @@ sub checkWriteError
|
||||
my $mnt = "$workingDir/checkWriteError.mnt";
|
||||
mkdir($crypt) || BAIL_OUT($!);
|
||||
mkdir($mnt) || BAIL_OUT($!);
|
||||
system("sudo mount -t tmpfs -o size=1m tmpfs $crypt");
|
||||
system("$sudo_cmd mount -t tmpfs -o size=1m tmpfs $crypt");
|
||||
ok( $? == 0, "mount command returns 0") || return;
|
||||
system("./build/encfs --standard --extpass=\"echo test\" $crypt $mnt 2>&1");
|
||||
ok( $? == 0, "encfs command returns 0") || return;
|
||||
@ -464,6 +476,6 @@ sub checkWriteError
|
||||
ok ($!{ENOSPC}, "write returned $! instead of ENOSPC");
|
||||
close OUT;
|
||||
portable_unmount($mnt);
|
||||
system("sudo umount $crypt");
|
||||
system("$sudo_cmd umount $crypt");
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user